| Allegro CL version 8.2 Unrevised from 8.1 to 8.2. 8.1 version |
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.
(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-2016, Franz Inc. Oakland, CA., USA. All rights reserved.
This page was not revised from the 8.1 page.
Created 2010.1.21.
| Allegro CL version 8.2 Unrevised from 8.1 to 8.2. 8.1 version |