fuget.org
FTrie
by Martin Doms
1.0.1
22 May 16
Toggle Dropdown
Version 1
1.0.1
22 May 16
1.0.0
22 May 16
API Diff
with 1.0.0
Toggle Dropdown
Version 1
1.0.1
22 May 16
1.0.0
22 May 16
FTrie.1.0.1.nupkg
nuget.org
bitbucket.org
<
PackageReference
Include
=
"FTrie"
Version
=
"1.0.1"
/>
Frameworks
net40
Dependencies
FSharp.Core 4.0.0.1
API Diff between 1.0.1 and 1.0.0
11
Additions
1
Removals
public
static
class
Trie
FTrie
public
class
Trie
public
FSharpMap
<
char
,
Trie
>
children
{
get
; }
public
bool
eow
{
get
; }
public
FSharpOption
<
char
>
value
{
get
; }
public
Trie
(
FSharpOption
<
char
>
c
,
IEnumerable
<
string
>
words
)
public
Trie
(
IEnumerable
<
string
>
words
)
public
bool
contains
(
string
word
)
public
IEnumerable
<
string
>
getWords
()
public
IEnumerable
<
string
>
getWordsPrefixedBy
(
string
value
)
public
bool
isPrefix
(
string
prefix
)
public
Trie
withWord
(
string
word
)