diff --git a/base/builtin/index.html b/base/builtin/index.html index 93f96a0f11..ef3be88fc4 100644 --- a/base/builtin/index.html +++ b/base/builtin/index.html @@ -286,37 +286,37 @@

Index

  • runtime.clear_dynamic_array
  • runtime.reserve_dynamic_array
  • runtime.non_zero_reserve_dynamic_array
  • -
  • runtime.resize_dynamic_array
  • -
  • runtime.non_zero_resize_dynamic_array
  • -
  • runtime.map_insert
  • -
  • runtime.map_upsert
  • -
  • runtime.map_entry
  • -
  • runtime.card
  • -
  • runtime.assert
  • -
  • runtime.ensure
  • -
  • runtime.panic
  • -
  • runtime.unimplemented
  • -
  • runtime.assert_contextless
  • -
  • runtime.ensure_contextless
  • -
  • runtime.panic_contextless
  • -
  • runtime.unimplemented_contextless
  • runtime.raw_soa_footer_slice
  • +
  • runtime.resize_dynamic_array
  • runtime.raw_soa_footer_dynamic_array
  • runtime.make_soa_aligned
  • runtime.make_soa_slice
  • runtime.make_soa_dynamic_array
  • +
  • runtime.non_zero_resize_dynamic_array
  • runtime.make_soa_dynamic_array_len
  • runtime.make_soa_dynamic_array_len_cap
  • +
  • runtime.map_insert
  • +
  • runtime.map_upsert
  • runtime.resize_soa
  • +
  • runtime.map_entry
  • runtime.non_zero_resize_soa
  • +
  • runtime.card
  • runtime.reserve_soa
  • +
  • runtime.assert
  • +
  • runtime.ensure
  • runtime.non_zero_reserve_soa
  • +
  • runtime.panic
  • runtime.append_soa_elem
  • runtime.non_zero_append_soa_elem
  • +
  • runtime.unimplemented
  • runtime.append_soa_elems
  • runtime.non_zero_append_soa_elems
  • +
  • runtime.assert_contextless
  • runtime.unordered_remove_soa
  • +
  • runtime.ensure_contextless
  • runtime.ordered_remove_soa
  • +
  • runtime.panic_contextless
  • +
  • runtime.unimplemented_contextless
  • @@ -1931,6 +1931,12 @@

    + +
    +
    raw_soa_footer_slice :: proc(array: ^$T/#soa[]$T) -> (footer: ^Raw_SOA_Footer_Slice) {…}
    +
    + +

    resize_dynamic_array ¶

    resize_dynamic_array :: proc(array: ^$T/[dynamic]$T, #any_int length: int, loc := #caller_location) -> Allocator_Error {…}
    @@ -1942,12 +1948,48 @@

    + +
    +
    raw_soa_footer_dynamic_array :: proc(array: ^$T/#soa[dynamic]$T) -> (footer: ^Raw_SOA_Footer_Dynamic_Array) {…}
    +
    +

    +
    +

    make_soa_aligned ¶

    +
    +
    make_soa_aligned :: proc($T: typeid/#soa[]T, #any_int length, #any_int alignment: int, allocator := context.allocator, loc := #caller_location) -> (array: T, err: Allocator_Error) #optional_ok {…}
    +
    +
    +
    +

    make_soa_slice ¶

    +
    +
    make_soa_slice :: proc($T: typeid/#soa[]T, #any_int length: int, allocator := context.allocator, loc := #caller_location) -> (array: T, err: Allocator_Error) #optional_ok {…}
    +
    +
    +
    +

    make_soa_dynamic_array ¶

    +
    +
    make_soa_dynamic_array :: proc($T: typeid/#soa[dynamic]T, allocator := context.allocator, loc := #caller_location) -> (array: T, err: Allocator_Error) #optional_ok {…}
    +
    +
    +

    non_zero_resize_dynamic_array ¶

    non_zero_resize_dynamic_array :: proc(array: ^$T/[dynamic]$T, #any_int length: int, loc := #caller_location) -> Allocator_Error {…}
    +

    make_soa_dynamic_array_len ¶

    +
    +
    make_soa_dynamic_array_len :: proc($T: typeid/#soa[dynamic]T, #any_int length: int, allocator := context.allocator, loc := #caller_location) -> (array: T, err: Allocator_Error) #optional_ok {…}
    +
    +
    +
    +

    make_soa_dynamic_array_len_cap ¶

    +
    +
    make_soa_dynamic_array_len_cap :: proc($T: typeid/#soa[dynamic]T, #any_int length, #any_int capacity: int, allocator := context.allocator, loc := #caller_location) -> (array: T, err: Allocator_Error) #optional_ok {…}
    +
    +
    +

    map_insert ¶

    map_insert :: proc(m: ^$T/map[$T]$T, key: $T, value: $T, loc := #caller_location) -> (ptr: ^$T) {…}
    @@ -1967,6 +2009,12 @@

    map_upsert

    +

    resize_soa ¶

    +
    +
    resize_soa :: proc(array: ^$T/#soa[dynamic]$T, #any_int length: int, loc := #caller_location) -> Allocator_Error {…}
    +
    +
    +

    map_entry ¶

    map_entry :: proc(m: ^$T/map[$T]$T, key: $T, loc := #caller_location) -> (key_ptr: ^$T, value_ptr: ^$T, just_inserted: bool, err: Allocator_Error) {…}
    @@ -1983,12 +2031,24 @@

    map_entry

    +

    non_zero_resize_soa ¶

    +
    +
    non_zero_resize_soa :: proc(array: ^$T/#soa[dynamic]$T, #any_int length: int, loc := #caller_location) -> Allocator_Error {…}
    +
    +
    +

    card ¶

    card :: proc "contextless" (s: $T/bit_set[$T]) -> int {…}
    +

    reserve_soa ¶

    +
    +
    reserve_soa :: proc(array: ^$T/#soa[dynamic]$T, #any_int capacity: int, loc := #caller_location) -> Allocator_Error {…}
    +
    +
    +

    assert ¶

    assert :: proc(condition: bool, message: string = #caller_expression(condition), loc := #caller_location) {…}
    @@ -2007,105 +2067,15 @@

    ensure -

    panic ¶

    -
    -
    panic :: proc(message: string, loc := #caller_location) -> ! {…}
    -
    -

    -
    -

    unimplemented ¶

    -
    -
    unimplemented :: proc(message: string, loc := #caller_location) -> ! {…}
    -
    -
    -
    -

    assert_contextless ¶

    -
    -
    assert_contextless :: proc "contextless" (condition: bool, message: string = #caller_expression(condition), loc := #caller_location) {…}
    -
    -
    -
    -

    ensure_contextless ¶

    -
    -
    ensure_contextless :: proc "contextless" (condition: bool, message: string = #caller_expression(condition), loc := #caller_location) {…}
    -
    -
    -
    -

    panic_contextless ¶

    -
    -
    panic_contextless :: proc "contextless" (message: string, loc := #caller_location) -> ! {…}
    -
    -
    -
    -

    unimplemented_contextless ¶

    -
    -
    unimplemented_contextless :: proc "contextless" (message: string, loc := #caller_location) -> ! {…}
    -
    -
    -
    - -
    -
    raw_soa_footer_slice :: proc(array: ^$T/#soa[]$T) -> (footer: ^Raw_SOA_Footer_Slice) {…}
    -
    -
    -
    - -
    -
    raw_soa_footer_dynamic_array :: proc(array: ^$T/#soa[dynamic]$T) -> (footer: ^Raw_SOA_Footer_Dynamic_Array) {…}
    -
    -
    -
    -

    make_soa_aligned ¶

    -
    -
    make_soa_aligned :: proc($T: typeid/#soa[]T, #any_int length, #any_int alignment: int, allocator := context.allocator, loc := #caller_location) -> (array: T, err: Allocator_Error) #optional_ok {…}
    -
    -
    -
    -

    make_soa_slice ¶

    -
    -
    make_soa_slice :: proc($T: typeid/#soa[]T, #any_int length: int, allocator := context.allocator, loc := #caller_location) -> (array: T, err: Allocator_Error) #optional_ok {…}
    -
    -
    -
    -

    make_soa_dynamic_array ¶

    -
    -
    make_soa_dynamic_array :: proc($T: typeid/#soa[dynamic]T, allocator := context.allocator, loc := #caller_location) -> (array: T, err: Allocator_Error) #optional_ok {…}
    -
    -
    -
    -

    make_soa_dynamic_array_len ¶

    -
    -
    make_soa_dynamic_array_len :: proc($T: typeid/#soa[dynamic]T, #any_int length: int, allocator := context.allocator, loc := #caller_location) -> (array: T, err: Allocator_Error) #optional_ok {…}
    -
    -
    -
    -

    make_soa_dynamic_array_len_cap ¶

    -
    -
    make_soa_dynamic_array_len_cap :: proc($T: typeid/#soa[dynamic]T, #any_int length, #any_int capacity: int, allocator := context.allocator, loc := #caller_location) -> (array: T, err: Allocator_Error) #optional_ok {…}
    -
    -
    -
    -

    resize_soa ¶

    -
    -
    resize_soa :: proc(array: ^$T/#soa[dynamic]$T, #any_int length: int, loc := #caller_location) -> Allocator_Error {…}
    -
    -
    -
    -

    non_zero_resize_soa ¶

    -
    -
    non_zero_resize_soa :: proc(array: ^$T/#soa[dynamic]$T, #any_int length: int, loc := #caller_location) -> Allocator_Error {…}
    -
    -
    -
    -

    reserve_soa ¶

    +

    non_zero_reserve_soa ¶

    -
    reserve_soa :: proc(array: ^$T/#soa[dynamic]$T, #any_int capacity: int, loc := #caller_location) -> Allocator_Error {…}
    +
    non_zero_reserve_soa :: proc(array: ^$T/#soa[dynamic]$T, #any_int capacity: int, loc := #caller_location) -> Allocator_Error {…}
    -

    non_zero_reserve_soa ¶

    +

    panic ¶

    -
    non_zero_reserve_soa :: proc(array: ^$T/#soa[dynamic]$T, #any_int capacity: int, loc := #caller_location) -> Allocator_Error {…}
    +
    panic :: proc(message: string, loc := #caller_location) -> ! {…}
    @@ -2121,6 +2091,12 @@

    +

    unimplemented ¶

    +
    +
    unimplemented :: proc(message: string, loc := #caller_location) -> ! {…}
    +
    +

    +

    append_soa_elems ¶

    append_soa_elems :: proc(array: ^$T/#soa[dynamic]$T, .. #no_broadcast args: ..$T, loc := #caller_location) -> (n: int, err: Allocator_Error) #optional_ok {…}
    @@ -2133,6 +2109,12 @@

    +

    assert_contextless ¶

    +
    +
    assert_contextless :: proc "contextless" (condition: bool, message: string = #caller_expression(condition), loc := #caller_location) {…}
    +
    +

    +

    unordered_remove_soa ¶

    unordered_remove_soa :: proc(array: ^$T/#soa[dynamic]$T, #any_int index: int, loc := #caller_location) {…}
    @@ -2147,6 +2129,12 @@

    +

    ensure_contextless ¶

    +
    +
    ensure_contextless :: proc "contextless" (condition: bool, message: string = #caller_expression(condition), loc := #caller_location) {…}
    +
    +

    +

    ordered_remove_soa ¶

    ordered_remove_soa :: proc(array: ^$T/#soa[dynamic]$T, #any_int index: int, loc := #caller_location) {…}
    @@ -2159,6 +2147,18 @@

    +

    panic_contextless ¶

    +
    +
    panic_contextless :: proc "contextless" (message: string, loc := #caller_location) -> ! {…}
    +
    +

    +
    +

    unimplemented_contextless ¶

    +
    +
    unimplemented_contextless :: proc "contextless" (message: string, loc := #caller_location) -> ! {…}
    +
    +

    Procedure Groups

    copy ¶

    diff --git a/base/runtime/index.html b/base/runtime/index.html index dd9a4b66b1..f80129fa0f 100644 --- a/base/runtime/index.html +++ b/base/runtime/index.html @@ -4977,7 +4977,7 @@

    Source Files

  • (hidden platform specific files)
  • Generation Information

    -

    Generated with odin version dev-2025-01 (vendor "odin") Windows_amd64 @ 2025-01-20 21:11:03.241150700 +0000 UTC

    +

    Generated with odin version dev-2025-01 (vendor "odin") Windows_amd64 @ 2025-01-21 21:11:22.503633000 +0000 UTC