T struct #
type T struct {
}
type T struct {
}
func New() T
func NewArray() [1]T
func NewPointer() *T
func NewPointerArray() [1]*T
func NewPointerOfPointer() **T
func NewPointerSlice() []*T
NewPointerSliceOfSlice is not a factory function because slices of a slice of type *T are not factory functions of type T.
func NewPointerSliceOfSlice() [][]*T
func NewSlice() []T
NewSlice3 is not a factory function because 3 nested slices of type T are not factory functions of type T.
func NewSlice3() [][][]T
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