function arrPartitionimport { arrPartition } from "https://deno.land/x/evt@v2.4.22/tools/reducers/partition.ts"; arrPartition<ArrOf, U extends ArrOf>(arr: readonly ArrOf[], matcher: (entry: ArrOf) => entry is U): [U[], Exclude<ArrOf, U>[]]arrPartition<ArrOf>(arr: readonly ArrOf[], matcher: (entry: ArrOf) => boolean): [ArrOf[], ArrOf[]]Type ParametersArrOfU extends ArrOfParametersarr: readonly ArrOf[]matcher: (entry: ArrOf) => entry is UReturns[U[], Exclude<ArrOf, U>[]]Type ParametersArrOfParametersarr: readonly ArrOf[]matcher: (entry: ArrOf) => booleanReturns[ArrOf[], ArrOf[]]