T struct #
type T struct {
}type T struct {
}func New() Tfunc NewArray() [1]Tfunc NewPointer() *Tfunc NewPointerArray() [1]*Tfunc NewPointerOfPointer() **Tfunc NewPointerSlice() []*TNewPointerSliceOfSlice is not a factory function because slices of a slice of type *T are not factory functions of type T.
func NewPointerSliceOfSlice() [][]*Tfunc NewSlice() []TNewSlice3 is not a factory function because 3 nested slices of type T are not factory functions of type T.
func NewSlice3() [][][]TNewSliceOfSlice is not a factory function because slices of a slice of type *T are not factory functions of type T.
func NewSliceOfSlice() [][]TGenerated with Arrow