create a string representation of this Sequence including all the string representations of its contents, separated by ',' and enclosed in '[' and ']'.
In case this Sequence is known to be `finite` or has at most (Sequence T).type .AS_STRING_NON_FINITE_MAX_ELEMENTS elements, all elements will be shown in the resulting string. Otherwise, only the first elements will be shown followed by ",…" as in "[1,2,3,4,5,6,7,8,9,10,…]".
To force printing of all elements of a finite `Sequence` for which `finite` is false (which may be the case since a Sequence in general might not know that it if finite), you may use `as_string_all`.
representations of its contents, separated by ',' and enclosed in '['
and ']'.
In case this Sequence is known to be `finite` or has at most (Sequence T).type
.AS_STRING_NON_FINITE_MAX_ELEMENTS elements, all elements will be shown in the
resulting string. Otherwise, only the first elements will be shown followed by
",…" as in "[1,2,3,4,5,6,7,8,9,10,…]".
To force printing of all elements of a finite `Sequence` for which `finite` is
false (which may be the case since a Sequence in general might not know that it
if finite), you may use `as_string_all`.