Is it possible to search the Interface of a certain type/abstract type?

Many abstract type or type have a list of required functions, (like AbstractArray) will it be possible to search them rather than using methodswith which gives you all the methods that use this type.

1 Like

Julia does not have a formal specification for interfaces (at the moment). They should be documented, eg as in Base, and your best bet is reading that documentation.

I see. Thanks!