Sha256: f0eeb407de2953e333d1616f8294a4cb9a3b690c39af9e0ccd60a034ae384a1a
Contents?: true
Size: 564 Bytes
Versions: 89
Compression:
Stored size: 564 Bytes
Contents
module SimpleLinkedList //TODO: define LinkedList type let nil = failwith "You need to implement this function." let create x n = failwith "You need to implement this function." let isNil x = failwith "You need to implement this function." let next x = failwith "You need to implement this function." let datum x = failwith "You need to implement this function." let toList x = failwith "You need to implement this function." let fromList xs = failwith "You need to implement this function." let reverse x = failwith "You need to implement this function."
Version data entries
89 entries across 89 versions & 1 rubygems