-
Notifications
You must be signed in to change notification settings - Fork 182
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Method name collision with kotlin reserved word #638
Comments
@artem-zinnatullin what do you think about adding alias method for |
I'd just add extension function in the project that uses StorIO :) On Thu, 21 Jul 2016, 22:48 Ilya Zorin, [email protected] wrote:
|
Ok, since Kotlin is now an official Android language we need to actually resolve this in 2.0.0 |
@artem-zinnatullin could you provide example of that extension function, please? |
Something like this should work: fun <T> PreparedGetObject.Builder<T>.kobject(type: Class<T>) = this.`object(type)` |
Methods
Prepared*.object
have collision with kotlinobject
reserved word. It's kind of ugly be calling this waystorIOSQLite.delete().
object(toDelete)
The text was updated successfully, but these errors were encountered: