Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ratGobVersion (0.17 sec)

  1. src/math/big/ratmarsh.go

    package big
    
    import (
    	"errors"
    	"fmt"
    	"internal/byteorder"
    	"math"
    )
    
    // Gob codec version. Permits backward-compatible changes to the encoding.
    const ratGobVersion byte = 1
    
    // GobEncode implements the [encoding/gob.GobEncoder] interface.
    func (x *Rat) GobEncode() ([]byte, error) {
    	if x == nil {
    		return nil, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top