diff --git a/core/bufio/index.html b/core/bufio/index.html index 5cf2727746..6d1325ed66 100644 --- a/core/bufio/index.html +++ b/core/bufio/index.html @@ -1053,7 +1053,7 @@

Source Files

  • writer.odin
  • Generation Information

    -

    Generated with odin version dev-2023-10 (vendor "odin") Windows_amd64 @ 2023-10-07 21:07:34.780034100 +0000 UTC

    +

    Generated with odin version dev-2023-10 (vendor "odin") Windows_amd64 @ 2023-10-08 21:08:24.837479700 +0000 UTC

    -

    card ¶

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

    assert ¶

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

    panic ¶

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

    unimplemented ¶

    +

    hermitian_adjoint ¶

    -
    unimplemented :: proc(message: string, loc := #caller_location) -> ! {…}
    +
    hermitian_adjoint :: proc "contextless" (m: $M/matrix[0, 0]$T) -> $M/matrix[0, 0]$T {…}
    -

    hermitian_adjoint ¶

    +

    card ¶

    -
    hermitian_adjoint :: proc "contextless" (m: $M/matrix[0, 0]$T) -> $M/matrix[0, 0]$T {…}
    +
    card :: proc(s: $S/bit_set[$T]) -> int {…}
    @@ -1984,13 +1966,13 @@

    matrix3x3_determinant ¶

    -
    matrix3x3_determinant :: proc "contextless" (m: $M/matrix[3, 3]$T) -> (det: $T) {…}
    +
    matrix3x3_determinant :: proc "contextless" (m: $A/matrix[3, 3]$T) -> (det: $T) {…}

    matrix4x4_determinant ¶

    -
    matrix4x4_determinant :: proc "contextless" (m: $A/matrix[4, 4]$T) -> (det: $T) {…}
    +
    matrix4x4_determinant :: proc "contextless" (m: $M/matrix[4, 4]$T) -> (det: $T) {…}
    @@ -2008,13 +1990,13 @@

    matrix3x3_adjugate ¶

    -
    matrix3x3_adjugate :: proc "contextless" (m: $M/matrix[3, 3]$T) -> (y: $M/matrix[3, 3]$T) {…}
    +
    matrix3x3_adjugate :: proc "contextless" (m: $A/matrix[3, 3]$T) -> (y: $A/matrix[3, 3]$T) {…}

    matrix4x4_adjugate ¶

    -
    matrix4x4_adjugate :: proc "contextless" (x: $A/matrix[4, 4]$T) -> (y: $A/matrix[4, 4]$T) {…}
    +
    matrix4x4_adjugate :: proc "contextless" (x: $M/matrix[4, 4]$T) -> (y: $M/matrix[4, 4]$T) {…}
    @@ -2032,13 +2014,13 @@

    matrix3x3_inverse_transpose ¶

    -
    matrix3x3_inverse_transpose :: proc "contextless" (x: $M/matrix[3, 3]$T) -> (y: $M/matrix[3, 3]$T) {…}
    +
    matrix3x3_inverse_transpose :: proc "contextless" (x: $A/matrix[3, 3]$T) -> (y: $A/matrix[3, 3]$T) {…}

    matrix4x4_inverse_transpose ¶

    -
    matrix4x4_inverse_transpose :: proc "contextless" (x: $A/matrix[4, 4]$T) -> (y: $A/matrix[4, 4]$T) {…}
    +
    matrix4x4_inverse_transpose :: proc "contextless" (x: $M/matrix[4, 4]$T) -> (y: $M/matrix[4, 4]$T) {…}
    @@ -2056,13 +2038,13 @@

    matrix3x3_inverse ¶

    -
    matrix3x3_inverse :: proc "contextless" (x: $M/matrix[3, 3]$T) -> (y: $M/matrix[3, 3]$T) {…}
    +
    matrix3x3_inverse :: proc "contextless" (x: $A/matrix[3, 3]$T) -> (y: $A/matrix[3, 3]$T) {…}

    matrix4x4_inverse ¶

    -
    matrix4x4_inverse :: proc "contextless" (x: $A/matrix[4, 4]$T) -> (y: $A/matrix[4, 4]$T) {…}
    +
    matrix4x4_inverse :: proc "contextless" (x: $M/matrix[4, 4]$T) -> (y: $M/matrix[4, 4]$T) {…}
    @@ -2102,6 +2084,12 @@

    +

    assert ¶

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

    +

    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 {…}
    @@ -2114,12 +2102,24 @@

    resize_soa

    +

    panic ¶

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

    reserve_soa ¶

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

    unimplemented ¶

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

    append_soa_elem ¶

    append_soa_elem :: proc(array: ^$T/#soa[dynamic]$T, arg: $T, loc := #caller_location) -> (n: int, err: Allocator_Error) #optional_ok {…}
    @@ -2306,28 +2306,6 @@

    assign_at

    -

    incl ¶

    -
    -
    incl :: proc{
    -	incl_elem,
    -	incl_elems,
    -	incl_bit_set,
    -}
    -
    -
    -
    -
    -

    excl ¶

    -
    -
    excl :: proc{
    -	excl_elem,
    -	excl_elems,
    -	excl_bit_set,
    -}
    -
    -
    -
    -

    determinant ¶

    determinant :: proc{
    @@ -2364,6 +2342,17 @@ 

    +

    incl ¶

    +
    +
    incl :: proc{
    +	incl_elem,
    +	incl_elems,
    +	incl_bit_set,
    +}
    +
    +
    +

    +

    inverse ¶

    inverse :: proc{
    @@ -2376,6 +2365,17 @@ 

    inverse

    +

    excl ¶

    +
    +
    excl :: proc{
    +	excl_elem,
    +	excl_elems,
    +	excl_bit_set,
    +}
    +
    +
    +
    +

    make_soa ¶

    make_soa :: proc{
    diff --git a/core/bytes/index.html b/core/bytes/index.html
    index 811b068121..914ab9362e 100644
    --- a/core/bytes/index.html
    +++ b/core/bytes/index.html
    @@ -1248,7 +1248,7 @@ 

    Source Files

  • reader.odin
  • Generation Information

    -

    Generated with odin version dev-2023-10 (vendor "odin") Windows_amd64 @ 2023-10-07 21:07:34.925608700 +0000 UTC

    +

    Generated with odin version dev-2023-10 (vendor "odin") Windows_amd64 @ 2023-10-08 21:08:24.635516700 +0000 UTC