2
votes
6answers
108 views

How to restrict a tuple?

I think tuples in Haskell are like tuple :: (a,b) which means a and b can be the same type or can be diffrent types so if i define a function without giving the type for it then i will get ...
5
votes
4answers
104 views

Return one of two types of same typeclass

I have the following type class class MyClass c where aFunction :: c -> Bool and two instances for two different data types data MyDataType1 = MyDataType1 instance MyClass MyDataType1 where ...
1
vote
1answer
42 views

How to tell what type the DynamicImage loaded by Codec.Picture is

I am trying to load a PNG using the JuicyPixels library and I am able to do this successfully but I then can't figure out what type the underlying image is. In the library the DynamicImage is defined ...
1
vote
1answer
57 views

Overlapping instance in haskell

I'm reading code of the HList library. There is an HBetween class which is a type level function taking a HNat n and return a list of HNats forming a range [HZero, n). I want to implement an other ...
2
votes
2answers
97 views

Haskell: Using RankNTypes to fold a record constructor

import Data.ConfigFile data Test = Test { field1 :: Int , field2 :: Bool , field3 :: String } deriving (Show) whatMyConfigLooksLike = [ ("field1", "5") , ("field2", "True") , ...
12
votes
2answers
243 views

How to design a monadic stack?

how do you design and build your monadic stacks? For the first time I need to build a monadic stack (using transformers) to solve a real world problem, but I'm not thoroughly sure in which order stack ...
1
vote
2answers
90 views

setTitle with IO String results in type error

I am trying the set the title of a web page to a string containing the current year, like this: getCurrentYear :: IO String getCurrentYear = do now <- getCurrentTime let today = utctDay ...
8
votes
1answer
122 views

Can Haskell Data Declarations Be Bounded By Type Values

In Haskell, is there a way to limit a data type by the value of its components? I've drafted an example. Say you have a checkers game. A checker is either of the Black or White type. data ...
2
votes
1answer
88 views

Haskell - Types, Enums, and Functions

Good morning everyone, Here's what I'm working on today, and the issue I'm running in to: --A data Row = A | B | C | D | E | F | G | H | I | J deriving (Enum, Ord, Show, Bounded, Eq, Read) data ...
14
votes
0answers
277 views

Why does ghci desugar type lists and type families? Can this be selectively disabled?

I'm trying to make the types ghci displays for my libraries as intuitive as possible, but I'm running into a lot of difficulties when using more advanced type features. Let's say I have this code in ...
3
votes
2answers
99 views

Haskell: How to stop program printing Left or Right

I've made a calculator in haskell which I run from within GHCi. However since the final number can be an integer or double I've made the type declaration calc :: String -> Either Integer Double ...
3
votes
2answers
81 views

Haskell Variadic Function & Instance Declarations

I was attempting to understand the example given at this question about variadic functions and tried to modify the code from: class SumRes r where sumOf :: Integer -> r instance SumRes ...
13
votes
2answers
184 views

GADT's failed exhaustiveness checking

Consider the following code: data (:+:) f g a = Inl (f a) | Inr (g a) data A data B data Foo l where Foo :: Foo A data Bar l where Bar :: Bar B type Sig = Foo :+: Bar fun :: Sig B -> Int ...
1
vote
2answers
105 views

Haskell function composition, type of (.)(.) and how it's presented

So i know that: (.) = (f.g) x = f (g x) And it's type is (B->C)->(A->B)->A->C But what about: (.)(.) = _? = _? How this is represented? I thought of: (.)(.) = (f.g)(f.g)x = f(g(f(g x))) // this ...
4
votes
1answer
89 views

Dependently typed 'ZipVector' Applicatives

I've made myself a "ZipVector" style Applicative on finite Vectors which uses a sum type to glue finite vectors to Units which model "infinite" vectors. data ZipVector a = Unit a | ZipVector (Vector ...
3
votes
3answers
87 views

Haskell type of specific data constructor

Suppose I have the following Haskell code: data Option = Help | Opt1 Int Double String -- more options would be here in a real case handleOption :: Option -> IO () handleOption option ...
8
votes
1answer
157 views

Haskell polymorphic calls without complete type knowledge

I'm studying Haskell since a little while, so I'm a newbie. The following code is very easily understandable: purStrLn $ show [1] Here we can infer all the types (with defaults), and all works ...
1
vote
2answers
109 views

Int and Num type of haskell

I have below code to take the args to set some offset time. setOffsetTime :: (Ord a, Num b)=>[a] -> b setOffsetTime [] = 200 setOffsetTime (x:xs) = read x::Int But compiler says "Could not ...
1
vote
1answer
97 views

Haskell- Type matching

I having trouble getting the output from a helper function to match my output of the function I am using the code below: getSemiDiag :: [[Maybe Player]] -> Int -> Int -> [Maybe Player] ...
6
votes
1answer
105 views

Haskell - Ambiguous type variable, why?

Why does the following compile: {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE OverlappingInstances #-} class IsList a where isList :: a -> Bool instance IsList a where isList x = False ...
5
votes
2answers
84 views

Haskell Overlapping/Incoherent Instances

I know this is code is a bit silly, but can someone explain why this isList [42] returns True whereas isList2 [42] prints False, and how to prevent this? I'd like to get better understanding of some ...
3
votes
1answer
82 views

Haskell Error - Couldn't match expected type

i want to write a function for building a list of random numbers and here comes the code ive written buildlist :: Int -> Int -> [Int] buildlist n m = do seed <- getStdGen let l = ...
3
votes
2answers
141 views

Define Haskell type constructor equality?

I'm not meaning as a member of Eq. My code: data Race = Terran | Zerg | Protoss deriving (Eq, Show, Read); data MU = MU Race Race deriving (Eq, Show); In this case I define for instance (MU Terran ...
3
votes
3answers
130 views

Haskell data type function parameter

What is the significance of the parenthesis in a function definition in Haskell with respect to the data type of parameters. For example: doStuff Name -> Age -> String doStuff (NameConstr a) ...
2
votes
1answer
132 views

Type A is not equal to type A in Haskell (ghci interpreter)?

GHCi is telling me that type A is not type A. Why? >>> data A = A >>> let x = A >>> let id A = A >>> >>> data A = A >>> let x' = A >>> ...
0
votes
1answer
115 views

How do I create a Haskell class instance including a predefined type?

I am trying to create a Haskell class instance that includes a predefined type, but I keep getting this error: " Illegal instance declaration for Graph (AdjListGraph a)' (All instance types must be ...
1
vote
1answer
70 views

Haskell type enforcement on typeclass parameters

I am trying to follow along a machine learning book and knowing a bit about the future content I am trying make my code generalisable. Here is my code. I will eventually have other instances of ...
5
votes
4answers
127 views

Why can't I map a function that multiplies by a Fractional onto a list of Nums?

I want to make a list of numbers every 0.1 from -150 to 150. To do this, I created a list, and then tried to map a Fractional multiplication lambda onto it, like so: let indices = ...
0
votes
2answers
72 views

Haskell - An error related to types

I have these functions in a Haskell file and they work fine : func1 :: Integer -> (Integer,Integer) -> [[String]] -> ([Char],[Char],[Char],[Char]) -> (Integer,Integer) func1 distance ...
1
vote
1answer
62 views

The Type signature lacks an appropriate binding [Haskell]

I have been googling around to find the answer, and even came to a few questions asked here. It seems that this is an ambiguous error and I can't figure out how to solve it in my instance. The ...
1
vote
1answer
143 views

Changing function type in Haskell

I have a function which has this type by default : func :: Integer -> (Integer,Integer) -> [[String]] -> ([Char],[Char],[Char],[Char]) -> (Integer,Integer) But I want it to return ...
3
votes
2answers
109 views

Haskell where type declaration

I'm new to Haskell and having trouble with the type system. I have the following function: threshold price qty categorySize | total < categorySize = "Total: " ++ total ++ " is low" | ...
1
vote
1answer
61 views

How to use a parameterised instance decleration (Data.Binary)?

From Data.Binary: instance (Binary e) => Binary (IntMap.IntMap e) where put = put . IntMap.toAscList get = liftM IntMap.fromDistinctAscList get I thought this meant that any IntMap ...
0
votes
2answers
103 views

Creating a lowercase constant of a particular type in Haskell

For example, how to define a lowercase constant "corn" of an already existing datatype [Vegetables]? I have tried using type corn = [Vegetables] but it produced a "Malformed head of type and or ...
2
votes
2answers
152 views

Matching playing cards' suits and ranks in Haskell

I need some help with the implementation of a Haskell function which should do playing cards matching - i.e. "Ace of Spades","2 of Diamonds", "Jack of Hearts". Note that the plural for "s" cannot be ...
3
votes
3answers
104 views

Making a custom datatype ord-able

Can someone explain to me how do I make a custom data type ord-able? ** I'm not allowed to make modifications to Suit itself, eg. deriving (Eq, Ord) data Suit = Clubs | Diamonds | Hearts | Spades ...
1
vote
2answers
129 views

Haskell “Could not deduce”, “Non type-variable argument”

From my previous question, I've been trying to work out some monadic code. To start, here is a state machine function I'm using: import Control.Monad import Control.Monad.Error newtype FSM m = FSM { ...
4
votes
1answer
120 views

Haskell Infinite Type

I'm trying to get the code below working. It's a finite state machine where I pass in a function-as-next-state. The function is called with r and returns a list of results + the next function-as-next ...
2
votes
1answer
137 views

Haskell Int type conversion

1) How do you convert from one Int type to a Num type? Similar questions have been asked before and the answer has been (as is on the Haskell wiki) is to use fromIntegral. fromIntegral returns a Num ...
8
votes
1answer
200 views

Haskell/Parsec: how do I use Text.Parsec.Token with Text.Parsec.Indent (from the indents package)

The indents package for Haskell's Parsec provides a way to parse indentation-style languages (like Haskell and Python). It redefines the Parser type, so how do you use the token parser functions ...
-2
votes
2answers
131 views

In Haskell, can you create an object of a class?

In a Haskell program I'm trying to debug, there is a class defined: class Dictionary d where lookupIn :: d -> Word -> String I'd like to create a variable called runs and make it of type ...
3
votes
1answer
117 views

Extract all occurences of a particular type in Haskell

I am writing some programs in Haskell which manipulate Haskell source code in certain ways. One of the things I would like to be able to do is to extract all occurrences of a particular type (and ...
1
vote
3answers
69 views

Getting the desired data from list

data SomeData = A Int | B Int | C Int list :: [SomeData] list = [ A 1, B 2, C 3] wantedData = filter (?) list -- wantedData is A 1 For the code above, what function ...
2
votes
2answers
93 views

Difference between similarly parenthesized function types

I'm really stuck with functions types in Haskell. There are the types of two functions given and I cannot explain what's the real difference between those. a :: Int -> (Int -> (Int -> (Int ...
5
votes
4answers
221 views

What is the optimal way of representing a floating point number in a range from 0 to 1?

I'm looking for a numeric type able to represent, say, a value 0.213123 or 0.0, or 1.0, but refusing the out of range values, such as -0.2123 and 1.2312. Does there exist a specific type fitting that ...
0
votes
1answer
82 views

Haskell - types/pattern matching

the following code does not compile. I get a type error. I thought this would be the nicer version, as it clearly seperates the two different cases... The function is supposed to help decide whether a ...
36
votes
2answers
1k views

Why is (a,b,c,d) not sugar for (a,(b,(c,(d,()))))?

It's clear that any n-tuple can be represented by a bunch of nested 2-tuples. So why are they not the same thing in Haskell? Would this break something? Making these types equivalent would make ...
2
votes
1answer
129 views

Return Type as a result of Term or Value calculation

I'm trying to get a good grasp on Kinds, Types & Terms(or Values, not sure which is correct) and the GHC extensions for manipulating them. I understand that we can use TypeFamilies to write ...
2
votes
3answers
102 views

Type error related to fractions

Im trying to figure out whats wrong. Seems like something wrong with types, but the same expression alone works fine. Here is the code: a = [9, 4, 12, 0, -6, 16] :: [Int] qsort:: [Int] -> [Int] ...
45
votes
4answers
3k views

Why is there “data” and “newtype” in Haskell?

To me it seems that a newtype definition is just a data definition that obeys some restrictions (only one constructor and such), and that due to these restrictions the runtime system can handle ...

1 2 3 4 5 13