Navigation
Synopsis Read a file in Rigi Standard Format (RSF).
Function map[str, rel[str,str]] readRSF(str nameRSFFile) throws IO(str msg)
Usage import lang::RSF::IO;
Description Since an RSF file may define more than one relation, a mapping from relation name to relation value is returned.
Examples For the RSF file:
call    main          printf  
call    main          listcreate  
data    main          FILE  
data    listcreate    List
readRSF will create the following map:
("call" : {<"main", "printf">, <"main", "listcreate">},
 "data" : {<"main", "FILE">, <"listcreate", "List">})
Is this page unclear, or have you spotted an error? Please add a comment below and help us to improve it. For all other questions and remarks, visit ask.rascal-mpl.org.