Returns the Contracts object for the contracts of the callables. This method can be called on all Callables child classes: Functions and Modifiers.
The function will account for the inheritance of the contracts, thus, even one callable can have multiple contracts where it is accessible.
Functions Example
from glider import*defquery():# Retrieve the contracts of a list of functions contracts =Functions().contracts().exec(100)# Return the first five contractsreturn contracts[:5]
from glider import*defquery():# Retrieve the contracts of a list of modifiers contracts =Modifiers().contracts().exec(100)# Return the first five contractsreturn contracts[0:5]