Type Alias ICollection<TInput>

ICollection<TInput>: Iterable<TInput> & {
    after(predicateFn: Predicate<TInput, ICollection<TInput>>): null | TInput;
    afterOr<TExtended>(defaultValue: Lazyable<TExtended>, predicateFn: Predicate<TInput, ICollection<TInput>>): TInput | TExtended;
    afterOrFail(predicateFn: Predicate<TInput, ICollection<TInput>>): TInput;
    append<TExtended>(iterable: Iterable<TInput | TExtended, any, any>): ICollection<TInput | TExtended>;
    average(): Extract<TInput, number>;
    before(predicateFn: Predicate<TInput, ICollection<TInput>>): null | TInput;
    beforeOr<TExtended>(defaultValue: Lazyable<TExtended>, predicateFn: Predicate<TInput, ICollection<TInput>>): TInput | TExtended;
    beforeOrFail(predicateFn: Predicate<TInput, ICollection<TInput>>): TInput;
    change<TFilterOutput, TMapOutput>(predicateFn: Predicate<TInput, ICollection<TInput>, TFilterOutput>, mapFn: Map<TFilterOutput, ICollection<TInput>, TMapOutput>): ICollection<TInput | TFilterOutput | TMapOutput>;
    chunk(chunkSize: number): ICollection<ICollection<TInput>>;
    chunkWhile(predicateFn: Predicate<TInput, ICollection<TInput>>): ICollection<ICollection<TInput>>;
    collapse(): ICollection<Collapse<TInput>>;
    count(predicateFn: Predicate<TInput, ICollection<TInput>>): number;
    countBy<TOutput>(selectFn?: Map<TInput, ICollection<TInput>, TOutput>): ICollection<[TOutput, number]>;
    crossJoin<TExtended>(iterable: Iterable<TExtended, any, any>): ICollection<CrossJoinResult<TInput, TExtended>>;
    difference<TOutput>(iterable: Iterable<TInput, any, any>, selectFn?: Map<TInput, ICollection<TInput>, TOutput>): ICollection<TInput>;
    entries(): ICollection<[number, TInput]>;
    every<TOutput>(predicateFn: Predicate<TInput, ICollection<TInput>, TOutput>): boolean;
    filter<TOutput>(predicateFn: Predicate<TInput, ICollection<TInput>, TOutput>): ICollection<TOutput>;
    first<TOutput>(predicateFn?: Predicate<TInput, ICollection<TInput>, TOutput>): null | TOutput;
    firstOr<TOutput, TExtended>(defaultValue: Lazyable<TExtended>, predicateFn?: Predicate<TInput, ICollection<TInput>, TOutput>): TOutput | TExtended;
    firstOrFail<TOutput>(predicateFn?: Predicate<TInput, ICollection<TInput>, TOutput>): TOutput;
    flatMap<TOutput>(mapFn: Map<TInput, ICollection<TInput>, Iterable<TOutput, any, any>>): ICollection<TOutput>;
    forEach(callback: ForEach<TInput, ICollection<TInput>>): void;
    get(index: number): null | TInput;
    getOrFail(index: number): TInput;
    groupBy<TOutput>(selectFn?: Map<TInput, ICollection<TInput>, TOutput>): ICollection<[TOutput, ICollection<TInput>]>;
    insertAfter<TExtended>(predicateFn: Predicate<TInput, ICollection<TInput>>, iterable: Iterable<TInput | TExtended, any, any>): ICollection<TInput | TExtended>;
    insertBefore<TExtended>(predicateFn: Predicate<TInput, ICollection<TInput>>, iterable: Iterable<TInput | TExtended, any, any>): ICollection<TInput | TExtended>;
    isEmpty(): boolean;
    isNotEmpty(): boolean;
    join(separator?: string): Extract<TInput, string>;
    keys(): ICollection<number>;
    last<TOutput>(predicateFn?: Predicate<TInput, ICollection<TInput>, TOutput>): null | TOutput;
    lastOr<TOutput, TExtended>(defaultValue: Lazyable<TExtended>, predicateFn?: Predicate<TInput, ICollection<TInput>, TOutput>): TOutput | TExtended;
    lastOrFail<TOutput>(predicateFn?: Predicate<TInput, ICollection<TInput>, TOutput>): TOutput;
    map<TOutput>(mapFn: Map<TInput, ICollection<TInput>, TOutput>): ICollection<TOutput>;
    max(): Extract<TInput, number>;
    median(): Extract<TInput, number>;
    min(): Extract<TInput, number>;
    nth(step: number): ICollection<TInput>;
    padEnd<TExtended>(maxLength: number, fillItems: Iterable<TExtended, any, any>): ICollection<TInput | TExtended>;
    padStart<TExtended>(maxLength: number, fillItems: Iterable<TExtended, any, any>): ICollection<TInput | TExtended>;
    page(page: number, pageSize: number): ICollection<TInput>;
    partition(predicateFn: Predicate<TInput, ICollection<TInput>>): ICollection<ICollection<TInput>>;
    percentage(predicateFn: Predicate<TInput, ICollection<TInput>>): number;
    pipe<TOutput>(callback: Transform<ICollection<TInput>, TOutput>): TOutput;
    prepend<TExtended>(iterable: Iterable<TInput | TExtended, any, any>): ICollection<TInput | TExtended>;
    reduce(reduceFn: Reduce<TInput, ICollection<TInput>, TInput>): TInput;
    reduce(reduceFn: Reduce<TInput, ICollection<TInput>, TInput>, initialValue: TInput): TInput;
    reduce<TOutput>(reduceFn: Reduce<TInput, ICollection<TInput>, TOutput>, initialValue: TOutput): TOutput;
    reject<TOutput>(predicateFn: Predicate<TInput, ICollection<TInput>, TOutput>): ICollection<Exclude<TInput, TOutput>>;
    repeat(amount: number): ICollection<TInput>;
    reverse(chunkSize?: number): ICollection<TInput>;
    searchFirst(predicateFn: Predicate<TInput, ICollection<TInput>>): number;
    searchLast(predicateFn: Predicate<TInput, ICollection<TInput>>): number;
    set(index: number, value: TInput | Map<TInput, ICollection<TInput>, TInput>): ICollection<TInput>;
    shuffle(mathRandom?: (() => number)): ICollection<TInput>;
    size(): number;
    skip(offset: number): ICollection<TInput>;
    skipUntil(predicateFn: Predicate<TInput, ICollection<TInput>>): ICollection<TInput>;
    skipWhile(predicateFn: Predicate<TInput, ICollection<TInput>>): ICollection<TInput>;
    slice(start?: number, end?: number): ICollection<TInput>;
    sliding(chunkSize: number, step?: number): ICollection<ICollection<TInput>>;
    sole<TOutput>(predicateFn: Predicate<TInput, ICollection<TInput>, TOutput>): TOutput;
    some<TOutput>(predicateFn: Predicate<TInput, ICollection<TInput>, TOutput>): boolean;
    sort(comparator?: Comparator<TInput>): ICollection<TInput>;
    split(chunkAmount: number): ICollection<ICollection<TInput>>;
    sum(): Extract<TInput, number>;
    take(limit: number): ICollection<TInput>;
    takeUntil(predicateFn: Predicate<TInput, ICollection<TInput>>): ICollection<TInput>;
    takeWhile(predicateFn: Predicate<TInput, ICollection<TInput>>): ICollection<TInput>;
    tap(callback: Tap<ICollection<TInput>>): ICollection<TInput>;
    toArray(): TInput[];
    toIterator(): Iterator<TInput, void, any>;
    toMap(): EnsureMap<TInput>;
    toRecord(): EnsureRecord<TInput>;
    unique<TOutput>(selectFn?: Map<TInput, ICollection<TInput>, TOutput>): ICollection<TInput>;
    values(): ICollection<TInput>;
    when<TExtended>(condition: boolean, callback: Modifier<ICollection<TInput>, ICollection<TExtended>>): ICollection<TInput | TExtended>;
    whenEmpty<TExtended>(callback: Modifier<ICollection<TInput>, ICollection<TExtended>>): ICollection<TInput | TExtended>;
    whenNot<TExtended>(condition: boolean, callback: Modifier<ICollection<TInput>, ICollection<TExtended>>): ICollection<TInput | TExtended>;
    whenNotEmpty<TExtended>(callback: Modifier<ICollection<TInput>, ICollection<TExtended>>): ICollection<TInput | TExtended>;
    zip<TExtended>(iterable: Iterable<TExtended, any, any>): ICollection<[TInput, TExtended]>;
}

