diff --git a/base/builtin/index.html b/base/builtin/index.html index 1b85278305..1db6973340 100644 --- a/base/builtin/index.html +++ b/base/builtin/index.html @@ -291,19 +291,19 @@

Index

  • runtime.map_insert
  • runtime.map_upsert
  • runtime.card
  • +
  • runtime.raw_soa_footer_slice
  • runtime.assert
  • +
  • runtime.raw_soa_footer_dynamic_array
  • runtime.panic
  • runtime.unimplemented
  • -
  • runtime.assert_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.assert_contextless
  • runtime.make_soa_dynamic_array_len
  • +
  • runtime.panic_contextless
  • runtime.make_soa_dynamic_array_len_cap
  • +
  • runtime.unimplemented_contextless
  • runtime.resize_soa
  • runtime.non_zero_resize_soa
  • runtime.reserve_soa
  • @@ -1970,81 +1970,81 @@

    card -

    assert ¶

    +
    -
    assert :: proc(condition: bool, message: string = "", loc := #caller_location) {…}
    +
    raw_soa_footer_slice :: proc(array: ^$T/#soa[]$T) -> (footer: ^Raw_SOA_Footer_Slice) {…}
    -

    panic ¶

    +

    assert ¶

    -
    panic :: proc(message: string, loc := #caller_location) -> ! {…}
    +
    assert :: proc(condition: bool, message: string = "", loc := #caller_location) {…}
    -

    unimplemented ¶

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

    assert_contextless ¶

    +

    panic ¶

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

    panic_contextless ¶

    +

    unimplemented ¶

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

    unimplemented_contextless ¶

    +

    make_soa_aligned ¶

    -
    unimplemented_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 {…}
    - +

    make_soa_slice ¶

    -
    raw_soa_footer_slice :: proc(array: ^$T/#soa[]$T) -> (footer: ^Raw_SOA_Footer_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 ¶

    -
    raw_soa_footer_dynamic_array :: proc(array: ^$T/#soa[dynamic]$T) -> (footer: ^Raw_SOA_Footer_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_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 = "", loc := #caller_location) {…}
    -

    make_soa_slice ¶

    +

    make_soa_dynamic_array_len ¶

    -
    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_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 ¶

    +

    panic_contextless ¶

    -
    make_soa_dynamic_array :: proc($T: typeid/#soa[dynamic]T, 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_len ¶

    +

    make_soa_dynamic_array_len_cap ¶

    -
    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 :: 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 {…}
    -

    make_soa_dynamic_array_len_cap ¶

    +

    unimplemented_contextless ¶

    -
    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 {…}
    +
    unimplemented_contextless :: proc "contextless" (message: string, loc := #caller_location) -> ! {…}
    diff --git a/base/runtime/index.html b/base/runtime/index.html index 987b271f5a..d42d1ce6bb 100644 --- a/base/runtime/index.html +++ b/base/runtime/index.html @@ -4927,7 +4927,7 @@

    Source Files

  • (hidden platform specific files)
  • Generation Information

    -

    Generated with odin version dev-2024-12 (vendor "odin") Windows_amd64 @ 2024-12-16 21:11:40.110684800 +0000 UTC

    +

    Generated with odin version dev-2024-12 (vendor "odin") Windows_amd64 @ 2024-12-17 21:11:00.822612100 +0000 UTC