mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 07:38:48 +00:00
Move package decimal to be a subpackage of package strconv
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
// Multiple precision decimal numbers
|
// Multiple precision decimal numbers
|
||||||
// NOTE: This is only for floating point printing and nothing else
|
// NOTE: This is only for floating point printing and nothing else
|
||||||
package decimal
|
package strconv_decimal
|
||||||
|
|
||||||
Decimal :: struct {
|
Decimal :: struct {
|
||||||
digits: [384]byte, // big-endian digits
|
digits: [384]byte, // big-endian digits
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
package strconv
|
package strconv
|
||||||
|
|
||||||
using import "core:decimal"
|
using import "decimal"
|
||||||
|
|
||||||
Int_Flag :: enum {
|
Int_Flag :: enum {
|
||||||
Prefix,
|
Prefix,
|
||||||
|
|||||||
Reference in New Issue
Block a user