New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

github.com/kailian-jacy/go-obj-map

Package Overview
Dependencies
Alerts
File Explorer
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/kailian-jacy/go-obj-map

  • v0.0.0-20220922033918-fb86327a06b5
  • Source
  • Go
  • Socket score

Version published
Created
Source

go-obj-map

A map indexed with object but not string. A toy project that cannot be used for industry.

A map index could be a normal struct like:

type someStruct struct {
	// ... `objmap:"ignore"`
}

Struct name and type are considered for comparison of equality.

By default, struct instance of "different struct type" and "same struct type with different values" are both considered different.

objk = someStruct{...}

d := objmap.New()
d.Set(objk, v)

if v1, ok := d.Get(objk); ok {
	fmt.Println(v)
	fmt.Println(v1.(someStruct))
}

You may add tags to configure the equality judgement for different objects. For now, only "ignoring" some fields are permitted.

FAQs

Package last updated on 22 Sep 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc