In Haskell, Maybe is a predefined type that encapsulates an optional value of a specific type. It is often used as a simple way to deal with errors when an operation can fail but need not provide additional information for the reason for the failure. Maybe is an instance of the type classes Functor, ...
1
vote
2answers
129 views
Maybe class and optional parameters
I have an implementation of a Maybe / Option class in c#. Basic implementation is
public delegate Maybe<TOutput> Converter<in TInput, out TOutput>(TInput input);
public delegate TOutput ...
3
votes
4answers
147 views
Haskell - Maybe arithmetic
I have been asked to implement a function which uses the following profile:
maybe_divide :: Maybe Integer -> Maybe Integer -> Maybe Integer
and responds in the following manner:
> ...
1
vote
3answers
87 views
Canonical way to work on Option elements in Scala
As an example, I want to apply a function f: (Int,Int) => Int to two elements of type Option[Int]. My thoughts were something like (a,b).zipped.map(f), but this yields a List, and I want to get a ...
7
votes
3answers
193 views
Haskell- Find element in a list and return its position
So i need to make a function described as
invFib :: Integer -> Maybe Integer
which takes an Integer and looks for it in the fibonacci sequence (as described by the function below)
fibs :: ...
1
vote
3answers
111 views
Two identical codes but very different error messages in terminal
Here is my first code
maybe_devide :: Maybe Integer -> Maybe Integer -> Maybe Integer
maybe_devide maybeX maybeY = case (maybeX, maybeY) of
(Just x, Just y)
|x/=0 && y/=0 -> ...
0
votes
1answer
87 views
parse error in maybe divide (Haskell)
Just a simple question that i cannot solve
I was trying to get maybe_divide by the following code as assignment required, however terminal give me an error massage "test2.hs:1:112: Parse error in ...
2
votes
1answer
99 views
Fuzzy Pattern Matching Dispatch in Haskell
I'm writing some parse code over a tree. (Namely an Stanford nlp dependency tree)
Basically I have a function like this:
m :: DepTree -> Logic
m (w, [E "nsubj" nsubj, E "dobj" dobj]) = ...
m (w, ...
3
votes
1answer
92 views
Snap framework - repeated maybe tidying
I'm applying my (limited) Haskell knowledge to the Snap web framework and seeing what I can build. I'm trying to get a (possibly non-existent) parameter and parse it into an int. Obviously "Maybe" is ...
4
votes
2answers
94 views
Retrieving values from a chain of ADT's with Maybe's
I have some ADT's each of which may or not contain another ADT. I need to retrieve data from lower levels and I'm writing some very repetitive code which I am sure can be eliminated. I've looked at ...
0
votes
1answer
62 views
MaybeT Compile Errors
The error:
maybet.hs:8:14:
Couldn't match expected type `MaybeT m0 t0'
with actual type `Maybe a0'
In the return type of a call of `M.lookup'
In a stmt of a 'do' ...
3
votes
2answers
178 views
Working with Maybe a, IO a, and MaybeT IO a
I'm writing a prompt - response style system with a bunch of various combinations of Maybe a, IO a, and MaybeT IO a, and there is a lof of stuff to take into account. Some IO actions for which there ...
3
votes
1answer
134 views
Standard Haskell function :: (a -> Maybe a) -> a -> [a]
I have a function defined
maybeToList :: (a -> Maybe a) -> a -> [a]
maybeToList f x = x : maybe [] (maybeToList f) (f x)
This function seems so obvious that I can't believe it is not ...
2
votes
3answers
180 views
F# computation expression for nested Boolean tests?
I think I've got enough understanding of F# monads (workflows) that I see a few places in my code where implementing them makes sense.
For example, I've got a function with multiple nested if/thens, ...
0
votes
2answers
91 views
compile error in do block with Maybe expected
Here is my code:
getMove :: Board -> Player -> IO (Maybe (Move, Board, Player))
completeUserTurn :: Player -> Board -> Maybe (IO (Board, Player))
completeUserTurn player board = do
m ...
1
vote
1answer
70 views
haskell - function with lists involving Maybe not working
I have the following function:
-- xs: list to be changed
-- ws: list of indices where the values will change to 0
replaceAtIndices xs ws = [if (fromJust (elemIndex x xs)) `elem` ws then 0 else x | x ...
4
votes
1answer
210 views
Combine F# async and maybe computation expression
Say i want to return an Option while in an async workflow:
let run =
async {
let! x = doAsyncThing
let! y = doNextAsyncThing x
match y with
| None -> return ...
1
vote
2answers
120 views
Errorhandling and monads?
I'm trying to understand how to apply the Maybe-idiom from Haskel.. I'm reading http://en.wikibooks.org/wiki/Haskell/Understanding_monads/Maybe which shows that a lookup in a dictionary may return a ...
2
votes
1answer
522 views
Implementing boost::optional in c++11
I am experimenting with implementing boost::optional like data structure using c++11 features. Here is what I have so far :
template<typename T>
struct maybe {
bool valid;
union {
T ...
1
vote
3answers
303 views
What is Just in Haskell and why wouldn't this function work without it?
I have the following function that acts like an index operator:
let {
index :: [a]->Int->Maybe a
index [] i = error "Empty list"
index l i = if i <= ((length l) - 1) && i >= ...
3
votes
5answers
397 views
Lists defined as Maybe in Haskell? Why not?
You don't offen see Maybe List except for error-handling for example, because lists are a bit Maybe themselves: they have their own "Nothing": [] and their own "Just": (:).
I wrote a list type using ...
5
votes
1answer
201 views
Maybe monad bind function precedence
In this tutorial I've found the following snippet:
deposit :: (Num a) => a -> a -> Maybe a
deposit value account = Just (account + value)
withdraw :: (Num a,Ord a) => a -> a -> ...
0
votes
3answers
99 views
Best way to represent a maybe type in Objective C without using pointers, (a pointer to a pointer is not an object?)
What is the best way to represent a maybe type in Objective C without using pointers?
I can not simply use a pointer to a pointer to an object, because a pointer to a pointer to an object is not an ...
1
vote
1answer
195 views
How to get rid of an extra Maybe
I have a function that might fail, so the value it returns needs to be wrapped in a Maybe. It uses another function that might also fail, and that is also wrapped in a Maybe. The problem is, to get ...
3
votes
4answers
374 views
Confusion over Haskell “Nothing” value
I have recently started diving into Haskell. Its quite interesting, but the definition of Nothing baffles me and is not sinking in. On GHCI
Prelude> :t Nothing
Nothing :: Maybe a
Shouldn't ...
0
votes
1answer
380 views
Haskell Lists of Maybe Int's, convert each element to char, then String
Need help with a haskell problem thats doing my head in. I know the steps (sorta) that need to be taken to achieve want I want but I don't really know how to go about doing it.
E.g
Say I have a ...
3
votes
3answers
361 views
Haskell Int and Maybe Int
Essentially I have a function that uses Maybe Int's to display a Sudoku problem. The Solution to the Sudoku contains only Ints and the code for displaying the Grid will be almost identical, with the ...
2
votes
1answer
166 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 ...
9
votes
3answers
576 views
Accessing scala.None from Java
How can you access scala.None from Java?
The last line causes the compiler to die with "type scala.None does not take parameters".
import scala.Option;
import scala.Some;
import scala.None;
final ...
8
votes
4answers
231 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. ...
10
votes
3answers
479 views
Extracting a Maybe value in IO
Given the following:
> (liftM2 fromMaybe) (ioError $ userError "OOPS") (return $ Just "ok")
ghci gives me
*** Exception: user error (OOPS)
Of course, fromMaybe is working correctly:
> ...
4
votes
2answers
462 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
718 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> ...
6
votes
3answers
360 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 ...
4
votes
1answer
169 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();
...
8
votes
1answer
309 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) ...
15
votes
6answers
808 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
6
votes
1answer
391 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 ...
13
votes
4answers
1k 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 ...
0
votes
3answers
258 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 ...
7
votes
3answers
2k 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 ...
20
votes
2answers
2k 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 ...
11
votes
5answers
7k 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 ...
2
votes
2answers
1k 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 ...
4
votes
3answers
259 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 _ _)
...
4
votes
2answers
515 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 ...
5
votes
3answers
551 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 ...
1
vote
2answers
278 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
...
