2010-06-01 14:38:56 +02:00
|
|
|
/* sbt -- Simple Build Tool
|
|
|
|
|
* Copyright 2010 Mark Harrah
|
|
|
|
|
*/
|
2010-05-31 03:14:18 +02:00
|
|
|
package sbt
|
|
|
|
|
|
|
|
|
|
import Types._
|
|
|
|
|
|
|
|
|
|
trait Node[A[_], T]
|
|
|
|
|
{
|
2010-06-25 00:09:07 +02:00
|
|
|
type Mixed <: HList
|
2010-06-10 14:17:51 +02:00
|
|
|
type Uniform
|
2010-05-31 03:14:18 +02:00
|
|
|
|
2010-06-25 00:09:07 +02:00
|
|
|
val mixedIn: KList[A, Mixed]
|
2010-06-10 14:17:51 +02:00
|
|
|
val uniformIn: Seq[A[Uniform]]
|
2010-05-31 03:14:18 +02:00
|
|
|
|
2010-06-25 00:09:07 +02:00
|
|
|
def work(mixed: KList[Result, Mixed], uniform: Seq[Result[Uniform]]): Either[A[T], T]
|
2010-05-31 03:14:18 +02:00
|
|
|
}
|