The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
1answer
156 views

Using context bounds “negatively” to ensure type class instance is absent from scope

tl;dr: How do I do something like the made up code below: def notFunctor[M[_] : Not[Functor]](m: M[_]) = s"$m is not a functor" The 'Not[Functor]', being the made up part here. I want it to ...
0
votes
0answers
66 views

Extension of scala collections with composite bounded generic types

I'm rather new to Scala, and I feel like I've jumped into the Scala deep end. I need to write a couple (err, extend) of collections (one similar to ArrayBuffer and one similar to Array) that works ...
4
votes
1answer
163 views

View bounds over higher-kinded types

I'm trying to set a view bound over a high-kinded type and I get an error message that I cannot understand. $ scala -language:higherKinds Welcome to Scala version 2.10.0 (Java HotSpot(TM) 64-Bit ...
12
votes
1answer
744 views

What are the limitations on inference of higher-kinded types in Scala?

In the following simplified sample code: case class One[A](a: A) // An identity functor case class Twice[F[_], A](a: F[A], b: F[A]) // A functor transformer type Twice1[F[_]] = ({type L[α] = Twice[F, ...
1
vote
1answer
53 views

Extend user defined higher kinded type

I have a user defined alias for a higher kinded type in scala: type FutureOfLastError = Future[LastError] I also have a value of that type: val myFuture: FutureOfLastError = ... To write ...
6
votes
1answer
121 views

OCaml: higher kinded polymorphism (abstracting over modules?)

Let's say I have a list of options: let opts = [Some 1; None; Some 4] I'd like to convert these into an option of list, such that: If the list contains None, the result is None Otherwise, the ...
7
votes
2answers
298 views

Higher-kinded types—why possible Scala but not F#? [closed]

Given that the CLR generics implementation supports more features than the JVM's, such as reification, and the JVM's generics are a mere Java "compiler trick", why are higher-kinded types not possible ...
3
votes
2answers
237 views

How to write a scalaz.IsEmpty parameter for generic types

I am trying to write a generic method that wraps anything that has an scalaz.IsEmpty typeclass instance into an Option. It should return None for empty values, and wrap it into Some if it is ...
4
votes
1answer
152 views

Pattern Matching on Promoted Types

We can write single, comprehensive instances for parameters of kind *: class MyClass d where f :: d -> Int instance MyClass (Maybe d) where f _ = 3 test1 :: Maybe d -> Int test1 x = ...
17
votes
4answers
490 views

What general structure does this type have?

While hacking something up earlier, I created the following code: newtype Callback a = Callback { unCallback :: a -> IO (Callback a) } liftCallback :: (a -> IO ()) -> Callback a ...
41
votes
2answers
790 views

values, types, kinds,… as an infinite sequence?

I'm only beginning to become familiar with the concept of kinds, so bear with me if I am not formulating my questions well... Values have Types: 3 :: Int [1,2,3] :: [Int] ('c',True) :: (Char,Bool) ...
2
votes
1answer
72 views

Casting “hollow” higher kinded type values to avoid instantiations

I caught myself watching a bit of the Scalawags#2 recording, and then there came this part about type erasure and Dick Wall pointing out that reflection will eventually bite you in the feet. So I was ...
2
votes
1answer
101 views

Accessing type constructor parameter of context bounds with higher kinded types

Is it possible to access the type constructor parameter of a higher-kinded type in a context bound? I am looking to define a trait that takes a higher-kinded type, and has a method that returns an ...
5
votes
1answer
236 views

Is general case of monad expressible in java 6?

