support extra axis for streams

This commit is contained in:
Mark Harrah 2011-05-07 22:02:06 -04:00
parent 7c2880915d
commit 13a0c155df
1 changed files with 2 additions and 2 deletions

View File

@ -72,9 +72,9 @@ private class BasicAttributeMap(private val backing: Map[AttributeKey[_], Any])
}
// type inference required less generality
final case class AttributeEntry[T](a: AttributeKey[T], b: T)
final case class AttributeEntry[T](key: AttributeKey[T], value: T)
{
override def toString = a.label + ": " + b
override def toString = key.label + ": " + value
}
final case class Attributed[D](data: D)(val metadata: AttributeMap)