I hereby claim:
- I am perwiklander on github.
- I am perwiklander (https://keybase.io/perwiklander) on keybase.
- I have a public key ASDRshJJr1jeKLkVHin6yB-Vu7bvkdrCvqZVRJ-qarjV8go
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
package scalatags.Text | |
import scalatags.Text.Aggregate | |
import scalatags.Text.attrs._ | |
trait ClassSet extends Aggregate { | |
final def compositeAttr[A](k: Attr, f: (A, List[A]) => A, e: => Modifier) = new CompositeAttr(k, f, e) | |
val classSwitch = compositeAttr[String](cls, (h, t) => (h::t).mkString(" ").trim, cls:="") |
import scalaz.effect.IO | |
trait ItemSelector[ItemType] extends StatefulWidget[ | |
ItemSelectorProps[ItemType], | |
ItemSelectorState[ItemType] | |
] | |
{ | |
override def initialState = P => ItemSelectorState(P.selected) | |
} | |
case class ItemSelectorProps[ItemType]( |
package flux | |
import utils.Loggable | |
import scala.concurrent.Future | |
class Dispatcher[Payload <: AnyRef] extends Loggable { | |
type Callback = (Payload) => Unit |
package biz.wiklander.tools; | |
import java.util.Arrays; | |
public class StringArrayColumnPrinter { | |
public static void main(final String[] args) { | |
final String[] words = new String[] { | |
"one", | |
"duck", |