If I want to describe the time complexity of an operation that isn't performed in some program, how could I do this? For example, given the following trivial function:
def trivial():
return
How could I describe the upper bound on the time consumed by calling Sort? Could I say that the time required by calling Sort is O(0)? This seems to be true given the definition of O-notation.