Created
March 18, 2013 03:13
-
-
Save yamasushi/5184775 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| ; if-sxpath , if-car-sxpath が名前空間を渡せないので作った補助 | |
| (define-module sxpath-helper (extend sxml.sxpath) | |
| (use komono-base) | |
| (export if-car-sxpath if-sxpath ) | |
| ) | |
| (select-module sxpath-helper) | |
| (define (if-sxpath xpath :optional (ns '())) | |
| (if-listfn$ (sxpath xpath ns) ) ) | |
| (define (if-car-sxpath xpath :optional (ns '())) | |
| (if-car-listfn$ (sxpath xpath ns) ) ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment