In <https://github.com/cashapp/exhaustive> the sec...
# squarelibraries
c
In https://github.com/cashapp/exhaustive the section exploring other options is super handy. "Library trailing property" Is denoted as this
Copy code
@Suppress("unused") // Receiver reference forces when into expression form.
inline val Any?.exhaustive get() = Unit
but a Con listed is "Requires a library". Just trying to make sure something is not going over my head. "Requires a library" means that I need to add these two lines of code myself (or a library that adds this ext function) right? Or is it saying that you actually need to use some library to use this method?