(index ("ldif-dn" 0) ("ldif-attributes" 132) ("make-ldif" 280) ("read" 429) ("write" 622) ("rfc4514-read" 770) ("rfc4514-write" 883) ("write-ldap-filter" 994) ("ldap-filter-string" 1188))
(def (sig (procedure "(ldif-dn LDIF) -> *" (id ldif-dn))) (p "Returns the distinguished name (as S-expression) from LDIF object."))
(def (sig (procedure "(ldif-attributes LDIF) -> *" (id ldif-attributes))) (p "Returns the attributes (as list of S-expression) from LDIF object."))
(def (sig (procedure "(make-ldif DN ATTRIBUTES) -> LDIF" (id make-ldif))) (p "Create an ldif record from " (tt "DN") " and " (tt "ATTRIBUTES") "."))
(def (sig (procedure "(read [PORT])" (id read))) (p "Reads a LDIF record from " (tt "PORT") " (default: " (tt "current-input-port") ").  Returns the ldif record or an " (tt "eof-object") "."))
(def (sig (procedure "(write LDIF [PORT])" (id write))) (p "Writes the LDIF object to " (tt "PORT") " (default: " (tt "current-output-port") ")."))
(def (sig (procedure "(rfc4514-read STRING) -> SEXPR" (id rfc4514-read))) (p "Parse " (tt "STRING") " as RDN."))
(def (sig (procedure "(rfc4514-write SEXPR [PORT])" (id rfc4514-write))) (p "Write " (tt "SEXPR") " as RDN."))
(def (sig (procedure "(write-ldap-filter OBJ [PORT])" (id write-ldap-filter))) (p "Write " (tt "OBJ") " as LDAP filter (RFC 2254) to " (tt "PORT") " (default " (tt "current-output-port") ")."))
(def (sig (procedure "(ldap-filter-string OBJ) -> STRING" (id ldap-filter-string))) (p "Returns a string with the output of " (tt "write-ldap-filter") " applied to " (tt "OBJ") "."))
