How do I access the IntRange instance from within ...
# getting-started
a
How do I access the IntRange instance from within the ExposureSelector function>?
t
Yes that's right. The IntRange instance - the receiver - will be 'this' in the context of the function. (See https://kotlinlang.org/docs/reference/lambdas.html#function-literals-with-receiver )
m
this