diff --git a/base/builtin/index.html b/base/builtin/index.html index eaccc592f0..93f96a0f11 100644 --- a/base/builtin/index.html +++ b/base/builtin/index.html @@ -290,22 +290,22 @@

Index

  • runtime.non_zero_resize_dynamic_array
  • runtime.map_insert
  • runtime.map_upsert
  • -
  • runtime.raw_soa_footer_slice
  • runtime.map_entry
  • -
  • runtime.raw_soa_footer_dynamic_array
  • runtime.card
  • runtime.assert
  • runtime.ensure
  • runtime.panic
  • runtime.unimplemented
  • -
  • runtime.make_soa_aligned
  • runtime.assert_contextless
  • -
  • runtime.make_soa_slice
  • -
  • runtime.make_soa_dynamic_array
  • -
  • runtime.make_soa_dynamic_array_len
  • runtime.ensure_contextless
  • runtime.panic_contextless
  • runtime.unimplemented_contextless
  • +
  • runtime.raw_soa_footer_slice
  • +
  • runtime.raw_soa_footer_dynamic_array
  • +
  • runtime.make_soa_aligned
  • +
  • runtime.make_soa_slice
  • +
  • runtime.make_soa_dynamic_array
  • +
  • runtime.make_soa_dynamic_array_len
  • runtime.make_soa_dynamic_array_len_cap
  • runtime.resize_soa
  • runtime.non_zero_resize_soa
  • @@ -1967,12 +1967,6 @@

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

    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) {…}
    @@ -1989,12 +1983,6 @@

    map_entry

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

    card ¶

    card :: proc "contextless" (s: $T/bit_set[$T]) -> int {…}
    @@ -2031,51 +2019,63 @@

    unimpl

    -

    make_soa_aligned ¶

    +

    assert_contextless ¶

    -
    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 {…}
    +
    assert_contextless :: proc "contextless" (condition: bool, message: string = #caller_expression(condition), loc := #caller_location) {…}
    -

    assert_contextless ¶

    +

    ensure_contextless ¶

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

    make_soa_slice ¶

    +

    panic_contextless ¶

    -
    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 {…}
    +
    panic_contextless :: proc "contextless" (message: string, loc := #caller_location) -> ! {…}
    -

    make_soa_dynamic_array ¶

    +

    unimplemented_contextless ¶

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

    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 {…}
    +
    raw_soa_footer_slice :: proc(array: ^$T/#soa[]$T) -> (footer: ^Raw_SOA_Footer_Slice) {…}
    -

    ensure_contextless ¶

    +
    -
    ensure_contextless :: proc "contextless" (condition: bool, message: string = #caller_expression(condition), loc := #caller_location) {…}
    +
    raw_soa_footer_dynamic_array :: proc(array: ^$T/#soa[dynamic]$T) -> (footer: ^Raw_SOA_Footer_Dynamic_Array) {…}
    -

    panic_contextless ¶

    +

    make_soa_aligned ¶

    -
    panic_contextless :: proc "contextless" (message: string, loc := #caller_location) -> ! {…}
    +
    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 {…}
    -

    unimplemented_contextless ¶

    +

    make_soa_slice ¶

    -
    unimplemented_contextless :: proc "contextless" (message: string, loc := #caller_location) -> ! {…}
    +
    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 {…}
    diff --git a/base/runtime/index.html b/base/runtime/index.html index 8ffd81c0cf..fc9933a877 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-25 21:10:47.755166100 +0000 UTC

    +

    Generated with odin version dev-2025-01 (vendor "odin") Windows_amd64 @ 2025-01-26 21:10:17.312575500 +0000 UTC