Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for typAt (0.03 sec)

  1. src/encoding/gob/type_test.go

    // license that can be found in the LICENSE file.
    
    package gob
    
    import (
    	"bytes"
    	"reflect"
    	"sync"
    	"testing"
    )
    
    type typeT struct {
    	id  typeId
    	str string
    }
    
    var basicTypes = []typeT{
    	{tBool, "bool"},
    	{tInt, "int"},
    	{tUint, "uint"},
    	{tFloat, "float"},
    	{tBytes, "bytes"},
    	{tString, "string"},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:26:13 UTC 2023
    - 6.1K bytes
    - Viewed (0)
Back to top