Go to reference
get
operator fun <E> Attribute<List<E>>.get(index: Attribute<Int>): Attribute<E>
operator fun <E> Attribute<List<E>>.get(index: Int): Attribute<E>
Same as get, but accepts Attribute and returns a new Attribute.
Calling this function is equivalent to use transform and calling get in the transformation function.
This is simply a convenience function.
See Also
operator fun <K, V> Attribute<Map<in K, V>>.get(key: K): Attribute<V?>
operator fun <K, V> Attribute<Map<in K, V>>.get(key: Attribute<K>): Attribute<V?>
Same as get, but accepts Attribute and returns a new Attribute.
Calling this function is equivalent to use transform and calling get in the transformation function.
This is simply a convenience function.
See Also
operator fun Attribute<MatchGroupCollection>.get(index: Attribute<Int>): Attribute<MatchGroup?>
operator fun Attribute<MatchGroupCollection>.get(index: Int): Attribute<MatchGroup?>
Same as get, but accepts Attribute and returns a new Attribute.
Calling this function is equivalent to use transform and calling get in the transformation function.
This is simply a convenience function.
See Also
kotlin.text.MatchGroupCollection.get
operator fun Attribute<MatchNamedGroupCollection>.get(name: Attribute<String>): Attribute<MatchGroup?>
operator fun Attribute<MatchNamedGroupCollection>.get(name: String): Attribute<MatchGroup?>
Same as get, but accepts Attribute and returns a new Attribute.
Calling this function is equivalent to use transform and calling get in the transformation function.
This is simply a convenience function.
See Also
kotlin.text.MatchNamedGroupCollection.get
operator fun Attribute<String>.get(index: Attribute<Int>): Attribute<Char>
operator fun Attribute<String>.get(index: Int): Attribute<Char>
Same as get, but accepts Attribute and returns a new Attribute.
Calling this function is equivalent to use transform and calling get in the transformation function.
This is simply a convenience function.
See Also