Question about this bit of code: ```fun Float.conv...
# android
v
Question about this bit of code:
Copy code
fun Float.convertDpToPx(): Float = this * Resources.getSystem().displayMetrics.density
What is that technique called where its structured
fun <TYPE>.<FUNCTION_NAME>(...).....
. Is this called a class extension?
e