Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 523713
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T08:29:27+00:00 2026-05-13T08:29:27+00:00

(How) is it possible to represent monads in Scala in a generic way (like

  • 0

(How) is it possible to represent monads in Scala in a generic way (like the Monad typeclass in Haskell)? Is it somehow possible to define a trait Monad for this purpose?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T08:29:27+00:00Added an answer on May 13, 2026 at 8:29 am

    You could try something like this:

    trait Monad[+M[_]] {
      def unit[A](a: A): M[A]
      def bind[A, B](m: M[A])(f: A => M[B]): M[B]
    }
    
    // probably only works in Scala 2.8
    implicit def monadicSyntax[M[_], A](m: M[A])(implicit tc: Monad[M]) = new {
      private val bind = tc.bind(m) _
    
      def map[B](f: A => B) = bind(f compose tc.unit)
    
      def flatMap[B](f: A => M[B]) = bind(f)
    }
    
    implicit object MonadicOption extends Monad[Option] {
      def unit[A](a: A) = Some(a)
    
      def bind[A, B](opt: Option[A])(f: A => Option[B]) = opt flatMap f
    }
    

    You would of course define similar implicit objects for any other monad your heart desires. In Haskell terms, you can think of Monad like the typeclass and MonadicOption as a particular instance of that type class. The monadicSyntax implicit conversion simply demonstrates how this typeclass could be used to allow the use of Scala’s for-comprehensions with anything which satisfies the Monad typeclass.

    Generally speaking, most things in the Scala standard library which implement flatMap are monads. Scala doesn’t define a generic Monad typeclass (though that would be very useful). Instead, it relies on a syntactic trick of the parser to allow the use of for-comprehensions with anything which implements the appropriate methods. Specifically, those methods are map, flatMap and filter (or foreach and filter for the imperative form).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a class Parameter, the purpose of which is to represent the possible
Possible Duplicate: Simple division I juz wanna ask how to represent this kind of
Possible Duplicate: Nullable values in C++ What is the best way to represent nullable
Possible Duplicate: How to represent 18bit color depth to 16bit color depth? I'm porting
Possible Duplicate: What does a type followed by _t (underscore-t) represent? While typing in
Possible Duplicate: What does a type followed by _t (underscore-t) represent? Does anyone knows
I'm trying to represent the result of an MD5 hash in the shortest possible
Is it possible to have a Django form field represent form values as slugs
Possible Duplicate: C# generic constraint for only integers As you can see in the
Possible Duplicate: Scala map containing mix type values I have a situation where in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.