If the import module has several other modules, it may not be obvious where this function came from. For instance:
defmodule Aimable do import Camera import Gun def trigger do shoot
I know that there are ways to minimize such confusion: good names, targeted modules, target imports such as import Gun, only: [:shoot] , etc.
But if I come across such code, is there a way to check Aimable and see the start of the shoot function?
source share