issue22856

Structs

T struct #

type T struct {

}

Functions

New function #

func New() T

NewArray function #

func NewArray() [1]T

NewPointer function #

func NewPointer() *T

NewPointerArray function #

func NewPointerArray() [1]*T

NewPointerOfPointer function #

func NewPointerOfPointer() **T

NewPointerSlice function #

func NewPointerSlice() []*T

NewPointerSliceOfSlice function #

NewPointerSliceOfSlice is not a factory function because slices of a slice of type *T are not factory functions of type T.

func NewPointerSliceOfSlice() [][]*T

NewSlice function #

func NewSlice() []T

NewSlice3 function #

NewSlice3 is not a factory function because 3 nested slices of type T are not factory functions of type T.

func NewSlice3() [][][]T

NewSliceOfSlice function #

NewSliceOfSlice is not a factory function because slices of a slice of type *T are not factory functions of type T.

func NewSliceOfSlice() [][]T

Generated with Arrow