R/match.R

getCSSRules =
function(nodes, sheet, eng = NULL) # selectionEngine()  
{
  if(length(nodes) > 1)
    return(lapply(nodes,
            function(x) {
              getCSSRules(x, sheet, eng)
            }))

  .Call("R_getMatchedRulesets", eng, sheet, nodes)
}


selectionEngine =
function()
{
    .Call("R_createSelectionEngine")
}
omegahat/RCSS documentation built on May 24, 2019, 1:52 p.m.