Callables.without_names()
Functions Example
from glider import *
def query():
# Retrieve all functions that are not named `_msgSender` and `_msgData`
functions = Functions().without_names(["_msgSender", "_msgData"]).exec(100)
# Return the first five functions
return functions[:5]
Modifiers Example

Last updated