代码之家  ›  专栏  ›  技术社区  ›  user310291

如何用红色的新行附加一个新的数据块?

  •  1
  • user310291  · 技术社区  · 6 年前

    我试过:

    data: [a b c]
    new-line tail data true
    append data [d e f]
    

    我明白了

    [a b c d e f]
    

    不是我想的那样:

    [a b c 
    d e f]
    
    1 回复  |  直到 6 年前
        1
  •  2
  •   9214    6 年前

    换行标记是值槽的属性,而不是序列的属性。 new-line tail data true tail 不包含任何值槽(但 back tail

    >> head new-line tail [a b c] on
    == [a b c]
    >> head new-line back tail [a b c] on
    == [a b 
        c
    ]
    >> append [a b c] new-line [d e f] on
    == [a b c 
        d e f
    ]