| Allegro CL version 10.0 Unrevised from 9.0 to 10.0. 9.0 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-2019, Franz Inc. Oakland, CA., USA. All rights reserved.
This page was not revised from the 9.0 page.
Created 2015.5.21.
| Allegro CL version 10.0 Unrevised from 9.0 to 10.0. 9.0 version |