https://github.com/JuliaLang/julia
Raw File
Tip revision: 236c04b542bde23a36883420d44801699c8adcc1 authored by Fredrik Ekre on 26 October 2017, 21:00:11 UTC
Don't re-wrap HermOrSym annotated matrices in matrix functions
Tip revision: 236c04b
julia_charmap.h
/* Array of {original codepoint, replacement codepoint} normalizations
   to perform on Julia identifiers, to canonicalize characters that
   are both easily confused and easily inputted by accident. */
static const uint32_t charmap[][2] = {
    { 0x025B, 0x03B5 }, // latin small letter open e -> greek small letter epsilon
    { 0x00B5, 0x03BC }, // micro sign -> greek small letter mu
};
back to top