chickadee » symbol-utils

Outdated egg!

This is an egg for CHICKEN 4, the unsupported old release. You're almost certainly looking for the CHICKEN 5 version of this egg, if it exists.

If it does not exist, there may be equivalent functionality provided by another egg; have a look at the egg index. Otherwise, please consider porting this egg to the current version of CHICKEN.

symbol-utils

Documentation

Argument Conventions

SYM is a symbol

OBJ is an arbitrary Scheme object

A printname is the string form of a symbol.

symbol-value-utils

Usage

(require-extension symbol-value-utils)

unbound-value

(unbound-value) -> #<unbound>syntax

unbound-value?

(unbound-value? OBJ) -> booleansyntax

unbound?

(unbound? SYM) -> booleansyntax

symbol-value

(symbol-value SYM [DEF]) -> *syntax

Returns SYM binding or DEF when unbound.

unspecified-value

unspecified-valueprocedure

unspecified-value?

(unspecified-value? OBJ) -> booleansyntax

unspecified?

(unspecified? OBJ) -> booleansyntax

symbol-name-utils

Usage

(require-extension symbol-name-utils)

keyword->symbol

keyword->symbol KEYprocedure

keyword->uninterned-symbol

keyword->uninterned-symbol KEYprocedure

symbol->keyword

symbol->keyword SYMprocedure

symbol-printname-details

symbol-printname-details SYMprocedure

Returns 2 values: the string, and any qualification prefix string, for SYM

symbol-printname=?

symbol-printname=? X Yprocedure

X & Y are symbol.

symbol-printname<?

symbol-printname<? X Yprocedure

X & Y are symbol.

symbol-printname-length

symbol-printname-length SYMprocedure

max-symbol-printname-length

max-symbol-printname-length SYMSprocedure

SYMS is a list of symbol.

symbol-qualified-utils

Usage

(require-extension symbol-qualified-utils)

make-qualified-symbol

make-qualified-symbol PREFIX NAMEprocedure

PREFIX & NAME are either symbol or string.

make-qualified-uninterned-symbol

make-qualified-uninterned-symbol PREFIX NAMEprocedure

qualified-symbol?

qualified-symbol? SYMprocedure

symbol->qualified-string

symbol->qualified-string SYMprocedure

symbol-lolevel-utils

Usage

(require-extension symbol-lolevel-utils)

interned-symbol?

interned-symbol? SYMprocedure

Usage

(require-extension symbol-utils)

Author

Kon Lovett

Version history

1.2.0
Add keyword->uninterned-symbol & keyword->symbol.
1.1.0
Add symbol-name-utils, symbol-value-utils, symbol-qualified-utils, symbol-lolevel-utils modules.
1.0.3
Add types & better type checking.
1.0.2
Fix for ticket #630.
1.0.1
1.0.0
Hello.

License

Copyright (C) 2010 Kon Lovett. All rights reserved.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the Software), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED ASIS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Contents »