• Serenity
      link
      fedilink
      711 months ago

      My brain is too smooth to imagine a solution to this using monads. Mind sharing what you got with the class?

      • nick
        link
        fedilink
        12
        edit-2
        11 months ago

        Having a Result[T, Err] monad that could represent either the data from a successful operation or an error. This can be generalised to the Either[A, B] monad too.

        • Serenity
          link
          fedilink
          2
          edit-2
          11 months ago

          Either[A, B] monad

          Wait, that’s all monads are? some generic class

          Either
          

          ?

          • @[email protected]
            link
            fedilink
            11
            edit-2
            11 months ago

            Nope. Monads enable you to redefine how statements work.

            Let’s say you have a program and use an Error[T] data type which can either be Ok {Value: T} or Error:

            var a = new Ok {Value = 1};
            var b = foo();
            return new Ok {Value = (a + b)};
            

            Each statement has the following form:

            var a = expr;
            rest
            

            You first evaluate the “expr” part and bind/store the result in variable a, and evaluate the “rest” of the program.

            You could represent the same thing using an anonymous function you evaluate right away:

            (a => rest)(expr);
            

            In a normal statement you just pass the result of “expr” to the function directly. The monad allows you to redefine that part.

            You instead write:

            bind((a => rest), expr);
            

            Here “bind” redefines how the result of expr is passed to the anonymous function.

            If you implement bind as:

            B bind(Func[A, B] f, A result_expr) {
               return f(result_expr);
            }
            

            Then you get normal statements.

            If you implement bind as:

            Error[B] bind(Func[A, Error[B]] f, Error[A] result_expr) {
               switch (result_expr) {
                   case Ok { Value: var a}:
                       return f(a);
                   case Error:
                       return Error;
               }
            }
            

            You get statements with error handling.

            So in an above example if the result of foo() is Error, the result of the statement is Error and the rest of the program is not evaluated. Otherwise, if the result of foo() is Ok {Value = 3}, you pass 3 to the rest of the program and you get a final result Ok {Value = 4}.

            So the whole idea is that you hide the if Error part by redefining how the statements are interpreted.

          • @[email protected]
            link
            fedilink
            4
            edit-2
            11 months ago

            “Some generic class” with specific methods and laws, Monads are an algebraic structure and you want those laws included same as if you enable some type to use + you want to have a 0 somewhere and x + 0 == x to hold. Like "foo" + "" == "foo" in the case of strings, just as an example.

            In Rust, Result and Option actually are monads. Let’s take Option as example:

            • pure x is Some(x)
            • a >>= b is a.and_then(b)

            Then we have:

            • Left identity: Some(x).and_then(f)f(x)
            • Right identity: x.and_then(Some)x
            • Associativity: m.and_then(g).and_then(h)m.and_then(|x| g(x).and_then(h))

            Why those laws? Because following them avoids surprises like x + 0 /= x.

            Rust’s type system isn’t powerful enough to have a Monad trait (lack of HKTs) hence why you can’t write code that works with any type that implements that kind of interface. Result names >>= and_then, just like Option does so the code reads the same but you’ll have to choose between Option or Result in the type signature, the code can’t be properly generic over it.

      • @[email protected]
        link
        fedilink
        5
        edit-2
        11 months ago

        Someone else and not an expert. But Maybe types are implemented with Monads, Maybe is a common monad.

        Its how rust does error handling for example, you have to test a return value for “something or nothing” but you can pass the monadic value and handle the error later, in go you have to handle the error explicitly (almost) all the time.

      • @[email protected]
        link
        fedilink
        English
        2
        edit-2
        11 months ago

        Here’s an example (first in Haskell then in Go), lets say you have some types/functions:

        • type Possible a = Either String a
        • data User = User { name :: String, age :: Int }
        • validateName :: String -> Possible String
        • validateAge :: Int -> Possible Int

        then you can make

        mkValidUser :: String -> Int -> Possible User
        mkValidUser name age = do
          validatedName ← validateName name
          validatedAge  ← validateAge age
          pure $ User validatedName validatedAge
        

        for some reason <- in lemmy shows up as &lt;- inside code blocks, so I used the left arrow unicode in the above instead

        in Go you’d have these

        • (no Possible type alias, Go can’t do generic type aliases yet, there’s an open issue for it)
        • type User struct { Name string; Age int }
        • func validateName(name string) (string, error)
        • func validateAge(age int) (int, error)

        and with them you’d make:

        func mkValidUser(name string, age int) (*User, error) {
          validatedName, err = validateName(name)
          if err != nil {
            return nil, err
          }
        
          validatedAge, err = validateAge(age)
          if err != nil {
            return nil, err
          }
        
          return User(Name: validatedName, Age: validatedAge), nil
        }
        

        In the Haskell, the fact that Either is a monad is saving you from a lot of boilerplate. You don’t have to explicitly handle the Left/error case, if any of the Eithers end up being a Left value then it’ll correctly “short-circuit” and the function will evaluate to that Left value.

        Without using the fact that it’s a functor/monad (e.g you have no access to fmap/>>=/do syntax), you’d end up with code that has a similar amount of boilerplate to the Go code (notice we have to handle each Left case now):

        mkValidUser :: String -> Int -> Possible User
        mkValidUser name age =
          case (validatedName name, validateAge age) of
            (Left nameErr, _) => Left nameErr
            (_, Left ageErr)  => Left ageErr
            (Right validatedName, Right validatedAge) => 
              Right $ User validatedName validatedAge