Sha256: f8cb95f03bc9d09a817a69b303177c19f02d56a8cf03949771a8722ada2f828a
Contents?: true
Size: 586 Bytes
Versions: 83
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 state list = 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
83 entries across 83 versions & 1 rubygems