The wordnet Reference Manual

This is the wordnet Reference Manual, version 0.0.1, generated automatically by Declt version 4.0 beta 2 "William Riker" on Mon Feb 26 18:18:07 2024 GMT+0.

Table of Contents


1 Introduction


2 Systems

The main system appears first, followed by any subsystem dependency.


2.1 wordnet

Common Lisp interface to WordNet

Author

Mark Nahabedian

License

MIT + WordNet

Version

0.0.1

Dependency

split-sequence (system).

Source

wordnet.asd.

Child Components

3 Files

Files are sorted by type and then listed depth-first from the systems components trees.


3.1 Lisp


3.1.1 wordnet/wordnet.asd

Source

wordnet.asd.

Parent Component

wordnet (system).

ASDF Systems

wordnet.


3.1.2 wordnet/packages.lisp

Source

wordnet.asd.

Parent Component

wordnet (system).

Packages

wordnet.


3.1.3 wordnet/parts-of-speech.lisp

Dependency

packages.lisp (file).

Source

wordnet.asd.

Parent Component

wordnet (system).

Public Interface
Internals

3.1.4 wordnet/wordnet-database-files.lisp

Dependency

parts-of-speech.lisp (file).

Source

wordnet.asd.

Parent Component

wordnet (system).

Public Interface
Internals

3.1.5 wordnet/parse-wordnet-data.lisp

Dependency

wordnet-database-files.lisp (file).

Source

wordnet.asd.

Parent Component

wordnet (system).

Public Interface
Internals

3.1.6 wordnet/representation.lisp

Dependency

parse-wordnet-data.lisp (file).

Source

wordnet.asd.

Parent Component

wordnet (system).

Public Interface
Internals

3.1.7 wordnet/relationship-algorithms.lisp

Dependency

representation.lisp (file).

Source

wordnet.asd.

Parent Component

wordnet (system).

Public Interface

3.1.8 wordnet/examples.lisp

Dependency

relationship-algorithms.lisp (file).

Source

wordnet.asd.

Parent Component

wordnet (system).

Public Interface
Internals

4 Packages

Packages are listed by definition order.


4.1 wordnet

Source

packages.lisp.

Nickname

wn

Use List

common-lisp.

Public Interface
Internals

5 Definitions

Definitions are sorted by export status, category, package, and then by lexicographic order.


5.1 Public Interface


5.1.1 Macros

Macro: do-parts-of-speech ((part-of-speech-var pos-name-var) &body body)
Package

wordnet.

Source

parts-of-speech.lisp.


5.1.2 Ordinary functions

Function: cached-data-lookup (synset-index part-of-speech)
Package

wordnet.

Source

representation.lisp.

Function: cached-index-lookup (word part-of-speech)

Looks up the entries for word (a string or a symbol) for the specified part-of-speech.

Package

wordnet.

Source

representation.lisp.

Function: canonicalize-part-of-speech (part-of-speech)
Package

wordnet.

Source

parts-of-speech.lisp.

Function: commonality (relation-type &rest synsets)
Package

wordnet.

Source

relationship-algorithms.lisp.

Function: find-synset-with-sense (part-of-speech word like-word)
Package

wordnet.

Source

examples.lisp.

Function: get-antonyms (word part-of-speech)
Package

wordnet.

Source

examples.lisp.

Function: get-synonyms (words &optional part-of-speech)
Package

wordnet.

Source

examples.lisp.

Function: index-entry-synsets (index-entry)
Package

wordnet.

Source

representation.lisp.

Function: parse-data-file-entry (entry)

Given a string as returned by READ-DATA-FILE-ENTRY, representing a symset, return the data.

Package

wordnet.

Source

parse-wordnet-data.lisp.

Function: parse-exception-file-entry (entry)
Package

wordnet.

Source

parse-wordnet-data.lisp.

Function: parse-index-file-entry (entry)

Given a string as returned by INDEX-ENTRY-FOR-WORD, decode it and return the elements of the index entry.

Package

wordnet.

Source

parse-wordnet-data.lisp.

Function: parts-of-speech ()
Package

wordnet.

Source

parts-of-speech.lisp.

