@@ -412,7 +412,7 @@ zero-based.
412412
413413### Distinct
414414
415- ** Introduced in version 2**
415+ ** Introduced in version 2 (cost support in version 3) **
416416
417417Returns the distinct elements of a list.
418418
@@ -426,7 +426,7 @@ Examples:
426426
427427### Flatten
428428
429- ** Introduced in version 1**
429+ ** Introduced in version 1 (cost support in version 3) **
430430
431431Flattens a list recursively.
432432If an optional depth is provided, the list is flattened to a the specificied level.
@@ -445,7 +445,7 @@ Examples:
445445
446446### Range
447447
448- ** Introduced in version 2**
448+ ** Introduced in version 2 (cost support in version 3) **
449449
450450Returns a list of integers from 0 to n-1.
451451
@@ -458,7 +458,7 @@ Examples:
458458
459459### Reverse
460460
461- ** Introduced in version 2**
461+ ** Introduced in version 2 (cost support in version 3) **
462462
463463Returns the elements of a list in reverse order.
464464
@@ -471,6 +471,7 @@ Examples:
471471
472472### Slice
473473
474+ ** Introduced in version 0 (cost support in version 3)**
474475
475476Returns a new sub-list using the indexes provided.
476477
@@ -483,7 +484,7 @@ Examples:
483484
484485### Sort
485486
486- ** Introduced in version 2**
487+ ** Introduced in version 2 (cost support in version 3) **
487488
488489Sorts a list with comparable elements. If the element type is not comparable
489490or the element types are not the same, the function will produce an error.
@@ -500,7 +501,7 @@ Examples:
500501
501502### SortBy
502503
503- ** Introduced in version 2**
504+ ** Introduced in version 2 (cost support in version 3) **
504505
505506Sorts a list by a key value, i.e., the order is determined by the result of
506507an expression applied to each element of the list.
0 commit comments