&< — Returns TRUE if A's bounding box is to the left of B's.
boolean &<(
                  raster 
                  A
                , 
                  raster 
                  B
                );
The &< operator returns TRUE if the bounding box of raster A
            overlaps or is to the left of the bounding box of raster B, or more accurately, overlaps or is NOT to the right
            of the bounding box of raster B.
                 
               | 
              |
| 
                 This operand will make use of any indexes that may be available on the rasters.  | 
            
SELECT A.rid As a_rid, B.rid As b_rid, A.rast &< B.rast As overleft
 FROM dummy_rast AS A CROSS JOIN dummy_rast AS B;
a_rid | b_rid | overleft
------+-------+----------
    2 |     2 | t
    2 |     3 | f
    2 |     1 | f
    3 |     2 | t
    3 |     3 | t
    3 |     1 | f
    1 |     2 | t
    1 |     3 | t
    1 |     1 | t