Function: pretty-print-synset (stream synset &key word-index gloss word-sense-tags)
Package

wordnet.

Source

representation.lisp.

Function: relation-transitive-closure (synset relation-type)
Package

wordnet.

Source

relationship-algorithms.lisp.

Function: synsets-containing-word/s (word/s &optional part-of-speech)

Returns a list of synsets containing the (or all of the) words in word/s.

Package

wordnet.

Source

examples.lisp.

Function: wordnet-describe (word-or-phrase &optional part-of-speech)
Package

wordnet.

Source

examples.lisp.

Function: wordnet-describe* (word-or-phrase &optional part-of-speech)
Package

wordnet.

Source

examples.lisp.


5.1.3 Generic functions

Generic Function: exception-entry-for-word (pos word)
Package

wordnet.

Methods
Method: exception-entry-for-word ((pos symbol) word)
Source

wordnet-database-files.lisp.

Generic Function: index-entry-for-word (from-where word)

Return a string that is the entry for WORD in the specified WordNet index file

Package

wordnet.

Source

wordnet-database-files.lisp.

Methods
Method: index-entry-for-word (index-file-stream word)
Method: index-entry-for-word ((pathname pathname) word)
Method: index-entry-for-word ((pos symbol) word)
Method: index-entry-for-word ((pos null) word)
Generic Reader: index-entry-word (object)
Package

wordnet.

Methods
Reader Method: index-entry-word ((wordnet-index-entry wordnet-index-entry))

automatically generated reader method

Source

representation.lisp.

Target Slot

word.

Generic Reader: part-of-speech (object)
Package

wordnet.

Methods
Reader Method: part-of-speech ((wordnet-synset-entry wordnet-synset-entry))

automatically generated reader method

Source

representation.lisp.

Target Slot

part-of-speech.

Reader Method: part-of-speech ((wordnet-index-entry wordnet-index-entry))

automatically generated reader method

Source

representation.lisp.

Target Slot

part-of-speech.

Generic Function: read-data-file-entry (from-where file-offset)

Return a string that represents the synset at OFFSET in the specified WordNet data file

Package

wordnet.

Source

wordnet-database-files.lisp.

Methods
Method: read-data-file-entry (data-file-stream file-offset)
Method: read-data-file-entry ((pathname pathname) file-offset)
Method: read-data-file-entry ((pos symbol) file-offset)
Generic Reader: synset-words (object)
Package

wordnet.

Methods
Reader Method: synset-words ((wordnet-synset-entry wordnet-synset-entry))

automatically generated reader method

Source

representation.lisp.

Target Slot

words.

Generic Reader: wordnet-pointer-from-synset (object)
Package

wordnet.

Methods
Reader Method: wordnet-pointer-from-synset ((wordnet-pointer wordnet-pointer))

automatically generated reader method

Source

representation.lisp.

Target Slot

from-synset.

Generic Reader: wordnet-pointer-from-synset-index (object)
Package

wordnet.

Methods
Reader Method: wordnet-pointer-from-synset-index ((wordnet-pointer wordnet-pointer))

automatically generated reader method

Source

representation.lisp.

Target Slot

from-word-index.

Generic Function: wordnet-pointer-from-word (pointer)
Package

wordnet.

Methods
Method: wordnet-pointer-from-word ((pointer wordnet-pointer))
Source

representation.lisp.

Generic Reader: wordnet-pointer-to-synset (object)
Package

wordnet.

Methods
Reader Method: wordnet-pointer-to-synset ((wordnet-pointer wordnet-pointer))

automatically generated reader method

Source

representation.lisp.

Target Slot

to-synset.

Generic Reader: wordnet-pointer-to-synset-index (object)
Package

wordnet.

Methods
Reader Method: wordnet-pointer-to-synset-index ((wordnet-pointer wordnet-pointer))

automatically generated reader method

Source

representation.lisp.

Target Slot

to-word-index.

Generic Function: wordnet-pointer-to-word (pointer)
Package

wordnet.

Methods
Method: wordnet-pointer-to-word ((pointer wordnet-pointer))
Source

representation.lisp.

Generic Reader: wordnet-pointer-type (object)
Package

wordnet.

