MacroPackage: exclToCDocOverviewCGDocRelNotesFAQIndexPermutedIndex
Allegro CL version 8.0
This page is new in 8.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-2008, Franz Inc. Oakland, CA., USA. All rights reserved.
Documentation for Allegro CL version 8.0. This page is new in the 8.0 release.
Created 2007.4.30.

ToCDocOverviewCGDocRelNotesFAQIndexPermutedIndex
Allegro CL version 8.0
This page is new in 8.0.