Coder Social home page Coder Social logo

Comments (3)

shove70 avatar shove70 commented on May 24, 2024

No, it's not about V.

fn get_value(m map[string]int, key string) ?int {
	return m[key] or { none }  // The or block here is map specific and is where we handle when the key doesn't exist
	                           // The priority of this or block is to the map, not to the previous return
}
fn even_or_none(i int) ?int {
	return if i % 2 == 0 { i } else { none }
}

fn useless_fn(i int) ?int {
	return even_or_none(i) or { none } // The or block here is the option that handles the return value of fn even_or_none()
}

They're not the same

from v.

shove70 avatar shove70 commented on May 24, 2024
fn get_value(m map[string]int, key string) ?int {
	return m[key] or { return none }
}

So it works

from v.

juan-db avatar juan-db commented on May 24, 2024

Result behaves the same as Option.

fn even_or_error(i int) !int {
	return if i % 2 == 0 { i } else { error('${i}') }
}

fn useless_fn(i int) ?int {
	return even_or_error(i) or { none }
}

I can't think of another example that uses or syntax. So why should map behave differently from Result and Option?

from v.

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.