Methods
Reader Method: wordnet-pointer-type ((wordnet-pointer wordnet-pointer))

automatically generated reader method

Source

representation.lisp.

Target Slot

type.

Generic Function: wordnet-pointers (synset)
Package

wordnet.

Methods
Method: wordnet-pointers ((synset wordnet-synset-entry))
Source

representation.lisp.


5.1.4 Standalone methods

Method: print-object ((object wordnet-index-entry) stream)
Source

representation.lisp.

Method: print-object ((object wordnet-synset-entry) stream)
Source

representation.lisp.

Method: print-object ((object wordnet-pointer) stream)
Source

representation.lisp.


5.1.5 Classes

Class: wordnet-adjective-entry
Package

wordnet.

Source

representation.lisp.

Direct superclasses

wordnet-synset-entry.

Class: wordnet-adverb-entry
Package

wordnet.

Source

representation.lisp.

Direct superclasses

wordnet-synset-entry.

Class: wordnet-index-entry
Package

wordnet.

Source

representation.lisp.

Direct superclasses

wordnet-object.

Direct methods
Direct slots
Slot: word
Initargs

:word

Readers

index-entry-word.

Writers

This slot is read-only.

Slot: part-of-speech
Initargs

:part-of-speech

Readers

part-of-speech.

Writers

This slot is read-only.

Slot: synset-offsets
Initargs

:synset-offsets

Readers

index-entry-synset-offsets.

Writers

This slot is read-only.

Class: wordnet-noun-entry
Package

wordnet.

Source

representation.lisp.

Direct superclasses

wordnet-synset-entry.

Class: wordnet-pointer
Package

wordnet.

Source

representation.lisp.

Direct superclasses

wordnet-object.

Direct methods
Direct slots
Slot: type
Package

common-lisp.

Initargs

:type

Readers

wordnet-pointer-type.

Writers

This slot is read-only.

Slot: from-synset
Initargs

:from

Readers

wordnet-pointer-from-synset.

Writers

This slot is read-only.

Slot: from-word-index
Initargs

:from-index

Readers

wordnet-pointer-from-synset-index.

Writers

This slot is read-only.

Slot: to-synset
Initargs

:to

Readers

wordnet-pointer-to-synset.

Writers

This slot is read-only.

Slot: to-word-index
Initargs

:to-index

Readers

wordnet-pointer-to-synset-index.

Writers

This slot is read-only.

Class: wordnet-synset-entry
Package

wordnet.

Source

representation.lisp.

Direct superclasses

wordnet-object.

Direct subclasses
Direct methods
Direct slots
Slot: part-of-speech
Initargs

:part-of-speech

Readers

part-of-speech.

Writers

This slot is read-only.

Slot: offset
Initargs

:offset

Readers

synset-offset.

Writers

This slot is read-only.

Slot: words
Initargs

:words

Readers

synset-words.

Writers

This slot is read-only.

Slot: raw-pointers
Initargs

:pointers

Slot: pointers
Slot: gloss
Initargs

:gloss

Readers

synset-gloss.

Writers

This slot is read-only.

Class: wordnet-verb-entry
Package

wordnet.

Source

representation.lisp.

Direct superclasses

wordnet-synset-entry.

Direct slots
Slot: verb-frames
Initargs

:verb-frames


5.2 Internals


5.2.1 Special variables

Special Variable: *wordnet-index-cache*
Package

wordnet.

Source

representation.lisp.

Special Variable: *wordnet-synset-cache*
Package

wordnet.

Source

representation.lisp.

Special Variable: +part-of-speech-table+
Package

wordnet.

Source

parts-of-speech.lisp.

Special Variable: +wordnet-data-files+
Package

wordnet.

Source

wordnet-database-files.lisp.

Special Variable: +wordnet-database-directory+
Package

wordnet.

Source

wordnet-database-files.lisp.

Special Variable: +wordnet-exception-files+
Package

wordnet.

Source

wordnet-database-files.lisp.

Special Variable: +wordnet-gloss-character+
Package

wordnet.

Source

parse-wordnet-data.lisp.

Special Variable: +wordnet-index-files+
Package

wordnet.

Source

wordnet-database-files.lisp.

Special Variable: +wordnet-pointer-symbols+
Package

wordnet.

Source

parse-wordnet-data.lisp.

Special Variable: +wordnet-pointer-types+
Package

wordnet.

Source

parse-wordnet-data.lisp.


5.2.2 Macros

Macro: define-part-of-speech (canonical-name (file-type &rest wn-db-tokens) &rest abbreviations)
Package

wordnet.

Source

parts-of-speech.lisp.

Macro: do-synset-pointers ((pointer-var synset &optional pointer-types) &body body)
Package

wordnet.

Source

representation.lisp.

Macro: with-wordnet-file-stream ((stream-var file-identifier) &body body)
Package

wordnet.

Source

wordnet-database-files.lisp.


5.2.3 Ordinary functions

Function: %%wordnet-describe (word-or-phrase part-of-speech)
Package

wordnet.

Source

examples.lisp.

Function: %wordnet-describe (word-or-phrase part-of-speech)
Package

wordnet.

Source

examples.lisp.

Function: decode-pointer-symbol-type (pointer-symbol part-of-speech)
Package

wordnet.

Source

parse-wordnet-data.lisp.

Function: define-wordnet-pointer-symbol (symbol part-of-speech definition)
Package

wordnet.

Source

parse-wordnet-data.lisp.

Function: define-wordnet-pointer-type (name transitive-p direction &optional reverse-type)
Package

wordnet.

Source

parse-wordnet-data.lisp.

Function: exception-file-for-part-of-speech (part-of-speech)
Package

wordnet.

Source

wordnet-database-files.lisp.

Function: file-for-part-of-speech (part-of-speech file-type)
Package

wordnet.

Source

wordnet-database-files.lisp.

Function: find-index-entry-raw (index-file-stream file-offset)
Package

wordnet.

Source

wordnet-database-files.lisp.

Function: list-index-file (file from to)
Package

wordnet.

Source

wordnet-database-files.lisp.

Function: morphology-exception-lookup (word part-of-speech)
Package

wordnet.

Source

representation.lisp.

Function: part-of-speech-file-type (part-of-speech)
Package

wordnet.

Source

parts-of-speech.lisp.

Function: part-of-speech-for-wordnet-db-token (token)
Package

wordnet.

Source

parts-of-speech.lisp.

Function: skip-wordnet-preamble (stream)
Package

wordnet.

Source

wordnet-database-files.lisp.

Function: wordnet-relation-p (thing)
Package

wordnet.

Source

parse-wordnet-data.lisp.


5.2.4 Generic functions

Generic Reader: index-entry-synset-offsets (object)
Package

wordnet.

Methods
Reader Method: index-entry-synset-offsets ((wordnet-index-entry wordnet-index-entry))

automatically generated reader method

Source

representation.lisp.

Target Slot

synset-offsets.

Generic Function: reify-pointers (synset)
Package

wordnet.

Methods
Method: reify-pointers ((synset wordnet-synset-entry))
Source

representation.lisp.

Generic Function: relation-direction (pointer-type)
Package

wordnet.

Methods
Method: relation-direction ((pointer wordnet-pointer))
Source

representation.lisp.

Method: relation-direction ((pointer-type symbol))
Source

parse-wordnet-data.lisp.

Generic Reader: synset-gloss (object)
Package

wordnet.

Methods
Reader Method: synset-gloss ((wordnet-synset-entry wordnet-synset-entry))

automatically generated reader method

Source

representation.lisp.

Target Slot

gloss.

Generic Reader: synset-offset (object)
Package

wordnet.

Methods
Reader Method: synset-offset ((wordnet-synset-entry wordnet-synset-entry))

automatically generated reader method

Source

representation.lisp.

Target Slot

offset.

Generic Function: transitive-relation-p (pointer-type)
Package

wordnet.

Methods
Method: transitive-relation-p ((pointer wordnet-pointer))
Source

representation.lisp.

Method: transitive-relation-p ((pointer-type symbol))
Source

parse-wordnet-data.lisp.


5.2.5 Classes

Class: wordnet-object
Package

wordnet.

Source

representation.lisp.

Direct subclasses

Appendix A Indexes


A.1 Concepts


A.2 Functions

