function partitionRe-exportimport { partition } from "https://deno.land/x/evt@v2.3.1/tools/reducers/index.ts"; partition<ArrOf, U extends ArrOf>(matcher: (entry: ArrOf) => entry is U): ReduceArguments<ArrOf, [U[], Exclude<ArrOf, U>[]]>partition<ArrOf>(matcher: (entry: ArrOf) => boolean): ReduceArguments<ArrOf, [ArrOf[], ArrOf[]]>Type ParametersArrOfU extends ArrOfParametersmatcher: (entry: ArrOf) => entry is UReturnsReduceArguments<ArrOf, [U[], Exclude<ArrOf, U>[]]>Type ParametersArrOfParametersmatcher: (entry: ArrOf) => booleanReturnsReduceArguments<ArrOf, [ArrOf[], ArrOf[]]>