The Case Insensitive Indexing Function
Calling Sequence
Description
Examples
table(case_insensitive, ...)
The case_insensitive indexing function is used to create a table for which any object can be stored in an array or a table that uses the case_insensitive indexing function, but indexing into the table ignores the case of the letters in any symbols or strings in the indices.
Internally, indices that are strings or symbols are canonicalized to an all lowercase version via StringTools:-LowerCase. Indices that are not strings or symbols are first converted to strings, and then transformed to all lowercase.
T≔table⁡case_insensitive,a=1,b=2
Ta
1
TA
TA+b≔3
TA+B
3
See Also
Array
indexfcn
rtable_indexfcn
Download Help Document