for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
class Query:
# TODO: Build a structure that extends the current cursor and allows for objectification
# constructor
def __init__(self, query):
self.query = query
# destructor
def __del__(self):
pass
# types
def __bool__(self):
def __bytes__(self):
def __str__(self):
# conversions
def __format__(self, format_spec):
def __repr__(self):
# comparisons
def __lt__(self, other):
def __le__(self, other):
def __eq__(self, other):
def __ne__(self, other):
def __gt__(self, other):
def __ge__(self, other):
# iterations
def __len__(self):
def __contains__(self, item):
def __next__(self):
def __reversed__(self):
# chain wrappers
def count(self):
def limit(self):
def sort(self):