GithubHelp home page GithubHelp logo

Getting error when instantiating a set: "invalid operation: cannot index mapset.NewSet (value of type func(s ...interface{}) mapset.Set)" about golang-set HOT 6 CLOSED

pcgeek86 avatar pcgeek86 commented on June 6, 2024
Getting error when instantiating a set: "invalid operation: cannot index mapset.NewSet (value of type func(s ...interface{}) mapset.Set)"

from golang-set.

Comments (6)

deckarep avatar deckarep commented on June 6, 2024 2

You mentioned you are new to Go, a couple of things to make sure:

  1. That you are properly importing the correct version of the Set v2
  2. That you are using Go modules correctly which is the recommended way to use dependencies for awhile now: go get github.com/deckarep/golang-set/v2
  3. That your Go environment is properly setup, perhaps try pulling in other dependencies to make sure things are solid.

from golang-set.

deckarep avatar deckarep commented on June 6, 2024 1

So far I can't reproduce the issue you are seeing...here is a complete code snippet running go1.20

package main

import (
	"fmt"
	mapset "github.com/deckarep/golang-set/v2"
	"runtime"
)

func main() {
	// Create a string-based set of required classes.
	req := mapset.NewSet[string]()
	req.Add("cooking")
	req.Add("english")
	req.Add("math")
	req.Add("biology")

	fmt.Printf("Go version: %s\n", runtime.Version())
	fmt.Println("size: ", req.Cardinality())

	req.Each(func(x string) bool {
		fmt.Println("->", x)
		return false
	})
}

Output:

Go version: go1.20.1
size:  4
-> cooking
-> english
-> math
-> biology

from golang-set.

deckarep avatar deckarep commented on June 6, 2024

@pcgeek86 - Hi, this is pretty surprising if this is somehow broken on Go 1.20 and I'll be investigating this today. In the meantime, if anyone else experiences this with 1.20 please +1 this issue.

from golang-set.

pcgeek86 avatar pcgeek86 commented on June 6, 2024

Thanks, I'm pretty new to Go. I was just copying the example from the README, and was surprised that it was throwing the error.

from golang-set.

pcgeek86 avatar pcgeek86 commented on June 6, 2024

I just created a new folder / module and was able to repro the issue.

> go mod init trevortest
> go get github.com/deckarep/golang-set

Screenshot 2023-03-05 at 11 49 00 AM

Screenshot 2023-03-05 at 11 49 52 AM

Go.mod

Screenshot 2023-03-05 at 11 50 11 AM

NOTE: I solved the issue by appending /v2 to the module name. Thanks for pointing that out! I had incorrectly assumed the module name was just the GitHub repo path.

from golang-set.

deckarep avatar deckarep commented on June 6, 2024

Glad it's resolved!

from golang-set.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.