CL-GODB: Standard Generic Function INDEX-TERM-BY-ID

Generic function INDEX-TERM-BY-ID

Package:

GODB

Syntax:

  index-term-by-id go handle new term id
  => term-object
  

Arguments and Values:

go handle---an object of type go handle

new term---an object of type term

id---an integer

Description:

The generic function index-term-by-id is called when a new term object is created. It adds the new term to a hash table, indexed by its id. It takes three parameters, go handle, to preserve the session, new term, the term to be indexed, and id, which will be the key. It returns the indexed term object.

Known Methods:

  •   index-term-by-id (go-handle-object go-handle) (term-object term) (id integer)
      => term-object
      

Affected By:

None.

Examples:

cl-prompt: (godb:index-term-by-id mygohandle myterm 2145)
#<CL-GODB:TERM 2060B4F4>

Exceptional Situations:

None.

See Also:

INDEX-TERM-BY-ACCESSION
INDEX-TERM-BY-NAME

Notes:

None.


News

News in chronological order, most recent on top.

  • 2005-06-23
    Completed description.