Go to the first, previous, next, last section, table of contents.


COMPAT 形式

COMPAT形式は、look を使った前方一致検索が高速に行える構造になっている。 また、構造が単純なので、辞書のファイルサイズが小さく抑えられる。

BNF

file     := line*
line     := headword '\t' content '\n'
headword := string
content  := string
string   := char+
char     := [^\t\n]


Go to the first, previous, next, last section, table of contents.