Skip to content

rexcfnghk/fsharp-dlist

Repository files navigation

FSharp.DLIst

Toy implementation of Difference List.

Usage

open FSharp.DList

let dList1 = DList.singleton 1
let dList2 = DList.fromSeq [1..3]
let dList3 = dList { 1; 2; 3 }
let dList4 = dList { yield 1; yield 2; yield 3 }
let dList5 = dList { yield! [1..3] }
let dList6 = dList { for i in [1..5] -> i }

Coverage

Coverage Status

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages