summaryrefslogtreecommitdiff
path: root/ipl/procs/everycat.icn
blob: 1ecbe733a7c9dd3a20c3c2d33edb68eb524d58ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
############################################################################
#
#	File:     everycat.icn
#
#	Subject:  Procedure for generating all concatenations
#
#	Author:   Ralph E. Griswold
#
#	Date:     April 25, 1992
#
############################################################################
#
#   This file is in the public domain.
#
############################################################################
#
#   everycat(x1, x2, ...) generates the concatenation of every string
#   from !x1, !x2, ... .
#
#   For example, if
#
#	first := ["Mary", "Joe", "Sandra"]
#	last := ["Smith", "Roberts"]
#
#   then
#
#	every write(everycat(first, " ", last))
#
#   writes
#
#	Mary Smith
#	Mary Roberts
#	Joe Smith
#	Joe Roberts
#	Sandra Smith
#	Sandra Roberts
#
#  Note that x1, x2, ... can be any values for which !x1, !x2, ... produce
#  strings or values convertible to strings.  In particular, in the example
#  above, the second argument is a one-character string " ", so that !" "
#  generates a single blank.
#
############################################################################

procedure everycat(args[])
   local arg

   arg := get(args) | fail

   if *args = 0 then
      suspend !arg
   else
      suspend !arg || everycat ! args

end