Created
September 11, 2014 18:58
-
-
Save joemfb/164f4be4f8f669d5da1a to your computer and use it in GitHub Desktop.
XQuery function info in MarkLogic
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
xquery version "1.0-ml"; | |
declare function local:fn-info($fn) | |
{ | |
xdmp:function-name($fn), | |
xdmp:function-signature($fn), | |
xdmp:function-module($fn) | |
}; | |
local:fn-info( cts:special#1 ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment