IS_MOUNT is filepath a mount path

Contents

inputs

Outputs

Examples:

function [ok, b] = is_mount(file, backend)
arguments
  file string
  backend (1,:) string = ["python", "sys"]
end

o = stdlib.Backend(mfilename(), backend);

if isscalar(file)
  ok = o.func(file);
else
  ok = arrayfun(o.func, file);
end

b = o.backend;

end