Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for NewSliceOfSlice (0.17 sec)

  1. src/go/doc/testdata/issue22856.1.golden

    	func NewPointerSliceOfSlice() [][]*T
    
    	// NewSlice3 is not a factory function because 3 nested slices of ...
    	func NewSlice3() [][][]T
    
    	// NewSliceOfSlice is not a factory function because slices of a ...
    	func NewSliceOfSlice() [][]T
    
    
    TYPES
    	// 
    	type T struct{}
    
    	// 
    	func New() T
    
    	// 
    	func NewArray() [1]T
    
    	// 
    	func NewPointer() *T
    
    	// 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 12 16:37:37 UTC 2018
    - 654 bytes
    - Viewed (0)
  2. src/go/doc/testdata/issue22856.go

    func NewArray() [1]T           { return [1]T{T{}} }
    func NewPointerArray() [1]*T   { return [1]*T{&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 { return []T{[]T{}} }
    
    // NewPointerSliceOfSlice is not a factory function because slices of a
    // slice of type *T are not factory functions of type T.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 12 16:37:37 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  3. src/go/doc/testdata/issue22856.0.golden

    	func NewPointerSliceOfSlice() [][]*T
    
    	// NewSlice3 is not a factory function because 3 nested slices of ...
    	func NewSlice3() [][][]T
    
    	// NewSliceOfSlice is not a factory function because slices of a ...
    	func NewSliceOfSlice() [][]T
    
    
    TYPES
    	// 
    	type T struct{}
    
    	// 
    	func New() T
    
    	// 
    	func NewArray() [1]T
    
    	// 
    	func NewPointer() *T
    
    	// 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 12 16:37:37 UTC 2018
    - 654 bytes
    - Viewed (0)
  4. src/go/doc/testdata/issue22856.2.golden

    	func NewPointerSliceOfSlice() [][]*T
    
    	// NewSlice3 is not a factory function because 3 nested slices of ...
    	func NewSlice3() [][][]T
    
    	// NewSliceOfSlice is not a factory function because slices of a ...
    	func NewSliceOfSlice() [][]T
    
    
    TYPES
    	// 
    	type T struct{}
    
    	// 
    	func New() T
    
    	// 
    	func NewArray() [1]T
    
    	// 
    	func NewPointer() *T
    
    	// 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 12 16:37:37 UTC 2018
    - 654 bytes
    - Viewed (0)
Back to top