Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
2answers
981 views

What's the difference between undefined in Haskell and null in Java?

Both are terms whose type is the intersection of all types (uninhabited). Both can be passed around in code without failing until one attempts to evaluate them. The only difference I can see is that ...
14
votes
6answers
713 views

Shorter way to write this code

The following pattern appears very frequently in Haskell code. Is there a shorter way to write it? if pred x then Just x else Nothing
8
votes
3answers
153 views

Merging/Appending Justs in Haskell

I'm trying to do what must be blindingly obvious in Haskell, which is go from Just [1] and Just [2] to Just [1, 2]. However I can't find anything online as I keep finding related but unhelpful pages. ...
8
votes
1answer
281 views

Function Returns “No Solution” Instead Of “Nothing”

I have a standard datatype representing formulae of predicate logic. A function representing a natural deduction elimination rule for disjunction might look like: d_el p q = if p =: (Dis r s) ...
7
votes
4answers
572 views

Why is the use of Maybe/Option not so pervasive in Clojure?

Why does Clojure, despite such an emphasis on functional paradigm, not use the Maybe/ Option monad to represent optional values? The use of Option is quite pervasive in Scala, a functional programming ...
6
votes
1answer
212 views

Using Haskell's “Maybe”, type declarations [beginner's question]

I've started experimenting with Haskell and have a problem. qqq is a function that should print one string if called with "Nothing" and print other things if called with "Just something". The first ...
5
votes
5answers
2k views

Using Maybe type in Haskell

I'm trying to utilize the Maybe type in Haskell. I have a lookup for key, value tuples that returns a Maybe. How do I access the data that was wrapped by Maybe? For example I want to add the ...
5
votes
3answers
350 views

Haskell maps returning a monad

The lookup function in Data.Map and Data.IntMap currently return values wrapped in Maybe with the type signature lookup :: Ord k => k -> Map k a -> Maybe a It used to have the more ...
4
votes
1answer
72 views

iSynaptic.Commons and the Maybe Monad

I've been trying to figure out how I could use the Maybe monad in iSynaptic.Commons in a context where my value retriever could throw an exception: For example: dynamic expando = new Expando(); ...
4
votes
3answers
528 views

How to get the “Value” of an Maybe in Haskell

I'm relatively new to Haskell and began to read "Real World Haskell". I Just stumbled over the type Maybe a have a question about how to receive the actual value from a "Just 1" for example. I have ...
4
votes
3answers
203 views

Haskell - Use Just or no Just made difference, but I don't know why

I've found such code in the book "Real World Haskell", p68 data Tree a = Node a (Tree a) (Tree a) | Empty deriving (Show) nodeAreSame (Node a _ _) (Node b _ _) ...
3
votes
2answers
132 views

How does the Maybe monad act as a short circuit?

I'm trying to get a deeper understanding of Monads. Therefore I started digging a little into the Maybe Monad. There is one thing that I just don't seem to get right. Read this: "So the Maybe Bind ...
3
votes
2answers
197 views

Haskell beginner

I don't understand why I get the following response from GHCi. Isn't Maybe a constructor function? Prelude> :t Maybe <interactive>:1:1: Not in scope: data constructor `Maybe' Prelude> ...
3
votes
3answers
130 views

Is there a standard option workflow in F#?

Is there an option (maybe) wokflow (monad) in the standrd F# library? I've found a dozen of hand-made implementations (1, 2) of this workflow, but I don't really want to introduce non-standard and ...
3
votes
2answers
411 views

Implementing the Haskell-MaybeMonad in F# - how can we get this lazy?

we are trying to build the Haskell-MaybeMonad sample from http://www.haskell.org/all_about_monads/html/maybemonad.html in F#. The idea is to search for a mailaddress in two dictionaries. If one of ...
2
votes
2answers
550 views

Operating on a return from a Maybe that contains “Just”

I have an algorithm that returns ->Maybe ([(Int,Int)],(Int,Int)) I would like to call this from another method and perform an operation on the data. However, the return value contains the keyword ...
1
vote
1answer
26 views

Haskell: Expected Laziness, Why is this Evaluated?

I have a function sideH which runs the risk of Prelude.head []. Hence, I have written it using Maybe, to avoid this: sideH :: Residue -> Maybe (Atom, Atom) sideH res -- Make sure the elements ...
1
vote
2answers
255 views

Are Maybes a good pattern for scala?

For a while I have been struggling to integrate scala with java methods that might return null. I came up with the following utility which helps a lot: // produce an Option, nulls become None ...
0
votes
3answers
178 views

Haskell: catMaybe for Data.Set?

how would you implement a catMaybes for Data.Set ? I came up with: import qualified Data.Set as Set import qualified Data.Maybe as Maybe setCatMaybes a = Set.map Maybe.fromJust . Set.delete Nothing ...