MacroPackage: exclToCDocOverviewCGDocRelNotesIndexPermutedIndex
Allegro CL version 7.0
Unrevised from 6.2 to 7.0.

with-native-strings*

Arguments: ((string-var1 string-exp1 &key (start 0) end native-length-var (external-format :default)) (string-var1 string-exp1 &key (start 0) end native-length-var (external-format :default)) ... (string-varN string-expN &key (start 0) end native-length-var (external-format :default))) &body body

This macro expands into a series of nested calls to with-native-string.

Example

(with-native-strings ((a "foo") (b "bar")) (baz a b))

expands to

(with-native-string (a "foo")
 (with-native-string (b "bar")
  (baz a b)))

See also iacl.htm for general information on international character set support in Allegro CL.


Copyright (c) 1998-2006, Franz Inc. Oakland, CA., USA. All rights reserved.
Documentation for Allegro CL version 7.0. This page was not revised from the 6.2 page.
Created 2004.8.21.

ToCDocOverviewCGDocRelNotesIndexPermutedIndex
Allegro CL version 7.0
Unrevised from 6.2 to 7.0.