This commit is contained in:
parent
aa2ff7b2f0
commit
2f3113f55d
11742 changed files with 1223940 additions and 0 deletions
29
unikernel/duniverse/lwt-dllist/lwt-dllist.opam
Normal file
29
unikernel/duniverse/lwt-dllist/lwt-dllist.opam
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
version: "1.1.0"
|
||||
opam-version: "2.0"
|
||||
maintainer: [ "Anil Madhavapeddy <anil@recoil.org>" ]
|
||||
authors: ["Jérôme Vouillon" "Jérémie Dimino"]
|
||||
license: "MIT"
|
||||
homepage: "https://github.com/mirage/lwt-dllist"
|
||||
doc: "https://mirage.github.io/lwt-dllist/"
|
||||
bug-reports: "https://github.com/mirage/lwt-dllist/issues"
|
||||
depends: [
|
||||
"ocaml" {>= "4.02.0"}
|
||||
"lwt" {with-test}
|
||||
"dune"
|
||||
]
|
||||
build: [
|
||||
["dune" "subst" ] {pinned}
|
||||
["dune" "build" "-p" name "-j" jobs]
|
||||
["dune" "runtest" "-p" name "-j" jobs] {with-test}
|
||||
]
|
||||
dev-repo: "git+https://github.com/mirage/lwt-dllist.git"
|
||||
synopsis: "Mutable doubly-linked list with Lwt iterators"
|
||||
description: """
|
||||
A sequence is an object holding a list of elements which support
|
||||
the following operations:
|
||||
|
||||
- adding an element to the left or the right in time and space O(1)
|
||||
- taking an element from the left or the right in time and space O(1)
|
||||
- removing a previously added element from a sequence in time and space O(1)
|
||||
- removing an element while the sequence is being transversed.
|
||||
"""
|
||||
Loading…
Add table
Add a link
Reference in a new issue