The ICollection contract offers a fluent and efficient approach to working with Iterable objects. ICollection is immutable.

Type Parameters

  • TInput = unknown

Type declaration

  • after:function
    • The after method returns the item that comes after the first item that matches predicateFn. If the collection is empty or the predicateFn does not match or matches the last item then null is returned.

      Parameters

      Returns null | TInput

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4]);
      collection.after(item => item === 2);
      // 3
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4]);
      collection.after(item => item === 4);
      // null
  • afterOr:function
    • The afterOr method returns the item that comes after the first item that matches predicateFn. If the collection is empty or the predicateFn does not match or matches the last item then defaultValue is returned.

      Type Parameters

      Parameters

      Returns TInput | TExtended

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4]);
      collection.afterOr(-1, item => item === 2);
      // 3
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4]);
      collection.afterOr(-1, item => item === 4);
      // -1
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4]);
      collection.afterOr(() => -1, item => item === 4);
      // -1
  • afterOrFail:function
    • The afterOrFail method returns the item that comes after the first item that matches predicateFn. If the collection is empty or the predicateFn does not match or matches the last item then an error is thrown.

      Parameters

      Returns TInput

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4]);
      collection.afterOrFail(item => item === 2);
      // 3
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4]);
      collection.afterOrFail(item => item === 4);
      // error is thrown
  • append:function
  • average:function
    • The average method returns the average of all items in the collection. If the collection includes other than number items an error will be thrown. If the collection is empty an error will also be thrown.

      Returns Extract<TInput, number>

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3]);
      collection.average();
      // 2
  • before:function
    • The before method returns the item that comes before the first item that matches predicateFn. If the predicateFn does not match or matches the first item then null is returned.

      Parameters

      Returns null | TInput

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4]);
      collection.before(item => item === 2);
      // 1
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4]);
      collection.before(item => item === 1);
      // null
  • beforeOr:function
    • The beforeOr method returns the item that comes before the first item that matches predicateFn. If the collection is empty or the predicateFn does not match or matches the first item then defaultValue is returned.

      Type Parameters

      Parameters

      Returns TInput | TExtended

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4]);
      collection.beforeOr(-1, item => item === 2);
      // 1
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4]);
      collection.beforeOr(-1, item => item === 1);
      // -1
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4]);
      collection.beforeOr(() => -1, item => item === 1);
      // -1
  • beforeOrFail:function
    • The beforeOrFail method returns the item that comes before the first item that matches predicateFn. If the collection is empty or the predicateFn does not match or matches the first item then an error is thrown.

      Parameters

      Returns TInput

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4]);
      collection.beforeOrFail(item => item === 2);
      // 1
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4]);
      collection.beforeOrFail(item => item === 1);
      // error is thrown
  • change:function
  • chunk:function
    • The chunk method breaks the collection into multiple, smaller collections of size chunkSize. If chunkSize is not divisible with total number of items then the last chunk will contain the remaining items.

      Parameters

      • chunkSize: number

      Returns ICollection<ICollection<TInput>>

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4, 5, 6, 7]);
      const chunks = collection.chunk(4);
      chunks.map(chunk => chunk.toArray()).toArray();
      // [[1, 2, 3, 4], [5, 6, 7]]
  • chunkWhile:function
    • The chunkWhile method breaks the collection into multiple, smaller collections based on the evaluation of predicateFn. The chunk variable passed to the predicateFn may be used to inspect the previous item.

      Parameters

      Returns ICollection<ICollection<TInput>>

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection("AABBCCCD");
      const chunks = collection.chunkWhile((value, index, chunk) => {
      return value === chunk.last();
      });
      chunks.map(chunk => chunk.toArray()).toArray();
      // [["A", "A"], ["B", "B"], ["C", "C", "C"], ["D"]]
  • collapse:function
  • count:function
    • The count method returns the total number of items in the collection that passes predicateFn.

      Parameters

      Returns number

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4, 5, 6]);
      collection.count(value => value % 2 === 0);
      // 3
  • countBy:function
    • The countBy method counts the occurrences of values in the collection by selectFn . By default the equality check occurs on the item.

      Type Parameters

      Parameters

      Returns ICollection<[TOutput, number]>

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection(["a", "a", "a", "b", "b", "c"]);
      const count = collection
      .countBy()
      .map(([key, collection]) => [key, collection.toArray()])
      .toArray();
      // [
      // ["a", 3],
      // ["b", 2],
      // ["c", 1]
      // ]
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection(["alice@gmail.com", "bob@yahoo.com", "carlos@gmail.com"]);
      const count = collection
      .countBy(item => item.split("@")[1])
      .toArray();
      // [
      // ["gmail.com", 2],
      // ["yahoo.com", 1]
      // ]
  • crossJoin:function
    • The crossJoin method cross joins the collection's values among iterables, returning a Cartesian product with all possible permutations.

      Type Parameters

      • TExtended

      Parameters

      Returns ICollection<CrossJoinResult<TInput, TExtended>>

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2]);
      const matrix = collection.cross(["a", "b"]);
      matrix.toArray();
      // [
      // [1, "a"],
      // [1, "b"],
      // [2, "a"],
      // [2, "b"],
      // ]
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2]);
      const matrix = collection.cross(["a", "b"]).cross(["I", "II"]);
      matrix.toArray();
      // [
      // [1, "a", "I"],
      // [1, "a", "II"],
      // [1, "b", "I"],
      // [1, "b", "II"],
      // [2, "a", "I"],
      // [2, "a", "II"],
      // [2, "b", "I"],
      // [2, "b", "II"],
      // ]
  • difference:function
    • The difference method will return the values in the original collection that are not present in iterable. By default the equality check occurs on the item.

      Type Parameters

      Parameters

      Returns ICollection<TInput>

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 2, 3, 4, 5]);
      const difference = collection.difference([2, 4, 6, 8]);
      difference.toArray();
      // [1, 3, 5]
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([
      { name: "iPhone 6", brand: "Apple", type: "phone" },
      { name: "iPhone 5", brand: "Apple", type: "phone" },
      { name: "Apple Watch", brand: "Apple", type: "watch" },
      { name: "Galaxy S6", brand: "Samsung", type: "phone" },
      { name: "Galaxy Gear", brand: "Samsung", type: "watch" },
      ]);
      const difference = collection.difference(
      [
      { name: "Apple Watch", brand: "Apple", type: "watch" },
      ],
      (product) => product.type
      );
      difference.toArray();
      // [
      // { name: "iPhone 6", brand: "Apple", type: "phone" },
      // { name: "iPhone 5", brand: "Apple", type: "phone" },
      // { name: "Galaxy S6", brand: "Samsung", type: "phone" },
      // ]
  • entries:function
  • every:function
  • filter:function
  • first:function
    • The first method returns the first item in the collection that passes predicateFn . By default it will get the first item. If the collection is empty or no items passes predicateFn than null i returned.

      Type Parameters

      • TOutput

      Parameters

      Returns null | TOutput

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4]);
      collection.first();
      // 1
      @example
      ```ts
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4]);
      collection.first(item => item > 2);
      // 3

      @example

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4]);
      collection.first(item => item > 10);
      // null

      // 3

  • firstOr:function
    • The firstOr method returns the first item in the collection that passes predicateFn By default it will get the first item. If the collection is empty or no items passes predicateFn than defaultValue .

      Type Parameters

      Parameters

      Returns TOutput | TExtended

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4]);
      collection.firstOr(-1);
      // 1
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4]);
      collection.firstOr(-1, item => item > 2);
      // 3
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4]);
      collection.firstOr(-1, item => item > 10);
      // -1
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4]);
      collection.firstOr(() => -1, item => item > 10);
      // -1
  • firstOrFail:function
    • The firstOrFail method returns the first item in the collection that passes predicateFn . By default it will get the first item. If the collection is empty or no items passes predicateFn than error is thrown.

      Type Parameters

      • TOutput

      Parameters

      Returns TOutput

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4]);
      collection.firstOrFail();
      // 1
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4]);
      collection.firstOrFail(item => item > 2);
      // 3
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4]);
      collection.firstOrFail(item => item > 10);
      // throws an error
  • flatMap:function
    • The flatMap method returns a new array formed by applying mapFn to each item of the array, and then collapses the result by one level. It is identical to a map method followed by a collapse method.

      Type Parameters

      • TOutput

      Parameters

      Returns ICollection<TOutput>

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([["a", "b"], ["c", "d"]]).flatMap(item => [item.length, ...item]);
      collection.toArray();
      // [2, "a", "b", 2, "c", "d"]
  • forEach:function
  • get:function
    • The get method returns the item by index. If the item is not found null will returned.

      Parameters

      • index: number

      Returns null | TInput

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 4, 2, 8, -2]);
      // Will be 2
      collection.get(2);

      // Will be null
      collection.get(5);
  • getOrFail:function
    • The getOrFail method returns the item by index. If the item is not found an error will be thrown.

      Parameters

      • index: number

      Returns TInput

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 4, 2, 8, -2]);
      // Will be 2
      collection.getOrFail(2);

      // An error will thrown
      collection.getOrFail(5);
  • groupBy:function
    • The groupBy method groups the collection's items by selectFn . By default the equality check occurs on the item.

      Type Parameters

      Parameters

      Returns ICollection<[TOutput, ICollection<TInput>]>

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection(["a", "a", "a", "b", "b", "c"]);
      const group = collection
      .groupBy()
      .map(([key, collection]) => [key, collection.toArray()])
      .toArray();
      // [
      // [
      // "a",
      // ["a", "a", "a"]
      // ],
      // [
      // "b",
      // ["b", "b"]
      // ],
      // [
      // "c",
      // ["c"]
      // ]
      // ]
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection(["alice@gmail.com", "bob@yahoo.com", "carlos@gmail.com"]);
      const group = collection
      .groupBy(item => item.split("@")[1])
      .map(([key, collection]) => [key, collection.toArray()])
      .toArray();
      // [
      // [
      // "gmail.com",
      // ["alice@gmail.com", "carlos@gmail.com"]
      // ],
      // [
      // "yahoo.com",
      // ["bob@yahoo.com"]
      // ]
      // ]
  • insertAfter:function
  • insertBefore:function
  • isEmpty:function
  • isNotEmpty:function
  • join:function
    • The join method joins the collection's items with separator . An error will be thrown when if a none string item is encounterd.

      Parameters

      • Optionalseparator: string

      Returns Extract<TInput, string>

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4]);
      collection.map(item => item.toString()).join();
      // "1,2,3,4"
      @example
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4]);
      collection.map(item => item.toString()).join("_");
      // "1_2_3_4"
  • keys:function
  • last:function
    • The last method returns the last item in the collection that passes predicateFn . By default it will get the last item. If the collection is empty or no items passes predicateFn than null i returned.

      Type Parameters

      • TOutput

      Parameters

      Returns null | TOutput

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4]);
      collection.last();
      // 4
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4]);
      collection.last(item => item < 4);
      // 3
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4]);
      collection.last(item => item > 10);
      // null

      // 3

  • lastOr:function
    • The lastOr method returns the last item in the collection that passes predicateFn . By default it will get the last item. If the collection is empty or no items passes predicateFn than defaultValue .

      Type Parameters

      Parameters

      Returns TOutput | TExtended

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4]);
      collection.lastOr(-1);
      // 4
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4]);
      collection.lastOr(-1, item => item < 4);
      // 3
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4]);
      collection.lastOr(-1, item => item > 10);
      // -1
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4]);
      collection.lastOr(() => -1, item => item > 10);
      // -1
  • lastOrFail:function
    • The lastOrFail method returns the last item in the collection that passes predicateFn . By default it will get the last item. If the collection is empty or no items passes predicateFn than error is thrown.

      Type Parameters

      • TOutput

      Parameters

      Returns TOutput

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4]);
      collection.lastOrFail();
      // 4
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4]);
      collection.lastOrFail(item => item < 4);
      // 3
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4]);
      collection.lastOrFail(item => item > 10);
      // throws an error
  • map:function
  • max:function
  • median:function
    • The median method returns the median of all items in the collection. If the collection includes other than number items an error will be thrown. If the collection is empty an error will also be thrown.

      Returns Extract<TInput, number>

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3]);
      collection.median();
      // 2
  • min:function
  • nth:function
  • padEnd:function
    • The padEnd method pads this collection with fillItems until the resulting collection size reaches maxLength. The padding is applied from the end of this collection.

      Type Parameters

      Parameters

      • maxLength: number
      • fillItems: Iterable<TExtended, any, any>

      Returns ICollection<TInput | TExtended>

      import { ListCollection } from "@daiso-tech/core";;

      new ListCollection("abc").padEnd(10, "foo").join("");
      // "abcfoofoof"

      new ListCollection("abc").padEnd(6, "123465").join("");
      // "abc123"

      new ListCollection("abc").padEnd(8, "0").join("");
      // "abc00000"

      new ListCollection("abc").padEnd(1, "_").join("");
      // "abc"
  • padStart:function
    • The padStart method pads this collection with fillItems until the resulting collection size reaches maxLength. The padding is applied from the start of this collection.

      Type Parameters

      Parameters

      • maxLength: number
      • fillItems: Iterable<TExtended, any, any>

      Returns ICollection<TInput | TExtended>

      import { ListCollection } from "@daiso-tech/core";;

      new ListCollection("abc").padStart(10, "foo").join("");
      // "foofoofabc"

      new ListCollection("abc").padStart(6, "123465").join("");
      // "123abc"

      new ListCollection("abc").padStart(8, "0").join("");
      // "00000abc"

      new ListCollection("abc").padStart(1, "_").join("");
      // "abc"
  • page:function
    • The page method returns a new collection containing the items that would be present on page with custom pageSize .

      Parameters

      • page: number
      • pageSize: number

      Returns ICollection<TInput>

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4, 5, 6, 7, 8, 9]);
      const page = collection.page(2, 3);
      page.toArray();
      // [4, 5, 6]
  • partition:function
  • percentage:function
    • The percentage method may be used to quickly determine the percentage of items in the collection that pass predicateFn. If the collection is empty an error will also be thrown.

      Parameters

      Returns number

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 1, 2, 2, 2, 3]);
      collection.percentage(value => value === 1);
      // 33.333
  • pipe:function
    • The pipe method passes the orignal collection to callback and returns the result from callback. This method is useful when you want compose multiple smaller functions.

      Type Parameters

      Parameters

      Returns TOutput

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, "2", "a", 1, 3, {}]);
      function toNbrs<TInput>(
      collection: ICollection<TInput>,
      ): ICollection<number> {
      return collection
      .map((item) => Number(item))
      .reject((nbr) => Number.isNaN(nbr));
      }
      function nbrToStr(collection: ICollection<number>): number[] {
      return collection.repeat(2).toArray();
      }
      const piped = collection.pipe(toNbrs).pipe(nbrToStr);
      console.log(piped);
      // [ 1, 2, 1, 3 ]
  • prepend:function
  • reduce:function
  • reject:function
  • repeat:function
    • The repeat method will repeat the original collection amount times.

      Parameters

      • amount: number

      Returns ICollection<TInput>

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3]);
      const newCollection = collection.repeat(3);
      newCollection.toArray();
      // [1, 2, 3, 1, 2, 3, 1, 2, 3]
  • reverse:function
    • The reverse method will reverse the order of the collection. The reversing of the collection will be applied in chunks that are the size of chunkSize .

      Parameters

      • OptionalchunkSize: number

      Returns ICollection<TInput>

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([-1, 2, 4, 3]);
      collection.reverse().toArray();
      // [3, 4, 2, -1]
  • searchFirst:function
    • The searchFirst return the index of the first item that matches predicateFn.

      Parameters

      Returns number

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection(["a", "b", "b", "c"]);
      collection.searchFirst(item => item === "b");
      // 1
  • searchLast:function
  • set:function
    • The set method changes a item by i>index using value.

      Parameters

      Returns ICollection<TInput>

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4, 5]);
      const newCollection = collection.set(1, -1);
      newCollection.toArray();
      // [1, -1, 3, 4, 5]
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4, 5]);
      const newCollection = collection.set(1, (prevValue) => prevValue - 2);
      newCollection.toArray();
      // [1, 0, 3, 4, 5]
  • shuffle:function
  • size:function
  • skip:function
  • skipUntil:function
  • skipWhile:function
  • slice:function
    • The slice method creates porition of the original collection selected from start and end where start and end (end not included) represent the index of items in the collection.

      Parameters

      • Optionalstart: number
      • Optionalend: number

      Returns ICollection<TInput>

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection(["a", "b", "c", "d", "e", "f"]);
      collection.slice(3).toArray();
      // ["d", "e", "f"]
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection(["a", "b", "c", "d", "e", "f"]);
      collection.slice(undefined, 2).toArray();
      // ["a", "b"]
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection(["a", "b", "c", "d", "e", "f"]);
      collection.slice(2, 5).toArray();
      // ["c", "d", "e"]
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection(["a", "b", "c", "d", "e", "f"]);
      collection.slice(-2).toArray();
      // ["e", "f"]
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection(["a", "b", "c", "d", "e", "f"]);
      collection.slice(undefined, -2).toArray();
      // ["a", "b", "c", "d"]
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection(["a", "b", "c", "d", "e", "f"]);
      collection.slice(-4, -2).toArray();
      // ["c", "d"]
  • sliding:function
    • The sliding method returns a new collection of chunks representing a "sliding window" view of the items in the collection.

      Parameters

      • chunkSize: number
      • Optionalstep: number

      Returns ICollection<ICollection<TInput>>

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4, 5])
      const chunks = collection.sliding(2);
      chunks.map(chunk => chunk.toArray()).toArray();
      // [[1, 2], [2, 3], [3, 4], [4, 5]]
  • sole:function
    • The sole method returns the first item in the collection that passes predicateFn, but only if predicateFn matches exactly one item. If no items matches or multiple items are found an error will be thrown.

      Type Parameters

      • TOutput

      Parameters

      Returns TOutput

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4, 5]);
      collection.sole(item => item === 4);
      // 4
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4, 4, 5]);
      collection.sole(item => item === 4);
      // error is thrown
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 5]);
      collection.sole(item => item === 4);
      // error is thrown
  • some:function
  • sort:function
    • The sort method sorts the collection. You can provide a comparator function.

      Parameters

      Returns ICollection<TInput>

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([-1, 2, 4, 3]);
      collection.sort().toArray();
      // [-1, 2, 3, 4]
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([
      { name: "Anders", age: 30 },
      { name: "Joe", age: 20 },
      { name: "Hasan", age: 25 },
      { name: "Linda", age: 19 }
      ]);
      collection.sort(({ age: ageA }, { age: ageB }) => ageA - ageB).toArray();
      // [
      // { name: "Linda", age: 19 }
      // { name: "Joe", age: 20 },
      // { name: "Hasan", age: 25 },
      // { name: "Anders", age: 30 },
      // ]
  • split:function
    • The split method breaks a collection evenly into chunkAmount of chunks.

      Parameters

      • chunkAmount: number

      Returns ICollection<ICollection<TInput>>

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4, 5]);
      const chunks = collection.split(3);
      chunks.map(chunk => chunk.toArray()).toArray();
      // [[1, 2], [3, 4], [5]]
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4, 5, 6]);
      const chunks = collection.split(3);
      chunks.map(chunk => chunk.toArray()).toArray();
      // [[1, 2], [3, 4], [5, 6]]
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4, 5, 6, 7]);
      const chunks = collection.split(3);
      chunks.map(chunk => chunk.toArray()).toArray();
      // [[1, 2, 7], [3, 4], [5, 6]]
  • sum:function
  • take:function
    • The take method takes the first limit items.

      Parameters

      • limit: number

      Returns ICollection<TInput>

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([0, 1, 2, 3, 4, 5]);
      const chunk = collection.take(3);
      chunk.toArray();
      // [0, 1, 2]
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([0, 1, 2, 3, 4, 5]);
      const chunk = collection.take(-2);
      chunk.toArray();
      // [0, 1, 2, 3]
  • takeUntil:function
  • takeWhile:function
  • tap:function
    • The tap method passes a copy of the original collection to callback, allowing you to do something with the items while not affecting the original collection.

      Parameters

      Returns ICollection<TInput>

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 2, 3, 4, 5, 6])
      .tap(collection => {
      collection
      .filter(value => value % 2 === 0)
      .forEach(value => console.log(value))
      })
      .toArray();
      // [1, 2, 3, 4, 5, 6]
  • toArray:function
  • toIterator:function
  • toMap:function
  • toRecord:function
  • unique:function
    • The unique method removes all duplicate values from the collection by selectFn . By default the equality check occurs on the item.

      Type Parameters

      Parameters

      Returns ICollection<TInput>

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([1, 1, 2, 2, 3, 4, 2]);
      collection.unique().toArray();
      // [1, 2, 3, 4]
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection([
      { name: "iPhone 6", brand: "Apple", type: "phone" },
      { name: "iPhone 5", brand: "Apple", type: "phone" },
      { name: "Apple Watch", brand: "Apple", type: "watch" },
      { name: "Galaxy S6", brand: "Samsung", type: "phone" },
      { name: "Galaxy Gear", brand: "Samsung", type: "watch" },
      ]);
      const unique = collection.unique({
      selectFn: item => item.brand
      }).toArray();
      // [
      // { name: "iPhone 6", brand: "Apple", type: "phone" },
      // { name: "Galaxy S6", brand: "Samsung", type: "phone" },
      // ]
  • values:function
  • when:function
  • whenEmpty:function
  • whenNot:function
  • whenNotEmpty:function
  • zip:function
    • The zip method merges together the values of iterable with the values of the collection at their corresponding index. The returned collection has size of the shortest collection.

      Type Parameters

      • TExtended

      Parameters

      Returns ICollection<[TInput, TExtended]>

      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection(["Chair", "Desk"]);
      const zipped = collection.zip([100, 200]);
      zipped.toArray();
      // [["Chair", 100], ["Desk", 200]]
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection(["Chair", "Desk", "Couch"]);
      const zipped = collection.zip([100, 200]);
      zipped.toArray();
      // [["Chair", 100], ["Desk", 200]]
      import { ListCollection } from "@daiso-tech/core";;

      const collection = new ListCollection(["Chair", "Desk"]);
      const zipped = collection.zip([100, 200, 300]);
      zipped.toArray();
      // [["Chair", 100], ["Desk", 200]]