Searching for an interface and a method in an interface can be slow. Especially when calling the same method multiple times in a loop, for example in order to affect multiple vertices, faces, normals, objects etc., performance can decrease significantly.
To speed up access to methods in interfaces, you can let MAXScript search for the interface and method once and then access the method directly in the loop.
This way, the required interface and method will be searched for just once, and then accessed directly multiple times in the loop without searching.
In this case, the interface will be searched for just once, but the method will be searched for multiple times. If you intend to access many methods from the same interface, this way would be still faster than searching for both interface and method inside the loop.