Is general case of monad expressible in Java 6? Note the words "general case" — it may be possible that general case of monad is not expressible, although many particular cases of monad (i.e. ...
1
vote
1answer
138 views

Higher kind/type bound puzzler in Scala

I was trying to play around a bit with higher-kinds and type bounds when I bumped into this problem. My use case is that I want to be able to parameterize GenericAction instances with any subtype of ...
6
votes
4answers
321 views

What is `class A[_]` useful for?

The types of symbols class A[_] or of def a[_](x: Any) have a type parameter that can't be referenced in the body, thus I don't see where it is useful for and why it compiles. If one tries to ...
0
votes
2answers
185 views

correct way to specify generic for recursive type in scala

I use recursive types in scala when I need return from a class result with exactly same type (no variance allowed). I've meet some problems with integrating this pattern with other constructions. ...
2
votes
3answers
159 views

Templates and higher-order kinds in C++

I am trying to write a function that takes two containers of the same contained type, e.g., two std::vector<int>s, or a std::list<int> and a std::vector<int>. (But not a ...
5
votes
2answers
164 views

Why names form a kind and not just a type?

Some time ago in one of Haskell extensions (can't find the link), and recently in Ur I've found that names (e.g., of record fields) form a Kind. Can somebody explain why Type abstraction is not enough ...
1
vote
1answer
204 views

Implicit conversions not working with type parameters

I am having an issue with implicit conversions not working under certain circumstances (higher kinded types). Given a system, an expression type, and two specific expression sub types: trait Sys[ S ...
3
votes
1answer
129 views

Strange type mismatch when using member access instead of extractor

Given a tuple with elements of type A and another type parametrised in A: trait Writer[ -A ] { def write( a: A ) : Unit } case class Write[ A ]( value: A, writer: Writer[ A ]) And a use site: ...
3
votes
8answers
145 views

Delay binding of second-level type parameter

This is a bit of a contrived reproducing case, but bear with me. Suppose you want to create an adder interface for classes capable of adding items to different types of lists with the following ...
25
votes
2answers
834 views

Functions don't just have types: They ARE Types. And Kinds. And Sorts. Help put a blown mind back together

I was doing my usual "Read a chapter of LYAH before bed" routine, feeling like my brain was expanding with every code sample. At this point I was convinced that I understood the core awesomeness of ...
2
votes
1answer
136 views

Constraining higher-kinded types for a Function1's argument and result type

Given some higher-kinded types: trait Impl[ S ] trait Event[ S, A ] trait Key[ A ] How can I rewrite the following definition: def declare[ A ]( fun: Impl[ _ ] => Event[ _, A ]) : Key[ A ] = ...
2
votes
1answer
68 views

Type bounds for unapplied type parameters

How can I specify the bounds of an unapplied higher order type parameter, such that the following compiles: trait Declr[ Impl[ _ ]] // need to specify constraints for Impl's type parameter trait ...
8
votes
2answers
228 views

Scala Type-Inference For Type Constructor

I have a question regarding type-inferencing on Scala's type-constructors. I'm running Scala 2.9.1... Suppose I defined Tree: sealed trait Tree[C[_], A] case class Leaf[C[_], A](a: A) extends ...
3
votes
1answer
130 views

Manifest for higher-kinded type missing

I am having trouble with scalac not finding a manifest for a higher-kinded internal type I want to use. Consider some list like type with a constructor: trait L[ S, A ] def emptyList[ S, A : ...
7
votes
2answers
324 views

Parameterizing types by integers in Haskell

I am trying to make some Haskell types which are parametrized not by types but by elements of a type, specifically, integers. For instance, a (linear-algebra) vector in R^2 and a vector in R^3 are ...
12
votes
3answers
558 views

Is it possible to “curry” higher-kinded types in Scala?

Let's suppose I have a trait with two type parameters, e.g. trait Qux[A, B] and another trait with a higher-kinded type parameter, e.g. trait Turkle[C[_]] I'd like to be able to substitute a ...
45
votes
4answers
4k views

What is a higher kinded type in Scala?

You can find the following in the web: Higher kinded type == type constructor? class AClass[T]{...} // e.g. class List[T] some say this is a higher kinded type because it abstracts over ...
3
votes
1answer
366 views

Method-Level Higher-Kinded Types in Scala

I've just started playing around with higher-kinded types in Scala and I'm experiencing behavior that I do not understand. I'm doing all of this in the REPL on Scala 2.9.0.1. First I create a ...
4
votes
2answers
262 views

In Scala, why can’t I use a context bound for type constructors? [duplicate]

Possible Duplicate: Context bounds shortcut with higher kinded-types Why doesn't the Scala compiler let me write this? class TypeCtor[M[_]: ClassManifest] It complains with “error: type ...
1
vote
2answers
139 views

Higher order polymorphism + value types

I've read somewhere that the higher order polymorphism cannot be used/implemented in the type systems with the value types (like .NET). Is it right and why?
6
votes
2answers
813 views

Context bounds shortcut with higher kinded-types

Is it possible to use the context bounds syntax shortcut with higher kinded-types? trait One { def test[ W : ClassManifest ] : Unit } // first-order ok trait Two { def test[ W[ _ ] : ClassManifest ] ...
4
votes
2answers
321 views

Problem partially applying type parameters

I'm desperately trying to solve the following: trait Access[ Res[ _ ]] { def access[ C ] : Res[ C ]} trait CList[ C1, A ] extends Access[ CList[ _, A ]] // ?! def test[ C1, C2, A ]( c: CList[ C1, A ...
4
votes
1answer
140 views

Generalizing a collection method

If I want to generalize the following method to all collection types that support all the necessary operations (foldLeft, flatMap, map, and :+) then how do I do it? Currently it only works with lists. ...
2
votes
1answer
629 views

Scala: Type inference and subtypes/higher-kinded-types

I've been playing around with Scalaz to get a little bit of the haskell feeling into scala. To understand how things work in scala I started implementing various algebraic structures myself and came ...
3
votes
2answers
672 views

How to use a wildcard for a higher-kinded type in Scala?

let's say i have this trait trait Ctx[ C, V[ _ ]] i am unable to construct any method signature that takes a Ctx of which the second type parameter is unspecified (wildcard). e.g. this: def test( ...
7
votes
2answers
596 views

Implicit parameter resolution for higher kinded types

Consider the following code: object foo { trait Bar[Q[_]] implicit object OptionBar extends Bar[Option] def test[T, C[_]](c: C[T])(implicit bar: Bar[C]) = () def main(args: ...
12
votes
3answers
774 views

Can we define a higher-kinded type-level identity function in Scala?

In Scala we can define the type-level identity function for lower-kinded types like so, type Id[A] = A Can we also define something similar for higher-kinded types? Ie. can we fill in the blanks ...
13
votes
3answers
772 views

What are uses of polymorphic kinds?

Polymorphic kinds are an extension to Haskell's type system, supported by UHC, allowing data A x y = A (y x) to be typed (kinded?) as a -> (a -> *) -> *. What are they useful for?
4
votes
1answer
470 views

Is variance of for generic type parameters in C# 4.0 a step closer for higher kind types?

We know that implementing classes are still invariant, despite the fact that their interfaces are variant. However I am inquiring, is cov/contravariance a step closer to parametric polymorphism or ...
15
votes
3answers
474 views

Minimal framework in Scala for collections with inheriting return type

Suppose one wants to build a novel generic class, Novel[A]. This class will contain lots of useful methods--perhaps it is a type of collection--and therefore you want to subclass it. But you want ...
7
votes
3answers
1k views

Common practice for higher-order-polymorphism in scala

I'm trying to grasp higher-order-polymophism in scala by implementing a very basic interface that describes a monad but I come across a problem that I don't really understand. I implemented the same ...
12
votes
4answers
746 views

Higher-kinded Types with C++

This question is for the people who know both Haskell (or any other functional language that supports Higher-kinded Types) and C++... Is it possible to model higher kinded types using C++ templates? ...
6
votes
1answer
476 views

Haskell - specifying kind in data declaration

In this declaration data Const a = Const Integer Haskell infers that Const is * -> *. Is it possible to make Const take a type constructor instead, so it will be (* -> *) -> *? Ideally, it ...
19
votes
4answers
1k views

Higher-kinded generics in Java

Suppose I have the following class: public class FixExpr { Expr<FixExpr> in; } Now I want to introduce a generic argument, abstracting over the use of Expr: public class Fix<F> { ...