Jump to:   %  
C   D   E   F   G   I   L   M   P   R   S   T   W  
Index Entry  Section

%
%%wordnet-describe: Private ordinary functions
%wordnet-describe: Private ordinary functions

C
cached-data-lookup: Public ordinary functions
cached-index-lookup: Public ordinary functions
canonicalize-part-of-speech: Public ordinary functions
commonality: Public ordinary functions

D
decode-pointer-symbol-type: Private ordinary functions
define-part-of-speech: Private macros
define-wordnet-pointer-symbol: Private ordinary functions
define-wordnet-pointer-type: Private ordinary functions
do-parts-of-speech: Public macros
do-synset-pointers: Private macros

E
exception-entry-for-word: Public generic functions
exception-entry-for-word: Public generic functions
exception-file-for-part-of-speech: Private ordinary functions

F
file-for-part-of-speech: Private ordinary functions
find-index-entry-raw: Private ordinary functions
find-synset-with-sense: Public ordinary functions
Function, %%wordnet-describe: Private ordinary functions
Function, %wordnet-describe: Private ordinary functions
Function, cached-data-lookup: Public ordinary functions
Function, cached-index-lookup: Public ordinary functions
Function, canonicalize-part-of-speech: Public ordinary functions
Function, commonality: Public ordinary functions
Function, decode-pointer-symbol-type: Private ordinary functions
Function, define-wordnet-pointer-symbol: Private ordinary functions
Function, define-wordnet-pointer-type: Private ordinary functions
Function, exception-file-for-part-of-speech: Private ordinary functions
Function, file-for-part-of-speech: Private ordinary functions
Function, find-index-entry-raw: Private ordinary functions
Function, find-synset-with-sense: Public ordinary functions
Function, get-antonyms: Public ordinary functions
Function, get-synonyms: Public ordinary functions
Function, index-entry-synsets: Public ordinary functions
Function, list-index-file: Private ordinary functions
Function, morphology-exception-lookup: Private ordinary functions
Function, parse-data-file-entry: Public ordinary functions
Function, parse-exception-file-entry: Public ordinary functions
Function, parse-index-file-entry: Public ordinary functions
Function, part-of-speech-file-type: Private ordinary functions
Function, part-of-speech-for-wordnet-db-token: Private ordinary functions
Function, parts-of-speech: Public ordinary functions
Function, pretty-print-synset: Public ordinary functions
Function, relation-transitive-closure: Public ordinary functions
Function, skip-wordnet-preamble: Private ordinary functions
Function, synsets-containing-word/s: Public ordinary functions
Function, wordnet-describe: Public ordinary functions
Function, wordnet-describe*: Public ordinary functions
Function, wordnet-relation-p: Private ordinary functions

G
Generic Function, exception-entry-for-word: Public generic functions
Generic Function, index-entry-for-word: Public generic functions
Generic Function, index-entry-synset-offsets: Private generic functions
Generic Function, index-entry-word: Public generic functions
Generic Function, part-of-speech: Public generic functions
Generic Function, read-data-file-entry: Public generic functions
Generic Function, reify-pointers: Private generic functions
Generic Function, relation-direction: Private generic functions
Generic Function, synset-gloss: Private generic functions
Generic Function, synset-offset: Private generic functions
Generic Function, synset-words: Public generic functions
Generic Function, transitive-relation-p: Private generic functions
Generic Function, wordnet-pointer-from-synset: Public generic functions
Generic Function, wordnet-pointer-from-synset-index: Public generic functions
Generic Function, wordnet-pointer-from-word: Public generic functions
Generic Function, wordnet-pointer-to-synset: Public generic functions
Generic Function, wordnet-pointer-to-synset-index: Public generic functions
Generic Function, wordnet-pointer-to-word: Public generic functions
Generic Function, wordnet-pointer-type: Public generic functions
Generic Function, wordnet-pointers: Public generic functions
get-antonyms: Public ordinary functions
get-synonyms: Public ordinary functions

I
index-entry-for-word: Public generic functions
index-entry-for-word: Public generic functions
index-entry-for-word: Public generic functions
index-entry-for-word: Public generic functions
index-entry-for-word: Public generic functions
index-entry-synset-offsets: Private generic functions
index-entry-synset-offsets: Private generic functions
index-entry-synsets: Public ordinary functions
index-entry-word: Public generic functions
index-entry-word: Public generic functions

