---
title: "takeOrElse"
description: "If this [Size]&nbsp;[isSpecified] then this is returned, otherwise [block] is executed and its
result is returned."
type: "function"
---

<div class='type'>Function</div>


<a id='references'></a>
<div class='sourceset sourceset-common'>Common</div>


```kotlin
inline fun Size.takeOrElse(block: () -> Size): Size
```


If this `Size`&nbsp;`isSpecified` then this is returned, otherwise `block` is executed and its
result is returned.



<div class='sourceset sourceset-common'>Common</div>


```kotlin
inline fun Offset.takeOrElse(block: () -> Offset): Offset
```


If this `Offset`&nbsp;`isSpecified` then this is returned, otherwise `block` is executed and its
result is returned.



