mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 07:38:48 +00:00
Link doc lines to source specifications.
This commit is contained in:
@@ -1,7 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
`Base32` encoding and decoding, as specified in `RFC 4648`.
|
`Base32` encoding and decoding, as specified in [[ RFC 4648; https://www.rfc-editor.org/rfc/rfc4648.html ]].
|
||||||
|
|
||||||
[[ RFC 4648; https://www.rfc-editor.org/rfc/rfc4648.html ]]
|
|
||||||
|
|
||||||
A secondary param can be used to supply a custom alphabet to `encode` and a matching decoding table to `decode`.
|
A secondary param can be used to supply a custom alphabet to `encode` and a matching decoding table to `decode`.
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Encodes and decodes types from/into `RCF 8949` compatible `CBOR` binary.
|
Encodes and decodes types from/into [[ RCF 8949; https://www.rfc-editor.org/rfc/rfc8949.html ]] compatible `CBOR` binary.
|
||||||
|
|
||||||
Also provided are conversion to and from JSON and the CBOR diagnostic format.
|
Also provided are conversion to and from JSON and the CBOR diagnostic format.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Reader and writer for comma-separated values (`CSV`) files, per `RFC 4180`.
|
Reader and writer for comma-separated values (`CSV`) files, per [[ RFC 4180 ; https://tools.ietf.org/html/rfc4180.html ]].
|
||||||
This package supports the format described in [[ RFC 4180; https://tools.ietf.org/html/rfc4180.html ]]
|
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
package main
|
package main
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Encoding and decoding JSON in strict `JSON`, `JSON5` and `BitSquid` variants.
|
Encoding and decoding JSON in strict `JSON`, [[ JSON5 ; https://json5.org/ ]] and [[ BitSquid ; https://bitsquid.blogspot.com/2009/10/simplified-json-notation.html ]] variants.
|
||||||
|
|
||||||
Using one of these `Specification`s.
|
Using one of these `Specification`s.
|
||||||
JSON
|
JSON
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Universally Unique Identifiers (`UUID`) according to `RFC 4122`, with additions from `RFC 9562`.
|
Universally Unique Identifiers (`UUID`) according to [[ RFC 4122 ; https://tools.ietf.org/html/rfc4122.html ]], with additions from [[ RFC 9562 ; https://tools.ietf.org/html/rfc9562.html ]].
|
||||||
|
|
||||||
The UUIDs are textually represented and read in the following string format:
|
The UUIDs are textually represented and read in the following string format:
|
||||||
`00000000-0000-v000-V000-000000000000`
|
`00000000-0000-v000-V000-000000000000`
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
`OpenSimplex2` noise algorithm.
|
[[ OpenSimplex2 ; https://github.com/KdotJPG/OpenSimplex2 ]] noise algorithm.
|
||||||
|
|
||||||
Ported from [[ https://github.com/KdotJPG/OpenSimplex2 }].
|
Ported from [[ https://github.com/KdotJPG/OpenSimplex2 ]].
|
||||||
Copyright 2022 Yuki2 [[ https://github.com/NoahR02 ]]
|
Copyright 2022 Yuki2 [[ https://github.com/NoahR02 ]]
|
||||||
*/
|
*/
|
||||||
package math_noise
|
package math_noise
|
||||||
|
|||||||
Reference in New Issue
Block a user