Skip to content

bantl23/frame

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FRAME

Build Status Build Status Coverage Status

This library implements a generic data frame

Usage

import (
  "github.com/bantl23/frame"
)

func main() {
  f := frame.NewFrame("FrameName")

  // 0 == bit start location
  // 32 == bit length
  f.Items["FrameItemName"] = frame.NewFrameItem(0, 32)
  f.Items["FrameItemName"].GetUint64()
  x := f.GetUint64("FrameItemName")
  f.Items["FrameItemName"].SetUint64(x)
  f.SetUint64("FrameItemName", x)
}

About

Generic Frame Library

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages