-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtable.fs
44 lines (31 loc) · 1.51 KB
/
table.fs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
\ table fomerly in search.fs
\ Copyright (C) 1996,1997,1999,2001,2003,2007,2015 Free Software Foundation, Inc.
\ This file is part of Gforth.
\ Gforth is free software; you can redistribute it and/or
\ modify it under the terms of the GNU General Public License
\ as published by the Free Software Foundation, either version 3
\ of the License, or (at your option) any later version.
\ This program is distributed in the hope that it will be useful,
\ but WITHOUT ANY WARRANTY; without even the implied warranty of
\ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\ GNU General Public License for more details.
\ You should have received a copy of the GNU General Public License
\ along with this program. If not, see http://www.gnu.org/licenses/.
require hash.fs
\ table (case-sensitive wordlist)
: table-find ( addr len wordlist -- nfa / false )
>r 2dup r> bucket @ (tablelfind) ;
Create tablesearch-map ( -- wordlist-map )
' table-find A, ' table-reveal A, ' (rehash) A, ' (rehash) A,
Create cs-wordlist-search-map ( -- wordlist-map )
' table-find A, ' hash-reveal A, ' (rehash) A, ' (rehash) A,
: table ( -- wid ) \ gforth
\g Create a lookup table (case-sensitive, no warnings).
tablesearch-map mappedwordlist ;
: cs-wordlist ( -- wid ) \ gforth
\g Create a case-sensitive wordlist.
cs-wordlist-search-map mappedwordlist ;
: cs-vocabulary ( "name" -- ) \ gforth
\g Create a case-senisitve vocabulary
Vocabulary cs-wordlist-search-map lastxt >body ! ;
' cs-vocabulary alias voctable