Sha256: f2f4e7e6d32fa3b6c040793aac42ab241eb3b68578a3ab5f321a11ae2f7712d4
Contents?: true
Size: 239 Bytes
Versions: 396
Compression:
Stored size: 239 Bytes
Contents
module Accumulate let rec accumulateLoop func input acc = match input with | [] -> acc |> List.rev | x::xs -> accumulateLoop func xs (func x :: acc) let accumulate func input = accumulateLoop func input List.empty
Version data entries
396 entries across 396 versions & 1 rubygems