30,503 reputation
14098
bio website meta.plasm.us
location Washington, DC
age
visits member for 3 years
seen 19 mins ago
stats profile views 2,578

Assistant Director at the Maryland Institute for Technology in the Humanities and graduate student in English at the University of Texas at Austin.


5h
comment Map on HList fails with subtypes of generic type in Scala & Shapeless
I can't provide a full answer at the moment, but the simplest fix is to use a view bound for S in your last version of f (i.e., S <% A[T]). Or at least that should work, and doesn't require you to add cases for every subtype of A.
1d
comment Scala variable parameter count Either
Either is just a particular sum type with two constructors. You can write your own sum types (with as many constructors as you want; aka. algebraic data types) as a set of case classes or objects that extend a sealed trait.
2d
comment How to I convert between monad stacks with transformers in scalaz 7
Why not have findFfmpeg return a plain old IO[Option[String]] action and then map into that?
May
16
answered XMLEventReader generates two EvText events for single tag
May
16
answered Scala 2.10 - Octal escape is deprecated - how to do octal idiomatically now?
May
16
comment Scala 2.10 - Octal escape is deprecated - how to do octal idiomatically now?
To quote Seth Tisue: "Octal literals are horse-and-buggy stuff". Almost nobody uses them, and almost everyone has been bitten by the bizarre fact that e.g. 021 == 17.
May
12
awarded  Announcer
May
12
comment How to capture inner matched value in indexWhere vector expression?
Note that this saves an intermediate collection by searching each inner vector twice (e indexOf num).
May
12
answered How to capture inner matched value in indexWhere vector expression?
May
11
answered Using the new reflection API, how to find the primary constructor of a class?
May
10
comment Scala type parameter error, not a member of type parameter
It's worth noting that this is called shadowing, and can be extremely annoying.
May
10
comment Scala: How to call trim on every element of a Tuple
@JörgWMittag: Agreed, in most cases, and possibly in the OP's, but sometimes you actually do want a (potentially heterogeneous) collection where the length and all the types are known at compile time, and sometimes a tuple is a perfectly respectable way of modeling such a collection, and sometimes you want to write code that works generically across similar collections of this sort.
May
10
comment Scala: How to call trim on every element of a Tuple
@MansoorAshraf: You can see an example of a (very off-the-cuff) benchmark here. My experience is the same as James's—yes, you pay for the genericity / type safety, but not as much as you might expect, because the heavy lifting happens at compile time.
May
10
awarded  Enlightened
May
10
awarded  Nice Answer
May
10
comment Scala: How to call trim on every element of a Tuple
@pedrofurla: Yep. It's also a lot of compile-time evidence that your types are correct.
May
9
answered Scala: How to call trim on every element of a Tuple
May
9
revised Where does Scala store information that cannot be represented in Java?
deleted 1 characters in body
May
9
answered Where does Scala store information that cannot be represented in Java?
May
9
comment Where does Scala store information that cannot be represented in Java?
Not quite a duplicate, but close. What you're looking for is the ScalaSig attribute, which is in fact in the byte code.