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.

moremacros

  1. Outdated egg!
  2. moremacros
  3. Documentation
    1. moremacros
      1. Usage
      2. str#
      3. type-case
      4. type-case*
      5. whennot
      6. swap-set!
      7. fluid-set!
      8. stiff-set!
      9. set!-op
      10. assure
      11. define-reference-let
      12. warning-guard
      13. checked-guard
      14. define-warning-parameter
      15. define-checked-parameter
    2. hash-let
      1. Usage
      2. hash-let
    3. Numeric Macros
      1. Usage
      2. ++
      3. --
      4. fx++
      5. fx--
      6. fp++
      7. fp--
      8. fl++
      9. fl--
      10. ++!
      11. --!
      12. fx++!
      13. fx--!
      14. fp++!
      15. fp--!
      16. fl++!
      17. fl--!
  4. Requirements
  5. Author
  6. Version history
  7. License

Documentation

Various useful forms.

moremacros

Usage

(require-extension moremacros)

str#

[syntax] (str# STRING)

Allows substitution of embedded Scheme expressions prefixed with # and optionally enclosed in curly brackets. Two consecutive #s are translated to a single #.

Similar to the #<# multi-line string.

type-case

[syntax] (type-case EXPRESSION [(TYPE-CASE BODY ...) ...]))

Expands into a form that selects a TYPE-CASE based on the type of the EXPRESSION.

A TYPE-CASE is:

symbol
the base name of a type predicate
(symbol symbol...)
a list of base names
else
an else clause

The actual name of the predicate is built from the base name and a ? suffix. So a base name number has the predicate number?.

(use moremacros)

