nonSuspendOf

fun <InternalAccumulator, Value, Result> nonSuspendOf(supply: () -> InternalAccumulator, accumulate: (current: InternalAccumulator, value: Value) -> Unit, finish: (current: InternalAccumulator) -> Result, characteristics: Set<Characteristics> = setOf()): NonSuspendCollector<Value, Result>(source)

Constructs a new Collector from its components