RemoteRope.mesa
Copyright
© 1985 by Xerox Corporation. All rights reserved.
Russ Atkinson, February 11, 1985 12:18:52 pm PST
Paul Rovner, May 31, 1983 4:01 pm
DIRECTORY
Rope
USING [
ROPE],
AMTypes
USING [
TV];
RemoteRope:
CEDAR
DEFINITIONS =
BEGIN
OPEN Rope, AMTypes;
RopeFromTV:
PROC [tv:
TV]
RETURNS [
ROPE];
creates a user-variant rope from a TV for a rope
RemoteLength:
PROC [tv:
TV]
RETURNS [
INT];
gets the length of a rope given a TV for the rope
RemoteFetch:
PUBLIC
PROC [tv:
TV, index:
INT]
RETURNS [
CHAR];
fetches a character from a rope given a TV for the rope
END.