EpilogJS
What
versus
How
 

fullindex


fullindex(expression,sentence,dataset) → sentence

The subroutine fullindex takes an expression, a sentence, and a dataset as arguments and indexes the specified sentence in the dataset on all of the constants contained in the specified expression. It returns the specified sentence as value.

Call: lambda = [] Exit: [] Call: fullindex(["p","a",["f","b"],"c"],["p","a",["f","b"],"c"],lambda)) Exit: ["p","a","b"] Call: lambda.p Exit: [["p","a",["f","b"],"c"]] Call: lambda.a Exit: [["p","a",["f","b"],"c"]] Call: lambda.f Exit: [["p","a",["f","b"],"c"]] Call: lambda.b Exit: [["p","a",["f","b"],"c"]] Call: lambda.c Exit: [["p","a",["f","b"],"c"]]



Comments and complaints to genesereth@stanford.edu.