StyleF

final class StyleF[I](val f: I => StyleS, val domain: Domain[I]) extends Style1

A function to a style. A style that depends on input provided when used.

Type Params
I

Input required by the style.

Value Params
domain

The function domain. All possible (or legal) inputs to this function.

Companion
object
class Style1
trait Style
class Object
trait Matchable
class Any

Value members

Concrete methods

def compose(r: StyleS)(implicit c: Compose): StyleF[I]
def compose[J](r: StyleF[J])(implicit c: Compose): StyleF[(I, J)]
def compose[J](r: P[J])(implicit c: Compose): Domain[J] => StyleF[(I, J)]
def mod(g: StyleS => StyleS): StyleF[I]

Concrete fields

val domain: Domain[I]
val f: I => StyleS