yeh but in all this, i would like to ask Input is:
given the state of inputs in the system, please return to me all possible actions that would return is just pressed (or similar).
instead of asking "is this action pressed" i want to ask "which actions are currently just pressed (etc)"
the motivation is for input handling masking. namely i want to ignore some input map actions when I flag that mapped input as masked (by dropping the string name into a dictionary).
Currently I have a large chained if / ifel chain checking for each and every mapped input 'action' and will likely wrap Input.is_just_pressed with a checker and just do it that way.
normally i am used to an input system that uses the Observer pattern. binding response functions to the specific event.