ArgumentPoints.list()
Convert ArgumentPoints to List[ArgumentPoint]
list() ->
APIList
[
ArgumentPoint
]
Query Example
from glider import *
def query():
functions = (
Functions()
.with_name("transferFrom")
.exec(1)
)
arguments = functions[0].arguments()
print(f"Arguments: {arguments}")
print(f"List of arguments: {arguments.list()}")
return functions
Output Example

Last updated