Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/PumpkinSeed/structs
Golang struct operations.
https://github.com/PumpkinSeed/structs
golang golang-library golang-struct library reflection utility
Last synced: about 1 month ago
JSON representation
Golang struct operations.
- Host: GitHub
- URL: https://github.com/PumpkinSeed/structs
- Owner: PumpkinSeed
- License: apache-2.0
- Created: 2017-08-26T09:59:00.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-10-23T13:03:17.000Z (about 7 years ago)
- Last Synced: 2024-11-13T11:43:23.744Z (about 1 month ago)
- Topics: golang, golang-library, golang-struct, library, reflection, utility
- Language: Go
- Size: 27.3 KB
- Stars: 24
- Watchers: 4
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-go - structs - Golang struct operations. - ★ 8 (Utilities)
- awesome-go-extra - structs - 08-26T09:59:00Z|2017-10-23T13:03:17Z| (Utilities / Fail injection)
README
# Golang structs
Package structs implements simple functions to manipulate structs in Golang.[![Documentation](https://godoc.org/github.com/PumpkinSeed/structs?status.svg)](https://godoc.org/github.com/PumpkinSeed/structs)
[![Go Report Card](https://goreportcard.com/badge/github.com/PumpkinSeed/structs)](https://goreportcard.com/report/github.com/PumpkinSeed/structs)
[![license](https://img.shields.io/github/license/yangwenmai/how-to-add-badge-in-github-readme.svg?maxAge=2592000)](github.com/PumpkinSeed/structs/LICENSE.md)
[![Build Status](https://travis-ci.org/PumpkinSeed/structs.svg?branch=master)](https://travis-ci.org/PumpkinSeed/structs)
[![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/avelino/awesome-go#utilities)## Get it
```
go get github.com/PumpkinSeed/structs
```## Contains
Contains reports whether value is within struct```
package mainimport "github.com/PumpkinSeed/structs"
type Tst struct {
TestString string
TestFloat32 float32
TestFloat64 float64
}func main() {
tst := Tst{
TestString: "test",
TestFloat32: 13.444,
TestFloat64: 16.444,
}result := structs.Contains(tst, float64(16.444)) // true
result = structs.Contains(tst, float32(13.444)) // true
}
```#### Benchmark
```
BenchmarkContains-4 3000000 492 ns/op
```## Compare
Compare returns a boolean comparing two struct```
package mainimport "github.com/PumpkinSeed/structs"
type TstA struct {
TestInt int
TestInt8 int8
TestInt16 int16
}type TstB struct {
TestInt int
TestInt8 int8
TestInt16 int16
}func main() {
tstA := TstA{
TestInt: 12,
TestInt8: 42,
TestInt16: 55,
}tstB := TstB{
TestInt: 12,
TestInt8: 42,
TestInt16: 55,
}result := structs.Compare(testStructA, testStructB) // true
}```
#### Benchmark
```
BenchmarkCompareEqual-4 5000000 379 ns/op
BenchmarkCompareNotEqual-4 5000000 372 ns/op
```## Index
Index returns the index of the first instance of the value in struct```
package mainimport "github.com/PumpkinSeed/structs"
type Tst struct {
TestInt int
TestInt8 int8
TestInt16 int16
TestInt32 int32
TestInt64 int64
TestString string
TestBool bool
TestFloat32 float32
TestFloat64 float64
}func main() {
tst := Tst{
TestInt: 12,
TestInt8: 42,
TestInt16: 55,
TestInt32: 33,
TestInt64: 78,
TestString: "test",
TestBool: false,
TestFloat32: 13.444,
TestFloat64: 16.444,
}result := structs.Index(testStruct, "test") // 5
}
```#### Benchmark
```
BenchmarkIndex-4 5000000 242 ns/op
```## FieldNameByValue
FieldNameByValue returns the field's name of the first instance of the value in struct```
package mainimport "github.com/PumpkinSeed/structs"
type Tst struct {
TestInt int
TestInt8 int8
TestInt16 int16
TestInt32 int32
TestInt64 int64
TestString string
TestBool bool
TestFloat32 float32
TestFloat64 float64
}func main() {
tst := Tst{
TestInt: 12,
TestInt8: 42,
TestInt16: 55,
TestInt32: 33,
TestInt64: 78,
TestString: "test",
TestBool: false,
TestFloat32: 13.444,
TestFloat64: 16.444,
}result := structs.FieldNameByValue(testStruct, "test") // TestString
}
```#### Benchmark
```
BenchmarkFieldNameByValue-4 5000000 293 ns/op
```## Map
The second parameter is a function, apply the function on each field on the struct, or on the condition determined in the third argument```
package mainimport "github.com/PumpkinSeed/structs"
type Tst struct {
Username string
Title string
Content string
}func main() {
tst := Tst{
Username: "PumpkinSeed",
Title: "Test title",
Content: "Test content",
}result, err := structs.Map(&ts, func(v reflect.Value) error {
if v.Type() == stringType {
v.SetString(strings.ToLower(v.String()))
}
return nil
})
}
```#### Benchmark
```
BenchmarkMap-4 5000000 268 ns/op
```## Replace
Replace returns a copy of the struct with the first non-overlapping instance of old replaced by new, the last param (n) is the limit, if n < 0, there is no limit on the number of replacements```
package mainimport "github.com/PumpkinSeed/structs"
type Tst struct {
TestInt int
TestInt8 int8
TestInt16 int16
TestInt32 int32
TestInt64 int64
TestString1 string
TestString2 string
TestString3 string
TestString4 string
TestBool bool
TestFloat32 float32
TestFloat64 float64
}func main() {
tst := Tst{
TestInt: 12,
TestInt8: 42,
TestInt16: 55,
TestInt32: 33,
TestInt64: 78,
TestString1: "test",
TestString2: "test",
TestString3: "test",
TestString4: "test",
TestBool: false,
TestFloat32: 13.444,
TestFloat64: 16.444,
}result, err := structs.Replace(&ts, "test", "new", 2)
}
```#### Benchmark
```
BenchmarkReplace-4 2000000 655 ns/op
```### ToDo
- Upgrade GoDoc
- Implement Map