Adds a filter to get functions that have all of the given properties.
Example
from glider import*defquery(): properties = [MethodProp.IS_PAYABLE, MethodProp.EXTERNAL]# Fetch a list of functions with all the properties functions =Functions().with_all_properties(properties).exec(10)return functions