https://github.com/JuliaLang/julia
Raw File
Tip revision: e2022b9f0f497abe6dc8ffe6e0163b8e09073c11 authored by Jeff Bezanson on 09 May 2018, 01:16:17 UTC
some experimental compiler performance improvements (WIP)
Tip revision: e2022b9
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