The function returns a boolean. Therefore, I am simply returning the results of the logical test (l_Exists_Flg = 1). This is simply a shortcut version of
Code:
IF (l_Exists_Flg = 1) THEN
   RETURN TRUE;
ELSE
   RETURN FALSE;
END IF;
Make sense?

- Chris