(type-case 23
  ((symbol string char) 'symbolic)
  (number               'numeric)
  (else                 'otheric) )
;=> numeric

type-case*

[syntax] (type-case* EXPRESSION [(TYPE-TEST BODY ...) ...]))

Like type-case but binds local variable it to the value of EXPRESSION.

(use moremacros)

(type-case* 23
  ((symbol string char) (list it 'symbolic) )
  (number               (list it 'numeric) )
  (else                 (list it 'otheric) ) )
;=> (23 numeric)

whennot

[syntax] (whennot TEST [BODY ...]))

Synonym for miscmacros#unless.

swap-set!

[syntax] (swap-set! VAR1 VAR2))

Swap settings of VAR1 & VAR2.

Like (exchange! VAR1 VAR2) but lower overhead.

fluid-set!

[syntax] (fluid-set! VAR VAL ...))

Set each variable VAR to the value VAL in parallel.

stiff-set!

[syntax] (stiff-set! VAR VAL ...))

Set each variable VAR to the value VAL in series.

set!-op

[syntax] (set!-op VAR OP ARG...))

Sets VAR to the value of (OP ARG...), where an occurrence of <> in ARG... is replaced with VAR.

When there is no occurrence of <> in ARG... the template (OP <> ARG...) is used.

Similar to the C language family <l-value> <bin-op-assign> <r-value>.

assure

[syntax] (assure EXPRESSION [ERROR-ARGUMENT...]))

When EXPRESSION yields value #f invoke (error ERROR-ARGUMENT...), otherwise return value.

define-reference-let

[syntax] (define-reference-let NAME REFERENCE-FUNCTION)

NAME is a symbol, the name of the generated reference-let macro.

REFERENCE-FUNCTION is a (procedure (* * *) *) with arguments:

The REFERENCE-FUNCTION is to return the value for KEY in the TABLE, otherwise the DEFAULT value.

The generated macro has the signature:

[syntax] (NAME TABLE (VAR | (VAR) | (VAR KEY [DEFAULT]) ...) BODY ...)
TABLE
some data-structure instance that reifies a set of key+value abstraction
KEY
identifier for a possible entry in the TABLE
DEFAULT
in case an entry for the KEY does not exist

Decompose TABLE entries into variable bindings. Should the KEY not be a symbol, or the desired variable name VAR, as 'VAR, is not the key, the (VAR KEY [DEFAULT]) form can be used.

The default for DEFAULT is #f.

The BODY... is evaluated with the specified bindings.

See hash-let for an example of use.

warning-guard

[syntax] (warning-guard GETTER-NAME TYPENAME [BODY...])

Constructs a variable or parameter guard procedure that generates a warning and returns the current value when the type predicate fails, otherwise the submitted value is returned.

TYPENAME is an identifier and TYPENAME? is a (procedure (*) boolean).

GETTER-NAME is an identifier and the name of a procedure _ *.

BODY is zero or more expressions that are performed after a successful typecheck with obj bound to the new parameter value. Note that since the guard is invoked by a variable or parameter during initialization, so will be the body code.

(use variable-item)

(warning-guard some-var integer)

checked-guard

[syntax] (checked-guard GETTER-NAME TYPENAME [BODY...])

Constructs a variable or parameter guard procedure that uses a type check procedure to verify the submitted value is returned.

TYPENAME is an identifier and check-TYPENAME is a (procedure ((or #f symbol) * #!optional (or symbol string)) *). See check-errors for a suite of these procedures.

GETTER-NAME is an identifier and the name of a procedure _ *.

BODY is zero or more expressions that are performed after a successful typecheck with obj bound to the new parameter value. Note that since the guard is invoked by a variable or parameter during initialization, so will be the body code.

(use variable-item type-checks)

(checked-guard some-var integer)

define-warning-parameter

[syntax] (define-warning-parameter NAME INIT TYPENAME [BODY...])

Wrapper around define-parameter and warning-guard that defines the parameter NAME to the parameter.

NAME is an identifier.

INIT is some Scheme object.

TYPENAME is an identifier. The basename of a type predicate; see warning-guard.

BODY... as for warning-guard.

(use parameter-item)

(define-warning-variable scale * procedure)
(scale 23) ;=> Warning: (foo) "bad argument type - not a procedure" 23

define-checked-parameter

[syntax] (define-checked-parameter NAME INIT TYPENAME [BODY...])

Wrapper around define-parameter and checked-guard that defines the variable NAME to the parameter.

NAME is an identifier.

INIT is some Scheme object.

TYPENAME is an identifier. The basename of a type predicate; see checked-guard.

BODY... as for checked-guard.

(use parameter-item)

(define-checked-parameter scale * procedure)
(scale 23) ;=> Error: (foo) "bad argument type - not a procedure" 23

hash-let

Usage

(require-extension hash-let)

hash-let

[syntax] (hash-let HASH-TABLE (VAR | (VAR) | (VAR KEY [DEFAULT]) ...) BODY ...)

Decompose HASH-TABLE entries into variable bindings. Should the KEY not be a symbol, or the desired variable name VAR is not the key, the (VAR KEY [DEFAULT]) form can be used.

The default value for a missing hash-table entry is #f but can be specified with the (VAR KEY DEFAULT) form.

The BODY... is evaluated with the specified bindings.

(use hash-let srfi-69)

(define tbl (make-hash-table))

(hash-table-set! tbl 'abc "commercial network")
(hash-table-set! tbl "abc" "commercial network")
(hash-table-set! tbl 'cbs "commercial network")
(hash-table-set! tbl "cbs" "commercial network")

(hash-let tbl ((abc)
               (cbs "cbs")
               (pbs (string-append "p" "bs") #t)
               tbs)
  (print 'abc " is a " abc) (print "cbs" " is a " cbs)
  (print (string-append "p" "bs") " is a " pbs)
  (print 'tbs " is a " tbs) )

This prints the following:

abc is a commercial network
cbs is a commercial network
pbs is a #t
tbs is a #f

Numeric Macros

Usage

(require-extension numeric-macros)

++

[syntax] (++ VAL)

Read-only increment.

When VAL is a numeric literal the strongest operation available is used in the generated expression, based on the type of the literal.

--

[syntax] (-- VAL)

Read-only decrement.

When VAL is a numeric literal the strongest operation available is used in the generated expression, based on the type of the literal.

fx++

[syntax] (fx++ VAL)

Read-only fixnum increment.

fx--

[syntax] (fx-- VAL)

Read-only fixnum decrement.

fp++

[syntax] (fp++ VAL)

Read-only flonum increment.

fp--

[syntax] (fp-- VAL)

Read-only flonum decrement.

fl++

[syntax] (fl++ VAL)

Read-only flonum increment.

R6RS nomenclature.

fl--

[syntax] (fl-- VAL)

Read-only flonum decrement.

R6RS nomenclature.

++!

[syntax] (++! VAR)

Mutable increment.

--!

[syntax] (--! VAR)

Mutable decrement.

fx++!

[syntax] (fx++! VAR)

Mutable fixnum increment.

fx--!

[syntax] (fx--! VAR)

Mutable fixnum decrement.

fp++!

[syntax] (fp++! VAR)

Mutable flonum increment.

fp--!

[syntax] (fp--! VAR)

Mutable flonum decrement.

fl++!

[syntax] (fl++! VAR)

Mutable flonum increment.

R6RS nomenclature.

fl--!

[syntax] (fl--! VAR)

Mutable flonum decrement.

R6RS nomenclature.

Requirements

check-errors

setup-helper

Author

Kon Lovett

Version history

1.5.1 ; Update setup-helper version (minimum 1.4.1 but using latest).
1.5.0 ; Add define-reference-let & set!-op.
1.4.1
Fix str#.
1.4.0
Added warning-guard, checked-guard, define-warning-parameter, & define-checked-parameter.
1.3.0
Added make-reference-let and hash-let, w/ new syntax.
1.2.2
Added set#. Removed make-reference-let and hash-let.
1.2.1
Moved variable-item to own extension.
1.2.0
Aligned make-variable better with make-parameter.
1.1.1
1.1.0
Added make-reference-let. Split make-variable & define-variable into own module variable-item.
1.0.0
Hello

License

Copyright (C) 2010-2018 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.