Skip to content

Instantly share code, notes, and snippets.

View travisbrown's full-sized avatar
😎
In hiding

Travis Brown travisbrown

😎
In hiding
View GitHub Profile
@travisbrown
travisbrown / needle-in-haystack.scala
Created November 13, 2012 22:57
Digging through arbitrarily nested case classes, tuples, and lists
/**
* Digging through arbitrarily nested case classes, tuples, and lists
* by Travis Brown
*
* In response to this question by Channing Walton on the Shapeless dev list:
*
* https://groups.google.com/d/msg/shapeless-dev/hn7_U21tupI/Zm9h3uNb51gJ
*
* Tested with Scala 2.9.2 and Shapeless 1.2.3. Should work on 1.2.2 with minor edits.
*/
@travisbrown
travisbrown / iteratee-io.scala
Created November 16, 2012 20:44
BufferedReader enumerator example for Scalaz 7
import java.io.{ BufferedReader, File, FileReader }
import scalaz._, Scalaz._, effect.IO, iteratee.{ Iteratee => I, _ }
object IterateeIOExample {
type ErrorOr[A] = Either[Throwable, A]
def openFile(f: File) = IO(new BufferedReader(new FileReader(f)))
def readLine(r: BufferedReader) = IO(Option(r.readLine))
def closeReader(r: BufferedReader) = IO(r.close())
@travisbrown
travisbrown / iteratee-io.scala
Last active October 12, 2015 21:39
BufferedReader enumerator example for Scalaz 7 (with EitherT)
import java.io.{ BufferedReader, File, FileReader }
import scalaz._, Scalaz._, effect.IO, iteratee.{ Iteratee => I, _ }
object IterateeIOExample {
type ErrorOr[A] = EitherT[IO, Throwable, A]
def openFile(f: File) = IO(new BufferedReader(new FileReader(f)))
def readLine(r: BufferedReader) = IO(Option(r.readLine))
def closeReader(r: BufferedReader) = IO(r.close())
@travisbrown
travisbrown / fizzbuzz.scala
Created November 18, 2012 19:31
FizzBuzz in the type system
// Searching for large ModAux instances can be extremely slow.
// See this version for a faster solution: https://gist.github.com/4108026
import shapeless._, Nat._
trait FizzBuzz[N <: Nat] {
def steps: List[String]
def show = println(steps.reverse.mkString("\n"))
}
@travisbrown
travisbrown / fizzbuzz-faster.scala
Created November 18, 2012 23:19
FizzBuzz in the type system (faster)
import shapeless._, Nat._
trait FizzBuzz[N <: Nat] {
type R3 <: Nat
type R5 <: Nat
def ti: ToInt[N]
def prev: List[String]
def d3: R3 =:= _0
def d5: R5 =:= _0
@travisbrown
travisbrown / view-application.scala
Created November 22, 2012 14:39
Weird view application observation
import scalaz._
import scalaz.std.option._
import scalaz.syntax.functor._
trait Inc extends (Int => Int) {
implicit def incToLiftable(i: this.type): {
def lift(implicit F: Functor[Option]): Option[Int] => Option[Int]
} = implicitly[this.type => LiftV[Option, Int, Int]].apply(i)
def apply(x: Int) = x + 1
}
@travisbrown
travisbrown / macro-varargs.scala
Created December 2, 2012 22:35
Scala 2.10 macro varargs examples
/**
* Related to this question: http://stackoverflow.com/q/13663216/334519
*
* Unhelpful error message:
* scala> MacroExample.foo(List(1, 2, 3): _*)
* <console>:8: error: no `: _*' annotation allowed here
* (such annotations are only allowed in arguments to *-parameters)
* MacroExample.foo(List(1, 2, 3): _*)
* ^
*
@travisbrown
travisbrown / wrapper.scala
Created December 7, 2012 16:29
Simple macro-based wrapper example
import scala.language.experimental.macros
import scala.reflect.macros.Context
object WrapperExample {
def wrap[A](a: A): A = macro wrap_impl[A]
def wrap_impl[A: c.WeakTypeTag](c: Context)(a: c.Expr[A]) = {
import c.universe._
val wrapped = weakTypeOf[A]
@travisbrown
travisbrown / type-member-example.scala
Created December 10, 2012 10:55
Instantiating a trait with a type member in a macro
/** Instantiating a trait with a type member in a macro.
*
* Complete working example by Travis Brown for this Stack Overflow question:
* http://stackoverflow.com/q/13795490/334519
*/
import scala.language.existentials
import scala.language.experimental.macros
trait TypeBuilder { type fieldType }
@travisbrown
travisbrown / pseudo-singletons.scala
Created December 12, 2012 17:20
Constructing "singleton types" from compile-time literals with macros
/** Constructing "singleton types" from compile-time literals
*
* val x = Example.foo(42)
* val y: x.T = 42 // compiles
* val z: x.T = 43 // doesn't
*
*/
import scala.language.experimental.macros
import scala.reflect.macros.Context