Sha256: 7be50c9d4bd51280f8b940f67790b94ecc61d6ea254d3d6f826f6027beeda29c

Contents?: true

Size: 979 Bytes

Versions: 134

Compression:

Stored size: 979 Bytes

Contents

module CustomSet

// TODO: define the Set type

let empty = failwith "You need to implement this function."

let singleton value = failwith "You need to implement this function."

let isEmpty set = failwith "You need to implement this function."

let size set = failwith "You need to implement this function."

let fromList list = failwith "You need to implement this function."

let toList set = failwith "You need to implement this function."

let contains value set = failwith "You need to implement this function."

let insert value set = failwith "You need to implement this function."

let union left right = failwith "You need to implement this function."

let intersection left right = failwith "You need to implement this function."

let difference left right = failwith "You need to implement this function."

let isSubsetOf left right = failwith "You need to implement this function."

let isDisjointFrom left right = failwith "You need to implement this function."

Version data entries

134 entries across 134 versions & 1 rubygems

Version Path
trackler-2.2.1.180 tracks/fsharp/exercises/custom-set/CustomSet.fs
trackler-2.2.1.179 tracks/fsharp/exercises/custom-set/CustomSet.fs
trackler-2.2.1.178 tracks/fsharp/exercises/custom-set/CustomSet.fs
trackler-2.2.1.177 tracks/fsharp/exercises/custom-set/CustomSet.fs
trackler-2.2.1.176 tracks/fsharp/exercises/custom-set/CustomSet.fs
trackler-2.2.1.175 tracks/fsharp/exercises/custom-set/CustomSet.fs
trackler-2.2.1.174 tracks/fsharp/exercises/custom-set/CustomSet.fs
trackler-2.2.1.173 tracks/fsharp/exercises/custom-set/CustomSet.fs
trackler-2.2.1.172 tracks/fsharp/exercises/custom-set/CustomSet.fs
trackler-2.2.1.171 tracks/fsharp/exercises/custom-set/CustomSet.fs
trackler-2.2.1.170 tracks/fsharp/exercises/custom-set/CustomSet.fs
trackler-2.2.1.169 tracks/fsharp/exercises/custom-set/CustomSet.fs
trackler-2.2.1.167 tracks/fsharp/exercises/custom-set/CustomSet.fs
trackler-2.2.1.166 tracks/fsharp/exercises/custom-set/CustomSet.fs
trackler-2.2.1.165 tracks/fsharp/exercises/custom-set/CustomSet.fs
trackler-2.2.1.164 tracks/fsharp/exercises/custom-set/CustomSet.fs
trackler-2.2.1.163 tracks/fsharp/exercises/custom-set/CustomSet.fs
trackler-2.2.1.162 tracks/fsharp/exercises/custom-set/CustomSet.fs
trackler-2.2.1.161 tracks/fsharp/exercises/custom-set/CustomSet.fs
trackler-2.2.1.160 tracks/fsharp/exercises/custom-set/CustomSet.fs