Question: How to place a maple procedure inline

I have a procedure I need to place Inline and am not sure how to do this. 


proc(N,F) local i, j, RV;
       RV:=NULL;
       for i from 1 to N do for j from 1 to N do
            if F(i,j) then RV:=RV,[i,j] ; end if ;
       end do ; end do ;
       return RV ;
   end proc ;

The problem is to do this inline, i.e. 

(i,j)-> ... 


Thanks in advance. 

Please Wait...