[Gambas-user] BoxedString
Fabien Bodard
gambas.fr at gmail.com
Thu May 9 09:19:54 CEST 2019
Why all boxed string functions are disabled ??
GB_DESC BoxedStringDesc[] =
{
GB_DECLARE_STATIC("_BoxedString"),
GB_STATIC_PROPERTY_READ("Len", "i", BoxedString_Len),
GB_STATIC_FAST_METHOD("_get", "s", BoxedString_get,
"(Start)i[(Length)i]"),
//GB_STATIC_FAST_METHOD("_get", "s", _String_get,
"(Start)i[(Length)i]"),
/*GB_STATIC_FAST_METHOD("Mid", "s", _String_Mid,
"(String)s(Start)i[(Length)i]"),
GB_STATIC_FAST_METHOD("Mid$", "s", _String_Mid,
"(String)s(Start)i[(Length)i]"),
GB_STATIC_FAST_METHOD("Left", "s", _String_Left,
"(String)s[(Length)i]"),
GB_STATIC_FAST_METHOD("Left$", "s", _String_Left,
"(String)s[(Length)i]"),
GB_STATIC_FAST_METHOD("Right", "s", _String_Right,
"(String)s[(Length)i]"),
GB_STATIC_FAST_METHOD("Right$", "s", _String_Right,
"(String)s[(Length)i]"),
GB_STATIC_METHOD("Upper", "s", String_Upper, "(String)s"),
GB_STATIC_METHOD("Upper$", "s", String_Upper, "(String)s"),
GB_STATIC_METHOD("UCase", "s", String_Upper, "(String)s"),
GB_STATIC_METHOD("UCase$", "s", String_Upper, "(String)s"),
GB_STATIC_METHOD("UCaseFirst", "s", String_UCaseFirst, "(String)s"),
GB_STATIC_METHOD("UCaseFirst$", "s", String_UCaseFirst, "(String)s"),
GB_STATIC_METHOD("Lower", "s", String_Lower, "(String)s"),
GB_STATIC_METHOD("Lower$", "s", String_Lower, "(String)s"),
GB_STATIC_METHOD("LCase", "s", String_Lower, "(String)s"),
GB_STATIC_METHOD("LCase$", "s", String_Lower, "(String)s"),
GB_STATIC_METHOD("InStr", "i", String_Instr,
"(String)s(Pattern)s[(From)i(Mode)i]"),
GB_STATIC_METHOD("RInStr", "i", String_RInstr,
"(String)s(Pattern)s[(From)i(Mode)i]"),
GB_STATIC_METHOD("Comp", "i", String_Comp,
"(String)s(String2)s[(Mode)i]"),
GB_STATIC_METHOD("Byte", "i", String_Pos, "(String)s(Index)i"),
GB_STATIC_METHOD("Pos", "i", String_Pos, "(String)s(Index)i"),
GB_STATIC_METHOD("Index", "i", String_Index, "(String)s(Byte)i"),
GB_STATIC_METHOD("Chr", "s", String_Chr, "(Unicode)i"),
GB_STATIC_METHOD("Chr$", "s", String_Chr, "(Unicode)i"),
GB_STATIC_METHOD("Code", "i", String_Code, "(String)s[(Index)i]"),
GB_STATIC_METHOD("IsValid", "b", String_IsValid, "(String)s"),*/
GB_END_DECLARE
};
--
Fabien Bodard
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.gambas-basic.org/pipermail/user/attachments/20190509/5a6303bd/attachment-0001.html>
More information about the User
mailing list