I'm realizing that I've been using .list() to query objects. But all the
examples in the docs talk about .all().
What's the difference ? Should I switch to .all() rather than .list() ?
Will list be deprecated in 0.4 ?
Regards,
--
Alexandre CONRAD
> I'm realizing that I've been using .list() to query objects. But all the
> examples in the docs talk about .all().
>
> What's the difference ? Should I switch to .all() rather than .list() ?
> Will list be deprecated in 0.4 ?
Exactly. list() is the old way, all() is the 0.4 way.
--
Gaëtan de Menten
http://openhex.org
Thanks Gaetan, I'll clean up my code to be compliant with 0.4.
Regards,
--
Alexandre CONRAD
.list() is the "old new" way, or short-lived new way. .all() is the
"real" new way.
--
Mike Orr <slugg...@gmail.com>