index
:
odin/Odin.git
bill/all_or_none
bill/any-type-switch-if-else
bill/change-license
bill/compiler-optimizations-2025-09
bill/conditional-zero
bill/const-union
bill/dir-organization
bill/disallow-128-bit
bill/fix-current-os-package
bill/fix-data-races-2026-02
bill/force-type-assert
bill/global-variable-distribution
bill/init-fini-changes
bill/integer-concatenation
bill/io-error-changes
bill/must-tail
bill/new-slice-sort
bill/range-init
bill/remove-test-suffix
bill/shared-partial-return-memory
bill/subtype-type-info
bill/typeid-sip-hash
bill/utf16-strings
core-flags
core_os2_revamp
custom-math-sin
fix-4225
llvm-12-support
master
middle-end
mimalloc
mv/libc-errors
new_os
orca-dev
text-template
update-tilde
windows-llvm-11.1.0
windows-llvm-12.0.1
windows-llvm-13.0.0
Odin Programming Language
Odin Lang
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
core
/
math.odin
Commit message (
Expand
)
Author
Age
Files
Lines
*
Parse directories to be packages
gingerBill
2018-05-21
1
-480
/
+0
*
Fix demo for removing default struct values
gingerBill
2018-05-20
1
-1
/
+4
*
Add `log` to math.odin
gingerBill
2018-05-12
1
-0
/
+7
*
Fix copy-and-forget in math.odin
Lipid
2018-05-02
1
-2
/
+2
*
`distinct` keyword for type declarations
gingerBill
2018-02-05
1
-6
/
+6
*
Remove old math constants
gingerBill
2018-01-28
1
-2
/
+0
*
Fix proc groups from import names
gingerBill
2017-12-10
1
-2
/
+2
*
Explicit procedure group; Remove implicit procedure overloading
gingerBill
2017-12-09
1
-3
/
+3
*
Make core library use procedure groupings rather than normal overloading
gingerBill
2017-12-04
1
-50
/
+144
*
&x.(type)
gingerBill
2017-11-30
1
-21
/
+25
*
Change push allocator system; update core libraries
gingerBill
2017-11-09
1
-10
/
+9
*
Fix array of array arithmetic
gingerBill
2017-11-07
1
-22
/
+8
*
#const value procedure parameters; $N for polymorphic array lengths
gingerBill
2017-11-05
1
-38
/
+38
*
Fix fmt printing `uintptr` type
gingerBill
2017-11-04
1
-2
/
+3
*
Attributes; @(link_name="foo")
gingerBill
2017-10-29
1
-23
/
+26
*
#alias type declarations; core library additions; `_global` import name for t...
gingerBill
2017-10-29
1
-2
/
+8
*
`transmute(type)x`; Minor code clean up
Ginger Bill
2017-07-30
1
-6
/
+6
*
Fix math.odin, again
Ginger Bill
2017-07-21
1
-4
/
+4
*
Fix missing semicolons in math.odin
Ginger Bill
2017-07-21
1
-4
/
+4
*
Fix polymorphic element types usage; Empty `union` as opaque type
Ginger Bill
2017-07-20
1
-11
/
+14
*
General specialization for polymorphic parameters
Ginger Bill
2017-07-18
1
-14
/
+14
*
`..` half closed range; `...` open range; `...` variadic syntax
Ginger Bill
2017-07-07
1
-4
/
+4
*
Replace many built-in procedures with user-level procedures
Ginger Bill
2017-07-04
1
-36
/
+27
*
:: style procedure declarations; remove old parsing code
Ginger Bill
2017-06-28
1
-57
/
+57
*
Remove `type` prefix declarations
Ginger Bill
2017-06-28
1
-12
/
+10
*
Disable `var` and `const` declarations
Ginger Bill
2017-06-28
1
-99
/
+90
*
Declaration grouping uses () rather than {}; Fix some problem with compilatio...
Ginger Bill
2017-06-17
1
-14
/
+14
*
Declaration grouping uses braces rather than parentheses
Ginger Bill
2017-06-13
1
-14
/
+14
*
`foreign` blocks for procedures
Ginger Bill
2017-06-12
1
-11
/
+14
*
Update default field value syntax; Use more declaration groupings
Ginger Bill
2017-06-12
1
-58
/
+69
*
Pascal style declaration grouping with ()
Ginger Bill
2017-06-12
1
-25
/
+28
*
Prefix `type` and `let` to replace `immutable`
Ginger Bill
2017-06-12
1
-7
/
+7
*
Prefix `proc` syntax
Ginger Bill
2017-06-12
1
-57
/
+57
*
Remove := with var and :: with const
Ginger Bill
2017-06-12
1
-148
/
+148
*
`bit_field`; Lexical sugar operators ≠ ≤ ≥
Ginger Bill
2017-06-03
1
-6
/
+5
*
Remove Quat from math.odin
Ginger Bill
2017-06-01
1
-1
/
+0
*
Fix interval loop constant bug; Fix ir edge checking; Fix vector arithmetic w...
Ginger Bill
2017-05-22
1
-8
/
+7
*
Remove check on array/slice/dynamic element size
Ginger Bill
2017-05-02
1
-1
/
+1
*
`for in` iteration of Enum Type (request from issue #58)
Ginger Bill
2017-05-01
1
-7
/
+11
*
Improve vector math; Make bprint* return string
Ginger Bill
2017-05-01
1
-9
/
+9
*
Syntax change: cast(T)x => T(x); union_cast(T)x => x.(T); transmute(T)x => tr...
Ginger Bill
2017-04-30
1
-10
/
+10
*
Change interval syntax: .. open range, ..< half-closed range
Ginger Bill
2017-04-20
1
-4
/
+4
*
Merge https://github.com/gingerBill/Odin
Zachary Pierson
2017-04-02
1
-8
/
+8
|
\
|
*
Add Quaternions: quaternion128, quaternion256
Ginger Bill
2017-04-01
1
-2
/
+2
|
*
Complex numbers: complex64 complex128
Ginger Bill
2017-04-01
1
-6
/
+6
*
|
Merge https://github.com/gingerBill/Odin, cleaned up a bit, fixed the object ...
Zachary Pierson
2017-03-30
1
-0
/
+4
|
\
|
|
*
v0.1.3
v0.1.3
Ginger Bill
2017-03-27
1
-0
/
+4
*
|
Merge https://github.com/gingerBill/Odin
Zac Pierson
2017-03-21
1
-31
/
+36
|
\
|
|
*
windows.odin TYPE_NAME to Type_Name; More SSA work and SSA printing for debug...
Ginger Bill
2017-03-12
1
-31
/
+36
*
|
Merge https://github.com/gingerBill/Odin
Zachary Pierson
2017-02-27
1
-4
/
+4
|
\
|
[next]