Git Product home page Git Product logo

Comments (3)

Jeffail avatar Jeffail commented on July 26, 2024

Hey @s00500, I've added a function MergeFn that allows you to specify your own collision behaviour rather than needing to copy/paste the whole Merge function.

In order to remove non-unique items from the arrays that merge I would instead use a map[interface{}]struct{} to reference each item.

from gabs.

s00500 avatar s00500 commented on July 26, 2024

WOW this is great, thanks very much =D

from gabs.

s00500 avatar s00500 commented on July 26, 2024

In case anyone is interested in how my collision function now looks:

func colisionFunction(source, dest interface{}) interface{} {
	destArr, destIsArray := dest.([]interface{})
	sourceArr, sourceIsArray := source.([]interface{})
	if destIsArray {
		if sourceIsArray {
			for _, sourceElement := range sourceArr {
				exists := false
				for _, destElement := range destArr {
					if sourceElement == destElement {
						exists = true
						break
					}
				}
				if !exists {
					destArr = append(destArr, sourceElement)
				}
			}
			return destArr
		}
		exists := false
		for _, destElement := range destArr {
			if source == destElement {
				exists = true
				break
			}
		}
		if exists {
			return destArr
		}
		return append(destArr, source)
	}

	if sourceIsArray {
		exists := false
		for _, sourceElement := range sourceArr {
			if dest == sourceElement {
				exists = true
				break
			}
		}
		if exists {
			return sourceArr
		}
		return append(sourceArr, dest)
	}

	if dest == source {
		return dest
	}
	return []interface{}{dest, source}
}

from gabs.

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.