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
/
_preload.odin
Commit message (
Expand
)
Author
Age
Files
Lines
*
Syntax change: cast(T)x => T(x); union_cast(T)x => x.(T); transmute(T)x => tr...
Ginger Bill
2017-04-30
1
-32
/
+32
*
Fix issue #51; begin work on `atomic` types
Ginger Bill
2017-04-28
1
-0
/
+1
*
Swap memory layout of `any`
Ginger Bill
2017-04-23
1
-2
/
+2
*
Fix constant bounds checking for slicing
Ginger Bill
2017-04-22
1
-0
/
+1
*
Making slicing a little more robust
Ginger Bill
2017-04-21
1
-3
/
+1
*
Change interval syntax: .. open range, ..< half-closed range
Ginger Bill
2017-04-20
1
-5
/
+5
*
Fix error printing for basic directives
Ginger Bill
2017-04-17
1
-0
/
+1
*
Fix: map key not getting transferred on rehash
Ginger Bill
2017-04-11
1
-4
/
+3
*
Fix map bug which removed N values from the beginning
Ginger Bill
2017-04-11
1
-13
/
+29
*
Remove debug text
Ginger Bill
2017-04-11
1
-2
/
+1
*
Fix `map` assignment bug due to growth
Ginger Bill
2017-04-11
1
-6
/
+11
*
Basic Linux Build!
Ginger Bill
2017-04-09
1
-4
/
+5
*
Move to `Raw_*` types to raw.odin; Add size and align members to Type_Info
Ginger Bill
2017-04-07
1
-43
/
+18
*
Fix ir bugs: global variable names, untyped to any assignment
Ginger Bill
2017-04-06
1
-3
/
+3
*
len, cap, make; remove .count, .capacity, new_slice
Ginger Bill
2017-04-02
1
-51
/
+66
*
Add Quaternions: quaternion128, quaternion256
Ginger Bill
2017-04-01
1
-13
/
+57
*
Complex numbers: complex64 complex128
Ginger Bill
2017-04-01
1
-0
/
+1
*
Begin work on the custom backend
Ginger Bill
2017-03-05
1
-3
/
+34
*
fmt.odin uses ^[]byte rather than custom Buffer type
Ginger Bill
2017-02-26
1
-5
/
+1
*
Slices now have a capacity.
Ginger Bill
2017-02-26
1
-6
/
+29
*
Ellipsis is now just `..`; Remove half-closed range operator and treat all of...
Ginger Bill
2017-02-26
1
-3
/
+3
*
++ -- statements; add strconv.odin (and replace some of the fmt procs); Fix ~...
Ginger Bill
2017-02-26
1
-3
/
+3
*
Fix minor bugs in IR for slices
Ginger Bill
2017-02-23
1
-3
/
+3
*
A decent union type with common fields and variants
Ginger Bill
2017-02-21
1
-74
/
+23
*
Begin changing `union` syntax
Ginger Bill
2017-02-19
1
-0
/
+43
*
`delete` for maps
Ginger Bill
2017-02-19
1
-1
/
+1
*
Prevent `cast` on pointer to union types
Ginger Bill
2017-02-14
1
-1
/
+1
*
Optional ok for `union_cast` (similar to map indices)
Ginger Bill
2017-02-14
1
-11
/
+14
*
Record type field `names`
Ginger Bill
2017-02-12
1
-6
/
+3
*
v0.1.0
v0.1.0
Ginger Bill
2017-02-11
1
-1
/
+1
*
Dynamic array syntax [...]Type; make entities private with a prefix of `_`; f...
Ginger Bill
2017-02-11
1
-1
/
+1
*
Only check files that have been truly imported.
Ginger Bill
2017-02-11
1
-2
/
+2
*
Remove need for `type` keyword
Ginger Bill
2017-02-10
1
-6
/
+6
*
Remove Maybe type; Enum `names`
Ginger Bill
2017-02-10
1
-16
/
+19
*
Map type info and fmt printing
Ginger Bill
2017-02-07
1
-26
/
+48
*
`map` string keys and `for` iterator
Ginger Bill
2017-02-06
1
-1
/
+4
*
dynamic `map` insertion and lookup
Ginger Bill
2017-02-06
1
-6
/
+9
*
Nearly implement dynamics map, missing insertion
Ginger Bill
2017-02-06
1
-36
/
+130
*
Begin writing dynamic map procs and fix `using` bug in IR
Ginger Bill
2017-02-05
1
-3
/
+131
*
Add `types.odin`; Begin work on `map`
Ginger Bill
2017-02-05
1
-0
/
+12
*
Custom struct alignment
Ginger Bill
2017-02-05
1
-0
/
+3
*
Change internals of `context`; Disable `immutable`
Ginger Bill
2017-02-01
1
-0
/
+20
*
Change vector memory layout and operations; `for in` vector.
Ginger Bill
2017-01-30
1
-0
/
+4
*
Allow _ in floats
Ginger Bill
2017-01-29
1
-2
/
+2
*
Variadic `append`
Ginger Bill
2017-01-29
1
-6
/
+8
*
Dynamic arrays
Ginger Bill
2017-01-29
1
-44
/
+77
*
Overloaded `free`; 3 dotted ellipsis
v0.0.6a
Ginger Bill
2017-01-28
1
-1
/
+1
*
`in` keyword for `for` and `match type`
Ginger Bill
2017-01-27
1
-1
/
+1
*
Library names - Only link with used foreign libraries
Ginger Bill
2017-01-26
1
-4
/
+4
*
Change casting syntax: `cast(T)x` `transmute(T)x` et al.
Ginger Bill
2017-01-25
1
-17
/
+6
[next]