Sha256: 056bfdfe68fe68616943cc3faf5acf8711f45195ff4866cefdc37a0d965c67e2
Contents?: true
Size: 586 Bytes
Versions: 73
Compression:
Stored size: 586 Bytes
Contents
module ListOps let rec foldl folder state list = failwith "You need to implement this function." let rec foldr folder list state = failwith "You need to implement this function." let length list = failwith "You need to implement this function." let reverse list = failwith "You need to implement this function." let map f list = failwith "You need to implement this function." let filter f list = failwith "You need to implement this function." let append xs ys = failwith "You need to implement this function." let concat xs = failwith "You need to implement this function."
Version data entries
73 entries across 73 versions & 1 rubygems