(sep?: string)
| 279 | } |
| 280 | |
| 281 | public join(sep?: string): string { |
| 282 | return this.map((s) => Literals.toString(s)) |
| 283 | .array() |
| 284 | .join(sep ?? ", "); |
| 285 | } |
| 286 | |
| 287 | public sort<U>(key?: ArrayFunc<T, U>, direction?: "asc" | "desc", comparator?: ArrayComparator<U>): DataArray<T> { |
| 288 | if (this.values.length == 0) return this; |