語言選擇:
免費網上英漢字典|3Dict

higherorder macro

資料來源 : Free On-Line Dictionary of Computing

higher-order macro
     
        A means of expressing certain {higher-order function}s in a
        first order language.  Proposed by Phil Wadler.  Higher-order
        macros cannot be recursive at the top level but they may
        contain recursive definitions.  E.g.
     
        	map f l = m l
        		  where
        		  m []	   = []
        		  m (x:xs) = f x : m xs
     
        Expanding a call to this macro is equivalent to specialising a
        call to map in its first argument.
     
        See {partial evaluation}.
依字母排序 : A B C D E F G H I J K L M N O P Q R S T U V W X Y Z