Im looking through a project's code and one of their function's return statements reads
return null!;
What does "!" after null mean? Also, when I rewrite it like:
return !null;
I get a linting error
Im looking through a project's code and one of their function's return statements reads
return null!;
What does "!" after null mean? Also, when I rewrite it like:
return !null;
I get a linting error