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

  1. Outdated egg!
  2. symbol-utils
  3. Documentation
    1. Argument Conventions
    2. symbol-value-utils
      1. Usage
      2. unbound-value
      3. unbound-value?
      4. unbound?
      5. symbol-value
      6. unspecified-value
      7. unspecified-value?
      8. unspecified?
    3. symbol-name-utils
      1. Usage
      2. keyword->symbol
      3. keyword->uninterned-symbol
      4. symbol->keyword
      5. symbol-printname-details
      6. symbol-printname=?
      7. symbol-printname<?
      8. symbol-printname-length
      9. max-symbol-printname-length
    4. symbol-qualified-utils
      1. Usage
      2. make-qualified-symbol
      3. make-qualified-uninterned-symbol
      4. qualified-symbol?
      5. symbol->qualified-string
    5. symbol-lolevel-utils
      1. Usage
      2. interned-symbol?
  4. Usage
  5. Author
  6. Version history
  7. License

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

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

unbound-value?

[syntax] (unbound-value? OBJ) -> boolean

unbound?

[syntax] (unbound? SYM) -> boolean

symbol-value

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

Returns SYM binding or DEF when unbound.

unspecified-value

[procedure] (unspecified-value) -> #<unspecified>

unspecified-value?

[syntax] (unspecified-value? OBJ) -> boolean

unspecified?

[syntax] (unspecified? OBJ) -> boolean

symbol-name-utils

Usage

(require-extension symbol-name-utils)

keyword->symbol

[procedure] (keyword->symbol KEY) -> symbol

keyword->uninterned-symbol

[procedure] (keyword->uninterned-symbol KEY) -> symbol

symbol->keyword

[procedure] (symbol->keyword SYM) -> keyword

symbol-printname-details

[procedure] (symbol-printname-details SYM) -> (string string)

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

symbol-printname=?

[procedure] (symbol-printname=? X Y) -> boolean

X & Y are symbol.

symbol-printname<?

[procedure] (symbol-printname<? X Y) -> boolean

X & Y are symbol.

symbol-printname-length

[procedure] (symbol-printname-length SYM) -> integer

max-symbol-printname-length

[procedure] (max-symbol-printname-length SYMS) -> integer

SYMS is a list of symbol.

symbol-qualified-utils

Usage

(require-extension symbol-qualified-utils)

make-qualified-symbol

[procedure] (make-qualified-symbol PREFIX NAME) -> symbol

PREFIX & NAME are either symbol or string.

make-qualified-uninterned-symbol

[procedure] (make-qualified-uninterned-symbol PREFIX NAME) -> symbol

qualified-symbol?

[procedure] (qualified-symbol? SYM) -> boolean

symbol->qualified-string

[procedure] (symbol->qualified-string SYM) -> string

symbol-lolevel-utils

Usage

(require-extension symbol-lolevel-utils)

interned-symbol?

[procedure] (interned-symbol? SYM) -> boolean

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.