L
list-index-file: Private ordinary functions

M
Macro, define-part-of-speech: Private macros
Macro, do-parts-of-speech: Public macros
Macro, do-synset-pointers: Private macros
Macro, with-wordnet-file-stream: Private macros
Method, exception-entry-for-word: Public generic functions
Method, index-entry-for-word: Public generic functions
Method, index-entry-for-word: Public generic functions
Method, index-entry-for-word: Public generic functions
Method, index-entry-for-word: Public generic functions
Method, index-entry-synset-offsets: Private generic functions
Method, index-entry-word: Public generic functions
Method, part-of-speech: Public generic functions
Method, part-of-speech: Public generic functions
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, read-data-file-entry: Public generic functions
Method, read-data-file-entry: Public generic functions
Method, read-data-file-entry: Public generic functions
Method, reify-pointers: Private generic functions
Method, relation-direction: Private generic functions
Method, relation-direction: Private generic functions
Method, synset-gloss: Private generic functions
Method, synset-offset: Private generic functions
Method, synset-words: Public generic functions
Method, transitive-relation-p: Private generic functions
Method, transitive-relation-p: Private generic functions
Method, wordnet-pointer-from-synset: Public generic functions
Method, wordnet-pointer-from-synset-index: Public generic functions
Method, wordnet-pointer-from-word: Public generic functions
Method, wordnet-pointer-to-synset: Public generic functions
Method, wordnet-pointer-to-synset-index: Public generic functions
Method, wordnet-pointer-to-word: Public generic functions
Method, wordnet-pointer-type: Public generic functions
Method, wordnet-pointers: Public generic functions
morphology-exception-lookup: Private ordinary functions

P
parse-data-file-entry: Public ordinary functions
parse-exception-file-entry: Public ordinary functions
parse-index-file-entry: Public ordinary functions
part-of-speech: Public generic functions
part-of-speech: Public generic functions
part-of-speech: Public generic functions
part-of-speech-file-type: Private ordinary functions
part-of-speech-for-wordnet-db-token: Private ordinary functions
parts-of-speech: Public ordinary functions
pretty-print-synset: Public ordinary functions
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods

R
read-data-file-entry: Public generic functions
read-data-file-entry: Public generic functions
read-data-file-entry: Public generic functions
read-data-file-entry: Public generic functions
reify-pointers: Private generic functions
reify-pointers: Private generic functions
relation-direction: Private generic functions
relation-direction: Private generic functions
relation-direction: Private generic functions
relation-transitive-closure: Public ordinary functions

S
skip-wordnet-preamble: Private ordinary functions
synset-gloss: Private generic functions
synset-gloss: Private generic functions
synset-offset: Private generic functions
synset-offset: Private generic functions
synset-words: Public generic functions
synset-words: Public generic functions
synsets-containing-word/s: Public ordinary functions

T
transitive-relation-p: Private generic functions
transitive-relation-p: Private generic functions
transitive-relation-p: Private generic functions

W
with-wordnet-file-stream: Private macros
wordnet-describe: Public ordinary functions
wordnet-describe*: Public ordinary functions
wordnet-pointer-from-synset: Public generic functions
wordnet-pointer-from-synset: Public generic functions
wordnet-pointer-from-synset-index: Public generic functions
wordnet-pointer-from-synset-index: Public generic functions
wordnet-pointer-from-word: Public generic functions
wordnet-pointer-from-word: Public generic functions
wordnet-pointer-to-synset: Public generic functions
wordnet-pointer-to-synset: Public generic functions
wordnet-pointer-to-synset-index: Public generic functions
wordnet-pointer-to-synset-index: Public generic functions
wordnet-pointer-to-word: Public generic functions
wordnet-pointer-to-word: Public generic functions
wordnet-pointer-type: Public generic functions
wordnet-pointer-type: Public generic functions
wordnet-pointers: Public generic functions
wordnet-pointers: Public generic functions
wordnet-relation-p: Private ordinary functions


A.3 Variables

