Skip to content

Commit ccec663

Browse files
committed
0.4.1: exports for find() proc use
1 parent b759a34 commit ccec663

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

skiplists.nim

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ type
2727
EmptySkipListError* {.deprecated.} = SkipListEmptyError ##
2828
## Alias for SkipListEmptyError
2929

30-
SkipListObj[T] = object
30+
SkipListObj*[T] = object
3131
over: SkipList[T]
3232
down: SkipList[T]
33-
value: T
33+
value*: T
3434
SkipList*[T] = ref SkipListObj[T]
3535

3636
SkipListCmp*[T] = proc(a, b: SkipList[T]): cmp {.noSideEffect.} ##

skiplists.nimble

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = "0.4.0"
1+
version = "0.4.1"
22
author = "disruptek"
33
description = "skiplists"
44
license = "MIT"

0 commit comments

Comments
 (0)