This site requires javascript.
Android Code Search
file:androidx/core/graphics/Region.kt function:or
search
close
info_outline
more_vert
Result 1 of 1
content_copy
Search Result Root
androidx/platform/frameworks/support
keyboard_arrow_right
Branch
Branch
androidx-main
keyboard_arrow_right
Search Result Path
core/core-ktx/src/main/java/androidx/core/graphics/
Region.kt
content_copy
Preview
57:
58:
59:
60:
61:
62:
/** Return the union of this region and the specified [Rect] as a new region. */
public
inline
infix
fun
Region.
or
(r: Rect): Region = this + r
/** Return the union of this region and the specified region as a new region. */
public
inline
infix
fun
Region.
or
(r: Region): Region = this + r
75:
76:
77:
*/
public
inline
infix
fun
Region.x
or
(r: Rect): Region {
return
Region(this).apply { op(r, Region.Op.XOR) }
82:
83:
84:
*/
public
inline
infix
fun
Region.x
or
(r: Region): Region {
return
Region(this).apply { op(r, Region.Op.XOR) }
87:
88:
89:
/** Performs the given action on each rect in this region. */
public
inline
fun
Region.f
or
Each(action: (rect: Rect) -> Unit) {
val
iterator = RegionIterator(this)
99:
100:
101:
/** Returns an [Iterator] over the rects in this region. */
public
operator
fun
Region.iterat
or
(): Iterator<Rect> =
object
: Iterator<Rect> {
chevron_left
1
chevron_right
Results per page
10
We serve cookies on this site to analyze traffic, remember your preferences, and optimize your experience.
Got it
Help
Open branch androidx-main