package ndef // const for compare operation const ( OpEq = "=" OpNeq = "!=" OpLt = "<" OpLte = "<=" OpGt = ">" OpGte = ">=" ) // const quote chars const ( SingleQuote = '\'' DoubleQuote = '"' SlashQuote = '\\' SingleQuoteStr = "'" DoubleQuoteStr = `"` SlashQuoteStr = "\\" ) // NoIdx invalid index or length const NoIdx = -1 // const VarPathReg = `(\w[\w-]*(?:\.[\w-]+)*)`