GithubHelp home page GithubHelp logo

Comments (4)

linxkaa avatar linxkaa commented on June 26, 2024 1

I see, alright then. Closing this question. Thankyou!

from fpdart.

SandroMaglione avatar SandroMaglione commented on June 26, 2024

Hi @linxkaa

Without knowing about the implementation of FormValidator I can say that somehow one of _emptyLeftErrorMsg, _emptyRightErrorMsg, or _zeroRightErrorMsg returns None.

In the case of Either since _emptyLeftErrorMsg returns Left then _emptyRightErrorMsg and _zeroRightErrorMsg are "skipped". This is not the case with some in Option

from fpdart.

linxkaa avatar linxkaa commented on June 26, 2024

Hi @SandroMaglione thank you for answering.

But as you can see in the code, when Im using either it returns the correct statement which is left. And should've work the same with option, if the _emptyLeftErrorMsg is returning failure -> Should've returning some() I event print inside the _emptyLeftErrorMsg, and its returning some('Left form must not be empty')

So Im kind of confused why .andThen doesn't work in Option

from fpdart.

SandroMaglione avatar SandroMaglione commented on June 26, 2024

andThen executes the function only when the current value is not Left (Either) or None (Option).

Your example works with Either because you wrap the result in left. andThen will therefore not execute at all and skip to fold.

With Option you return some, which instead continues the execution of andThen possibly causing a failure later in the code

from fpdart.

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.