mirror of
https://github.com/InsanusMokrassar/JSUIKitKBindings.git
synced 2024-11-10 10:23:58 +00:00
AttributesCollection#plus
This commit is contained in:
parent
a2eda2726b
commit
031d07d97a
@ -3,6 +3,7 @@
|
||||
## 0.0.38
|
||||
|
||||
* Add support of `Toggle`
|
||||
* Attributes collection now can be concatenated
|
||||
|
||||
## 0.0.37
|
||||
|
||||
|
@ -15,6 +15,13 @@ class AttributesCollection<T : Element> (
|
||||
attrs()
|
||||
}
|
||||
|
||||
operator fun plus(other: AttributesCollection<T>) = AttributesCollection<T>(
|
||||
*(modifiers + other.modifiers).distinct().toTypedArray()
|
||||
) {
|
||||
this@AttributesCollection.attrs.invoke(this)
|
||||
other.attrs.invoke(this)
|
||||
}
|
||||
|
||||
companion object {
|
||||
val Empty = Attrs<Element>()
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user