@[inline]
Equations
Instances For
@[inline]
Equations
Instances For
@[inline]
Equations
Instances For
@[inline]
Equations
Instances For
@[inline]
Equations
Instances For
@[inline]
Equations
Instances For
Decode %HH escapings in the given string. Note that sometimes a consecutive sequence of multiple escapings can represent a utf-8 encoded sequence for a single unicode code point and these will also be decoded correctly.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- System.Uri.UriEscape.rfc3986ReservedChars = [';', ':', '?', '#', '[', ']', '@', '&', '=', '+', '$', ',', '!', ''', '(', ')', '*', '%', ' ']
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- System.Uri.UriEscape.uriEscapeAsciiChar.uInt8ToHex c = let d2 := c / 16; let d1 := c % 16; String.toUpper (hexDigitRepr (UInt8.toNat d2) ++ hexDigitRepr (UInt8.toNat d1))
Instances For
Replaces special characters in the given Uri with %HH Uri escapings.
Equations
- System.Uri.escapeUri uri = String.foldl (fun (s : String) (c : Char) => s ++ System.Uri.UriEscape.uriEscapeAsciiChar c) "" uri
Instances For
Replaces all %HH Uri escapings in the given string with their corresponding unicode code points. Note that sometimes a consecutive sequence of multiple escapings can represent a utf-8 encoded sequence for a single unicode code point and these will also be decoded correctly.
Equations
Instances For
Convert the given FilePath to a "file:///encodedpath" Uri.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Convert the given uri to a FilePath stripping the 'file://' prefix, ignoring the optional host name.
Equations
- One or more equations did not get rendered due to their size.