Jump to:   *   +  
F   G   O   P   R   S   T   V   W  
Index Entry  Section

*
*wordnet-index-cache*: Private special variables
*wordnet-synset-cache*: Private special variables

+
+part-of-speech-table+: Private special variables
+wordnet-data-files+: Private special variables
+wordnet-database-directory+: Private special variables
+wordnet-exception-files+: Private special variables
+wordnet-gloss-character+: Private special variables
+wordnet-index-files+: Private special variables
+wordnet-pointer-symbols+: Private special variables
+wordnet-pointer-types+: Private special variables

F
from-synset: Public classes
from-word-index: Public classes

G
gloss: Public classes

O
offset: Public classes

P
part-of-speech: Public classes
part-of-speech: Public classes
pointers: Public classes

R
raw-pointers: Public classes

S
Slot, from-synset: Public classes
Slot, from-word-index: Public classes
Slot, gloss: Public classes
Slot, offset: Public classes
Slot, part-of-speech: Public classes
Slot, part-of-speech: Public classes
Slot, pointers: Public classes
Slot, raw-pointers: Public classes
Slot, synset-offsets: Public classes
Slot, to-synset: Public classes
Slot, to-word-index: Public classes
Slot, type: Public classes
Slot, verb-frames: Public classes
Slot, word: Public classes
Slot, words: Public classes
Special Variable, *wordnet-index-cache*: Private special variables
Special Variable, *wordnet-synset-cache*: Private special variables
Special Variable, +part-of-speech-table+: Private special variables
Special Variable, +wordnet-data-files+: Private special variables
Special Variable, +wordnet-database-directory+: Private special variables
Special Variable, +wordnet-exception-files+: Private special variables
Special Variable, +wordnet-gloss-character+: Private special variables
Special Variable, +wordnet-index-files+: Private special variables
Special Variable, +wordnet-pointer-symbols+: Private special variables
Special Variable, +wordnet-pointer-types+: Private special variables
synset-offsets: Public classes

T
to-synset: Public classes
to-word-index: Public classes
type: Public classes

V
verb-frames: Public classes

W
word: Public classes
words: Public classes


A.4 Data types

Jump to:   C   E   F   P   R   S   W  
Index Entry  Section

C
Class, wordnet-adjective-entry: Public classes
Class, wordnet-adverb-entry: Public classes
Class, wordnet-index-entry: Public classes
Class, wordnet-noun-entry: Public classes
Class, wordnet-object: Private classes
Class, wordnet-pointer: Public classes
Class, wordnet-synset-entry: Public classes
Class, wordnet-verb-entry: Public classes

E
examples.lisp: The wordnet/examples․lisp file

F
File, examples.lisp: The wordnet/examples․lisp file
File, packages.lisp: The wordnet/packages․lisp file
File, parse-wordnet-data.lisp: The wordnet/parse-wordnet-data․lisp file
File, parts-of-speech.lisp: The wordnet/parts-of-speech․lisp file
File, relationship-algorithms.lisp: The wordnet/relationship-algorithms․lisp file
File, representation.lisp: The wordnet/representation․lisp file
File, wordnet-database-files.lisp: The wordnet/wordnet-database-files․lisp file
File, wordnet.asd: The wordnet/wordnet․asd file

P
Package, wordnet: The wordnet package
packages.lisp: The wordnet/packages․lisp file
parse-wordnet-data.lisp: The wordnet/parse-wordnet-data․lisp file
parts-of-speech.lisp: The wordnet/parts-of-speech․lisp file

R
relationship-algorithms.lisp: The wordnet/relationship-algorithms․lisp file
representation.lisp: The wordnet/representation․lisp file

S
System, wordnet: The wordnet system

W
wordnet: The wordnet system
wordnet: The wordnet package
wordnet-adjective-entry: Public classes
wordnet-adverb-entry: Public classes
wordnet-database-files.lisp: The wordnet/wordnet-database-files․lisp file
wordnet-index-entry: Public classes
wordnet-noun-entry: Public classes
wordnet-object: Private classes
wordnet-pointer: Public classes
wordnet-synset-entry: Public classes
wordnet-verb-entry: Public classes
wordnet.asd: The wordnet/wordnet․asd file