package cliopts
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- cliopts
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- type Setter[T, B] = ((B) => B, T) => T
A lens-style setter.
A lens-style setter. When you want nested structures to be possible, this is vastly superior to the more obvious
(B, T) => T
, because unlike that one, this form permits nesting via trivial composition.