Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for SerDeString (1.67 sec)

  1. test/typeparam/issue47713.go

    import (
    	"encoding"
    	"fmt"
    )
    
    type Seralizable interface {
    	encoding.BinaryMarshaler
    	encoding.BinaryUnmarshaler
    }
    
    type SerDeString string
    
    func (s *SerDeString) UnmarshalBinary(in []byte) error {
    	*s = SerDeString(in)
    	return nil
    }
    
    func (s SerDeString) MarshalBinary() ([]byte, error) {
    	return []byte(s), nil
    }
    
    
    type GenericSerializable[T Seralizable] struct {
    	Key string
    	Value T
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 888 bytes
    - Viewed (0)
Back to top