MacroPackage: exclToCDocOverviewCGDocRelNotesFAQIndexPermutedIndex
Allegro CL version 10.1
Unrevised from 10.0 to 10.1.
10.0 version

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-2022, Franz Inc. Lafayette, CA., USA. All rights reserved.
This page was not revised from the 10.0 page.
Created 2019.8.20.

ToCDocOverviewCGDocRelNotesFAQIndexPermutedIndex
Allegro CL version 10.1
Unrevised from 10.0 to 10.1.
10.0 version