f32

package
v0.1.39 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 18, 2022 License: GPL-3.0 Imports: 3 Imported by: 0

Documentation

Index

Examples

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Float32

Example
package main

import (
	"fmt"

	globalSym "bitbucket.org/taubyte/go-sdk-symbols/globals"
	"bitbucket.org/taubyte/go-sdk/globals/f32"
	"bitbucket.org/taubyte/go-sdk/globals/scope"
)

func main() {
	// Mocking the calls to the vm for usage in tests and playground
	globalSym.MockData{
		Data: map[string][]uint8{
			"/float32/count":             {0x41, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0},
			"/application/float32/count": {0x43, 0xad, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0},
		},
	}.Mock()

	{
		count, err := f32.GetOrCreate("count")
		if err != nil {
			return
		}

		fmt.Println("Global scope:", count.Value())

		err = count.Set(64)
		if err != nil {
			return
		}

		count, err = f32.Get("count")
		if err != nil {
			return
		}

		fmt.Println("Global scope set:", count.Value())
	}

	{
		count, err := f32.Get("count", scope.Application)
		if err != nil {
			return
		}

		fmt.Println("Application scope:", count.Value())
	}

}
Output:

Global scope: 12
Global scope set: 64
Application scope: 347

func Get

func Get(name string, scope ...internal.Option) (Float32, error)

func GetOrCreate

func GetOrCreate(name string, scope ...internal.Option) (Float32, error)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL