File: shorten_trie.elpi

package info (click to toggle)
elpi 2.0.7-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 50,296 kB
  • sloc: ml: 18,791; makefile: 229; python: 95; sh: 7
file content (10 lines) | stat: -rw-r--r-- 294 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
pred std.list.map i:any, i:any.
std.list.map _ _.
pred std.string.concat1 i:any, i:any, i:any.
std.string.concat1 _ _ _.
pred std.string.escape i:any, i:any.
std.string.escape _ _.

shorten std.{list.map, string.{ concat1, escape }}.

main :- list.map F [], concat1 "a" "b" AB, escape "x y" E.