1.3
Three new filters: #38
--private
: return only symbols that have a_
prefix (excluding__*__
methods which are treated as public)--public
: the opposite of private - just symbols that don't have a_
prefix, but still returns__*__
methods--dunder
: return just symbols matching__*__
- should usually be used with*.*
to filter for class methods, e.g.symbex '*.*' --dunder