gopy/_examples/named/named.go

42 lines
978 B
Go
Raw Normal View History

// Copyright 2015 The go-python Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// package named tests various aspects of named types.
package named
type Float float32
// Value returns a float32 value
func (f Float) Value() float32 { return float32(f) }
type X float32
type XX X
type XXX XX
type XXXX XXX
// Value returns a float32 value
func (x X) Value() float32 { return float32(x) }
// Value returns a float32 value
func (x XX) Value() float32 { return float32(x) }
// Value returns a float32 value
func (x XXX) Value() float32 { return float32(x) }
// Value returns a float32 value
func (x XXXX) Value() float32 { return float32(x) }
type Str string
// Value returns a string value
func (s Str) Value() string { return string(s) }
type Slice []float64
func (s Slice) At(i int) float64 { return s[i] }
type Array [2]float64
func (a Array) At(i int) float64 { return a[i] }