blob: 43970febe3b5d45ec9c51f3f6dbcf09a163f4a13 [file]
window.pdocSearch = (function(){
/** elasticlunr - http://weixsong.github.io * Copyright (C) 2017 Oliver Nightingale * Copyright (C) 2017 Wei Song * MIT Licensed */!function(){function e(e){if(null===e||"object"!=typeof e)return e;var t=e.constructor();for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.9.5",lunr=t,t.utils={},t.utils.warn=function(e){return function(t){e.console&&console.warn&&console.warn(t)}}(this),t.utils.toString=function(e){return void 0===e||null===e?"":e.toString()},t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var e=Array.prototype.slice.call(arguments),t=e.pop(),n=e;if("function"!=typeof t)throw new TypeError("last argument must be a function");n.forEach(function(e){this.hasHandler(e)||(this.events[e]=[]),this.events[e].push(t)},this)},t.EventEmitter.prototype.removeListener=function(e,t){if(this.hasHandler(e)){var n=this.events[e].indexOf(t);-1!==n&&(this.events[e].splice(n,1),0==this.events[e].length&&delete this.events[e])}},t.EventEmitter.prototype.emit=function(e){if(this.hasHandler(e)){var t=Array.prototype.slice.call(arguments,1);this.events[e].forEach(function(e){e.apply(void 0,t)},this)}},t.EventEmitter.prototype.hasHandler=function(e){return e in this.events},t.tokenizer=function(e){if(!arguments.length||null===e||void 0===e)return[];if(Array.isArray(e)){var n=e.filter(function(e){return null===e||void 0===e?!1:!0});n=n.map(function(e){return t.utils.toString(e).toLowerCase()});var i=[];return n.forEach(function(e){var n=e.split(t.tokenizer.seperator);i=i.concat(n)},this),i}return e.toString().trim().toLowerCase().split(t.tokenizer.seperator)},t.tokenizer.defaultSeperator=/[\s\-]+/,t.tokenizer.seperator=t.tokenizer.defaultSeperator,t.tokenizer.setSeperator=function(e){null!==e&&void 0!==e&&"object"==typeof e&&(t.tokenizer.seperator=e)},t.tokenizer.resetSeperator=function(){t.tokenizer.seperator=t.tokenizer.defaultSeperator},t.tokenizer.getSeperator=function(){return t.tokenizer.seperator},t.Pipeline=function(){this._queue=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in t.Pipeline.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[n]=e},t.Pipeline.getRegisteredFunction=function(e){return e in t.Pipeline.registeredFunctions!=!0?null:t.Pipeline.registeredFunctions[e]},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var i=t.Pipeline.getRegisteredFunction(e);if(!i)throw new Error("Cannot load un-registered function: "+e);n.add(i)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._queue.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i+1,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i,0,n)},t.Pipeline.prototype.remove=function(e){var t=this._queue.indexOf(e);-1!==t&&this._queue.splice(t,1)},t.Pipeline.prototype.run=function(e){for(var t=[],n=e.length,i=this._queue.length,o=0;n>o;o++){for(var r=e[o],s=0;i>s&&(r=this._queue[s](r,o,e),void 0!==r&&null!==r);s++);void 0!==r&&null!==r&&t.push(r)}return t},t.Pipeline.prototype.reset=function(){this._queue=[]},t.Pipeline.prototype.get=function(){return this._queue},t.Pipeline.prototype.toJSON=function(){return this._queue.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.DocumentStore,this.index={},this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var e=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,e)},t.Index.prototype.off=function(e,t){return this.eventEmitter.removeListener(e,t)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;n._fields=e.fields,n._ref=e.ref,n.documentStore=t.DocumentStore.load(e.documentStore),n.pipeline=t.Pipeline.load(e.pipeline),n.index={};for(var i in e.index)n.index[i]=t.InvertedIndex.load(e.index[i]);return n},t.Index.prototype.addField=function(e){return this._fields.push(e),this.index[e]=new t.InvertedIndex,this},t.Index.prototype.setRef=function(e){return this._ref=e,this},t.Index.prototype.saveDocument=function(e){return this.documentStore=new t.DocumentStore(e),this},t.Index.prototype.addDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.addDoc(i,e),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));this.documentStore.addFieldLength(i,n,o.length);var r={};o.forEach(function(e){e in r?r[e]+=1:r[e]=1},this);for(var s in r){var u=r[s];u=Math.sqrt(u),this.index[n].addToken(s,{ref:i,tf:u})}},this),n&&this.eventEmitter.emit("add",e,this)}},t.Index.prototype.removeDocByRef=function(e){if(e&&this.documentStore.isDocStored()!==!1&&this.documentStore.hasDoc(e)){var t=this.documentStore.getDoc(e);this.removeDoc(t,!1)}},t.Index.prototype.removeDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.hasDoc(i)&&(this.documentStore.removeDoc(i),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));o.forEach(function(e){this.index[n].removeToken(e,i)},this)},this),n&&this.eventEmitter.emit("remove",e,this))}},t.Index.prototype.updateDoc=function(e,t){var t=void 0===t?!0:t;this.removeDocByRef(e[this._ref],!1),this.addDoc(e,!1),t&&this.eventEmitter.emit("update",e,this)},t.Index.prototype.idf=function(e,t){var n="@"+t+"/"+e;if(Object.prototype.hasOwnProperty.call(this._idfCache,n))return this._idfCache[n];var i=this.index[t].getDocFreq(e),o=1+Math.log(this.documentStore.length/(i+1));return this._idfCache[n]=o,o},t.Index.prototype.getFields=function(){return this._fields.slice()},t.Index.prototype.search=function(e,n){if(!e)return[];e="string"==typeof e?{any:e}:JSON.parse(JSON.stringify(e));var i=null;null!=n&&(i=JSON.stringify(n));for(var o=new t.Configuration(i,this.getFields()).get(),r={},s=Object.keys(e),u=0;u<s.length;u++){var a=s[u];r[a]=this.pipeline.run(t.tokenizer(e[a]))}var l={};for(var c in o){var d=r[c]||r.any;if(d){var f=this.fieldSearch(d,c,o),h=o[c].boost;for(var p in f)f[p]=f[p]*h;for(var p in f)p in l?l[p]+=f[p]:l[p]=f[p]}}var v,g=[];for(var p in l)v={ref:p,score:l[p]},this.documentStore.hasDoc(p)&&(v.doc=this.documentStore.getDoc(p)),g.push(v);return g.sort(function(e,t){return t.score-e.score}),g},t.Index.prototype.fieldSearch=function(e,t,n){var i=n[t].bool,o=n[t].expand,r=n[t].boost,s=null,u={};return 0!==r?(e.forEach(function(e){var n=[e];1==o&&(n=this.index[t].expandToken(e));var r={};n.forEach(function(n){var o=this.index[t].getDocs(n),a=this.idf(n,t);if(s&&"AND"==i){var l={};for(var c in s)c in o&&(l[c]=o[c]);o=l}n==e&&this.fieldSearchStats(u,n,o);for(var c in o){var d=this.index[t].getTermFrequency(n,c),f=this.documentStore.getFieldLength(c,t),h=1;0!=f&&(h=1/Math.sqrt(f));var p=1;n!=e&&(p=.15*(1-(n.length-e.length)/n.length));var v=d*a*h*p;c in r?r[c]+=v:r[c]=v}},this),s=this.mergeScores(s,r,i)},this),s=this.coordNorm(s,u,e.length)):void 0},t.Index.prototype.mergeScores=function(e,t,n){if(!e)return t;if("AND"==n){var i={};for(var o in t)o in e&&(i[o]=e[o]+t[o]);return i}for(var o in t)o in e?e[o]+=t[o]:e[o]=t[o];return e},t.Index.prototype.fieldSearchStats=function(e,t,n){for(var i in n)i in e?e[i].push(t):e[i]=[t]},t.Index.prototype.coordNorm=function(e,t,n){for(var i in e)if(i in t){var o=t[i].length;e[i]=e[i]*o/n}return e},t.Index.prototype.toJSON=function(){var e={};return this._fields.forEach(function(t){e[t]=this.index[t].toJSON()},this),{version:t.version,fields:this._fields,ref:this._ref,documentStore:this.documentStore.toJSON(),index:e,pipeline:this.pipeline.toJSON()}},t.Index.prototype.use=function(e){var t=Array.prototype.slice.call(arguments,1);t.unshift(this),e.apply(this,t)},t.DocumentStore=function(e){this._save=null===e||void 0===e?!0:e,this.docs={},this.docInfo={},this.length=0},t.DocumentStore.load=function(e){var t=new this;return t.length=e.length,t.docs=e.docs,t.docInfo=e.docInfo,t._save=e.save,t},t.DocumentStore.prototype.isDocStored=function(){return this._save},t.DocumentStore.prototype.addDoc=function(t,n){this.hasDoc(t)||this.length++,this.docs[t]=this._save===!0?e(n):null},t.DocumentStore.prototype.getDoc=function(e){return this.hasDoc(e)===!1?null:this.docs[e]},t.DocumentStore.prototype.hasDoc=function(e){return e in this.docs},t.DocumentStore.prototype.removeDoc=function(e){this.hasDoc(e)&&(delete this.docs[e],delete this.docInfo[e],this.length--)},t.DocumentStore.prototype.addFieldLength=function(e,t,n){null!==e&&void 0!==e&&0!=this.hasDoc(e)&&(this.docInfo[e]||(this.docInfo[e]={}),this.docInfo[e][t]=n)},t.DocumentStore.prototype.updateFieldLength=function(e,t,n){null!==e&&void 0!==e&&0!=this.hasDoc(e)&&this.addFieldLength(e,t,n)},t.DocumentStore.prototype.getFieldLength=function(e,t){return null===e||void 0===e?0:e in this.docs&&t in this.docInfo[e]?this.docInfo[e][t]:0},t.DocumentStore.prototype.toJSON=function(){return{docs:this.docs,docInfo:this.docInfo,length:this.length,save:this._save}},t.stemmer=function(){var e={ational:"ate",tional:"tion",enci:"ence",anci:"ance",izer:"ize",bli:"ble",alli:"al",entli:"ent",eli:"e",ousli:"ous",ization:"ize",ation:"ate",ator:"ate",alism:"al",iveness:"ive",fulness:"ful",ousness:"ous",aliti:"al",iviti:"ive",biliti:"ble",logi:"log"},t={icate:"ic",ative:"",alize:"al",iciti:"ic",ical:"ic",ful:"",ness:""},n="[^aeiou]",i="[aeiouy]",o=n+"[^aeiouy]*",r=i+"[aeiou]*",s="^("+o+")?"+r+o,u="^("+o+")?"+r+o+"("+r+")?$",a="^("+o+")?"+r+o+r+o,l="^("+o+")?"+i,c=new RegExp(s),d=new RegExp(a),f=new RegExp(u),h=new RegExp(l),p=/^(.+?)(ss|i)es$/,v=/^(.+?)([^s])s$/,g=/^(.+?)eed$/,m=/^(.+?)(ed|ing)$/,y=/.$/,S=/(at|bl|iz)$/,x=new RegExp("([^aeiouylsz])\\1$"),w=new RegExp("^"+o+i+"[^aeiouwxy]$"),I=/^(.+?[^aeiou])y$/,b=/^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/,E=/^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/,D=/^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/,F=/^(.+?)(s|t)(ion)$/,_=/^(.+?)e$/,P=/ll$/,k=new RegExp("^"+o+i+"[^aeiouwxy]$"),z=function(n){var i,o,r,s,u,a,l;if(n.length<3)return n;if(r=n.substr(0,1),"y"==r&&(n=r.toUpperCase()+n.substr(1)),s=p,u=v,s.test(n)?n=n.replace(s,"$1$2"):u.test(n)&&(n=n.replace(u,"$1$2")),s=g,u=m,s.test(n)){var z=s.exec(n);s=c,s.test(z[1])&&(s=y,n=n.replace(s,""))}else if(u.test(n)){var z=u.exec(n);i=z[1],u=h,u.test(i)&&(n=i,u=S,a=x,l=w,u.test(n)?n+="e":a.test(n)?(s=y,n=n.replace(s,"")):l.test(n)&&(n+="e"))}if(s=I,s.test(n)){var z=s.exec(n);i=z[1],n=i+"i"}if(s=b,s.test(n)){var z=s.exec(n);i=z[1],o=z[2],s=c,s.test(i)&&(n=i+e[o])}if(s=E,s.test(n)){var z=s.exec(n);i=z[1],o=z[2],s=c,s.test(i)&&(n=i+t[o])}if(s=D,u=F,s.test(n)){var z=s.exec(n);i=z[1],s=d,s.test(i)&&(n=i)}else if(u.test(n)){var z=u.exec(n);i=z[1]+z[2],u=d,u.test(i)&&(n=i)}if(s=_,s.test(n)){var z=s.exec(n);i=z[1],s=d,u=f,a=k,(s.test(i)||u.test(i)&&!a.test(i))&&(n=i)}return s=P,u=d,s.test(n)&&u.test(n)&&(s=y,n=n.replace(s,"")),"y"==r&&(n=r.toLowerCase()+n.substr(1)),n};return z}(),t.Pipeline.registerFunction(t.stemmer,"stemmer"),t.stopWordFilter=function(e){return e&&t.stopWordFilter.stopWords[e]!==!0?e:void 0},t.clearStopWords=function(){t.stopWordFilter.stopWords={}},t.addStopWords=function(e){null!=e&&Array.isArray(e)!==!1&&e.forEach(function(e){t.stopWordFilter.stopWords[e]=!0},this)},t.resetStopWords=function(){t.stopWordFilter.stopWords=t.defaultStopWords},t.defaultStopWords={"":!0,a:!0,able:!0,about:!0,across:!0,after:!0,all:!0,almost:!0,also:!0,am:!0,among:!0,an:!0,and:!0,any:!0,are:!0,as:!0,at:!0,be:!0,because:!0,been:!0,but:!0,by:!0,can:!0,cannot:!0,could:!0,dear:!0,did:!0,"do":!0,does:!0,either:!0,"else":!0,ever:!0,every:!0,"for":!0,from:!0,get:!0,got:!0,had:!0,has:!0,have:!0,he:!0,her:!0,hers:!0,him:!0,his:!0,how:!0,however:!0,i:!0,"if":!0,"in":!0,into:!0,is:!0,it:!0,its:!0,just:!0,least:!0,let:!0,like:!0,likely:!0,may:!0,me:!0,might:!0,most:!0,must:!0,my:!0,neither:!0,no:!0,nor:!0,not:!0,of:!0,off:!0,often:!0,on:!0,only:!0,or:!0,other:!0,our:!0,own:!0,rather:!0,said:!0,say:!0,says:!0,she:!0,should:!0,since:!0,so:!0,some:!0,than:!0,that:!0,the:!0,their:!0,them:!0,then:!0,there:!0,these:!0,they:!0,"this":!0,tis:!0,to:!0,too:!0,twas:!0,us:!0,wants:!0,was:!0,we:!0,were:!0,what:!0,when:!0,where:!0,which:!0,"while":!0,who:!0,whom:!0,why:!0,will:!0,"with":!0,would:!0,yet:!0,you:!0,your:!0},t.stopWordFilter.stopWords=t.defaultStopWords,t.Pipeline.registerFunction(t.stopWordFilter,"stopWordFilter"),t.trimmer=function(e){if(null===e||void 0===e)throw new Error("token should not be undefined");return e.replace(/^\W+/,"").replace(/\W+$/,"")},t.Pipeline.registerFunction(t.trimmer,"trimmer"),t.InvertedIndex=function(){this.root={docs:{},df:0}},t.InvertedIndex.load=function(e){var t=new this;return t.root=e.root,t},t.InvertedIndex.prototype.addToken=function(e,t,n){for(var n=n||this.root,i=0;i<=e.length-1;){var o=e[i];o in n||(n[o]={docs:{},df:0}),i+=1,n=n[o]}var r=t.ref;n.docs[r]?n.docs[r]={tf:t.tf}:(n.docs[r]={tf:t.tf},n.df+=1)},t.InvertedIndex.prototype.hasToken=function(e){if(!e)return!1;for(var t=this.root,n=0;n<e.length;n++){if(!t[e[n]])return!1;t=t[e[n]]}return!0},t.InvertedIndex.prototype.getNode=function(e){if(!e)return null;for(var t=this.root,n=0;n<e.length;n++){if(!t[e[n]])return null;t=t[e[n]]}return t},t.InvertedIndex.prototype.getDocs=function(e){var t=this.getNode(e);return null==t?{}:t.docs},t.InvertedIndex.prototype.getTermFrequency=function(e,t){var n=this.getNode(e);return null==n?0:t in n.docs?n.docs[t].tf:0},t.InvertedIndex.prototype.getDocFreq=function(e){var t=this.getNode(e);return null==t?0:t.df},t.InvertedIndex.prototype.removeToken=function(e,t){if(e){var n=this.getNode(e);null!=n&&t in n.docs&&(delete n.docs[t],n.df-=1)}},t.InvertedIndex.prototype.expandToken=function(e,t,n){if(null==e||""==e)return[];var t=t||[];if(void 0==n&&(n=this.getNode(e),null==n))return t;n.df>0&&t.push(e);for(var i in n)"docs"!==i&&"df"!==i&&this.expandToken(e+i,t,n[i]);return t},t.InvertedIndex.prototype.toJSON=function(){return{root:this.root}},t.Configuration=function(e,n){var e=e||"";if(void 0==n||null==n)throw new Error("fields should not be null");this.config={};var i;try{i=JSON.parse(e),this.buildUserConfig(i,n)}catch(o){t.utils.warn("user configuration parse failed, will use default configuration"),this.buildDefaultConfig(n)}},t.Configuration.prototype.buildDefaultConfig=function(e){this.reset(),e.forEach(function(e){this.config[e]={boost:1,bool:"OR",expand:!1}},this)},t.Configuration.prototype.buildUserConfig=function(e,n){var i="OR",o=!1;if(this.reset(),"bool"in e&&(i=e.bool||i),"expand"in e&&(o=e.expand||o),"fields"in e)for(var r in e.fields)if(n.indexOf(r)>-1){var s=e.fields[r],u=o;void 0!=s.expand&&(u=s.expand),this.config[r]={boost:s.boost||0===s.boost?s.boost:1,bool:s.bool||i,expand:u}}else t.utils.warn("field name in user configuration not found in index instance fields");else this.addAllFields2UserConfig(i,o,n)},t.Configuration.prototype.addAllFields2UserConfig=function(e,t,n){n.forEach(function(n){this.config[n]={boost:1,bool:e,expand:t}},this)},t.Configuration.prototype.get=function(){return this.config},t.Configuration.prototype.reset=function(){this.config={}},lunr.SortedSet=function(){this.length=0,this.elements=[]},lunr.SortedSet.load=function(e){var t=new this;return t.elements=e,t.length=e.length,t},lunr.SortedSet.prototype.add=function(){var e,t;for(e=0;e<arguments.length;e++)t=arguments[e],~this.indexOf(t)||this.elements.splice(this.locationFor(t),0,t);this.length=this.elements.length},lunr.SortedSet.prototype.toArray=function(){return this.elements.slice()},lunr.SortedSet.prototype.map=function(e,t){return this.elements.map(e,t)},lunr.SortedSet.prototype.forEach=function(e,t){return this.elements.forEach(e,t)},lunr.SortedSet.prototype.indexOf=function(e){for(var t=0,n=this.elements.length,i=n-t,o=t+Math.floor(i/2),r=this.elements[o];i>1;){if(r===e)return o;e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o]}return r===e?o:-1},lunr.SortedSet.prototype.locationFor=function(e){for(var t=0,n=this.elements.length,i=n-t,o=t+Math.floor(i/2),r=this.elements[o];i>1;)e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o];return r>e?o:e>r?o+1:void 0},lunr.SortedSet.prototype.intersect=function(e){for(var t=new lunr.SortedSet,n=0,i=0,o=this.length,r=e.length,s=this.elements,u=e.elements;;){if(n>o-1||i>r-1)break;s[n]!==u[i]?s[n]<u[i]?n++:s[n]>u[i]&&i++:(t.add(s[n]),n++,i++)}return t},lunr.SortedSet.prototype.clone=function(){var e=new lunr.SortedSet;return e.elements=this.toArray(),e.length=e.elements.length,e},lunr.SortedSet.prototype.union=function(e){var t,n,i;this.length>=e.length?(t=this,n=e):(t=e,n=this),i=t.clone();for(var o=0,r=n.toArray();o<r.length;o++)i.add(r[o]);return i},lunr.SortedSet.prototype.toJSON=function(){return this.toArray()},function(e,t){"function"==typeof define&&define.amd?define(t):"object"==typeof exports?module.exports=t():e.elasticlunr=t()}(this,function(){return t})}();
/** pdoc search index */const docs = {"version": "0.9.5", "fields": ["qualname", "fullname", "annotation", "default_value", "signature", "bases", "doc"], "ref": "fullname", "documentStore": {"docs": {"graphar": {"fullname": "graphar", "modulename": "graphar", "kind": "module", "doc": "<p></p>\n"}, "graphar.GraphInfo": {"fullname": "graphar.GraphInfo", "modulename": "graphar", "qualname": "GraphInfo", "kind": "class", "doc": "<p></p>\n", "bases": "pybind11_builtins.pybind11_object"}, "graphar.GraphInfo.__init__": {"fullname": "graphar.GraphInfo.__init__", "modulename": "graphar", "qualname": "GraphInfo.__init__", "kind": "function", "doc": "<p>__init__(self: graphar._core.GraphInfo, graph_name: str, vertex_infos: collections.abc.Sequence[graphar._core.VertexInfo], edge_infos: collections.abc.Sequence[graphar._core.EdgeInfo], labels: collections.abc.Sequence[str] = [], prefix: str = './', version: graphar._core.InfoVersion = None, extra_info: collections.abc.Mapping[str, str] = {}) -> None</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">()</span>"}, "graphar.GraphInfo.load": {"fullname": "graphar.GraphInfo.load", "modulename": "graphar", "qualname": "GraphInfo.load", "kind": "function", "doc": "<p>load(<em>args, *</em>kwargs)\nOverloaded function.</p>\n\n<ol>\n<li><p>load(arg0: str) -> graphar._core.GraphInfo</p></li>\n<li><p>load(arg0: str, arg1: str) -> graphar._core.GraphInfo</p></li>\n</ol>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.GraphInfo.add_vertex": {"fullname": "graphar.GraphInfo.add_vertex", "modulename": "graphar", "qualname": "GraphInfo.add_vertex", "kind": "function", "doc": "<p>add_vertex(self: graphar._core.GraphInfo, arg0: graphar._core.VertexInfo) -> graphar._core.GraphInfo</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.GraphInfo.remove_vertex": {"fullname": "graphar.GraphInfo.remove_vertex", "modulename": "graphar", "qualname": "GraphInfo.remove_vertex", "kind": "function", "doc": "<p>remove_vertex(self: graphar._core.GraphInfo, arg0: graphar._core.VertexInfo) -> graphar._core.GraphInfo</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.GraphInfo.add_edge": {"fullname": "graphar.GraphInfo.add_edge", "modulename": "graphar", "qualname": "GraphInfo.add_edge", "kind": "function", "doc": "<p>add_edge(self: graphar._core.GraphInfo, arg0: graphar._core.EdgeInfo) -> graphar._core.GraphInfo</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.GraphInfo.remove_edge": {"fullname": "graphar.GraphInfo.remove_edge", "modulename": "graphar", "qualname": "GraphInfo.remove_edge", "kind": "function", "doc": "<p>remove_edge(self: graphar._core.GraphInfo, arg0: graphar._core.EdgeInfo) -> graphar._core.GraphInfo</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.GraphInfo.get_name": {"fullname": "graphar.GraphInfo.get_name", "modulename": "graphar", "qualname": "GraphInfo.get_name", "kind": "function", "doc": "<p>get_name(self: graphar._core.GraphInfo) -> str</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.GraphInfo.get_labels": {"fullname": "graphar.GraphInfo.get_labels", "modulename": "graphar", "qualname": "GraphInfo.get_labels", "kind": "function", "doc": "<p>get_labels(self: graphar._core.GraphInfo) -> list[str]</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.GraphInfo.get_prefix": {"fullname": "graphar.GraphInfo.get_prefix", "modulename": "graphar", "qualname": "GraphInfo.get_prefix", "kind": "function", "doc": "<p>get_prefix(self: graphar._core.GraphInfo) -> str</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.GraphInfo.version": {"fullname": "graphar.GraphInfo.version", "modulename": "graphar", "qualname": "GraphInfo.version", "kind": "function", "doc": "<p>version(self: graphar._core.GraphInfo) -> graphar._core.InfoVersion</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.GraphInfo.get_extra_info": {"fullname": "graphar.GraphInfo.get_extra_info", "modulename": "graphar", "qualname": "GraphInfo.get_extra_info", "kind": "function", "doc": "<p>get_extra_info(self: graphar._core.GraphInfo) -> dict[str, str]</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.GraphInfo.get_vertex_info": {"fullname": "graphar.GraphInfo.get_vertex_info", "modulename": "graphar", "qualname": "GraphInfo.get_vertex_info", "kind": "function", "doc": "<p>get_vertex_info(self: graphar._core.GraphInfo, arg0: str) -> graphar._core.VertexInfo</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.GraphInfo.get_edge_info": {"fullname": "graphar.GraphInfo.get_edge_info", "modulename": "graphar", "qualname": "GraphInfo.get_edge_info", "kind": "function", "doc": "<p>get_edge_info(self: graphar._core.GraphInfo, arg0: str, arg1: str, arg2: str) -> graphar._core.EdgeInfo</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.GraphInfo.get_vertex_info_index": {"fullname": "graphar.GraphInfo.get_vertex_info_index", "modulename": "graphar", "qualname": "GraphInfo.get_vertex_info_index", "kind": "function", "doc": "<p>get_vertex_info_index(self: graphar._core.GraphInfo, arg0: str) -> int</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.GraphInfo.get_edge_info_index": {"fullname": "graphar.GraphInfo.get_edge_info_index", "modulename": "graphar", "qualname": "GraphInfo.get_edge_info_index", "kind": "function", "doc": "<p>get_edge_info_index(self: graphar._core.GraphInfo, arg0: str, arg1: str, arg2: str) -> int</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.GraphInfo.vertex_info_num": {"fullname": "graphar.GraphInfo.vertex_info_num", "modulename": "graphar", "qualname": "GraphInfo.vertex_info_num", "kind": "function", "doc": "<p>vertex_info_num(self: graphar._core.GraphInfo) -> int</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.GraphInfo.edge_info_num": {"fullname": "graphar.GraphInfo.edge_info_num", "modulename": "graphar", "qualname": "GraphInfo.edge_info_num", "kind": "function", "doc": "<p>edge_info_num(self: graphar._core.GraphInfo) -> int</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.GraphInfo.get_vertex_info_by_index": {"fullname": "graphar.GraphInfo.get_vertex_info_by_index", "modulename": "graphar", "qualname": "GraphInfo.get_vertex_info_by_index", "kind": "function", "doc": "<p>get_vertex_info_by_index(self: graphar._core.GraphInfo, arg0: typing.SupportsInt) -> graphar._core.VertexInfo</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.GraphInfo.get_edge_info_by_index": {"fullname": "graphar.GraphInfo.get_edge_info_by_index", "modulename": "graphar", "qualname": "GraphInfo.get_edge_info_by_index", "kind": "function", "doc": "<p>get_edge_info_by_index(self: graphar._core.GraphInfo, arg0: typing.SupportsInt) -> graphar._core.EdgeInfo</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.GraphInfo.get_vertex_infos": {"fullname": "graphar.GraphInfo.get_vertex_infos", "modulename": "graphar", "qualname": "GraphInfo.get_vertex_infos", "kind": "function", "doc": "<p>get_vertex_infos(self: graphar._core.GraphInfo) -> list[graphar._core.VertexInfo]</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.GraphInfo.get_edge_infos": {"fullname": "graphar.GraphInfo.get_edge_infos", "modulename": "graphar", "qualname": "GraphInfo.get_edge_infos", "kind": "function", "doc": "<p>get_edge_infos(self: graphar._core.GraphInfo) -> list[graphar._core.EdgeInfo]</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.GraphInfo.save": {"fullname": "graphar.GraphInfo.save", "modulename": "graphar", "qualname": "GraphInfo.save", "kind": "function", "doc": "<p>save(self: graphar._core.GraphInfo, arg0: str) -> None</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.GraphInfo.dump": {"fullname": "graphar.GraphInfo.dump", "modulename": "graphar", "qualname": "GraphInfo.dump", "kind": "function", "doc": "<p>dump(self: graphar._core.GraphInfo) -> str</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.GraphInfo.is_validated": {"fullname": "graphar.GraphInfo.is_validated", "modulename": "graphar", "qualname": "GraphInfo.is_validated", "kind": "function", "doc": "<p>is_validated(self: graphar._core.GraphInfo) -> bool</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.VertexInfo": {"fullname": "graphar.VertexInfo", "modulename": "graphar", "qualname": "VertexInfo", "kind": "class", "doc": "<p></p>\n", "bases": "pybind11_builtins.pybind11_object"}, "graphar.VertexInfo.__init__": {"fullname": "graphar.VertexInfo.__init__", "modulename": "graphar", "qualname": "VertexInfo.__init__", "kind": "function", "doc": "<p>__init__(self: graphar._core.VertexInfo, type: str, chunk_size: typing.SupportsInt, property_groups: collections.abc.Sequence[graphar._core.PropertyGroup], labels: collections.abc.Sequence[str] = [], prefix: str = '', version: graphar._core.InfoVersion = None) -> None</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">()</span>"}, "graphar.VertexInfo.add_property_group": {"fullname": "graphar.VertexInfo.add_property_group", "modulename": "graphar", "qualname": "VertexInfo.add_property_group", "kind": "function", "doc": "<p>add_property_group(self: graphar._core.VertexInfo, arg0: graphar._core.PropertyGroup) -> graphar._core.VertexInfo</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.VertexInfo.remove_property_group": {"fullname": "graphar.VertexInfo.remove_property_group", "modulename": "graphar", "qualname": "VertexInfo.remove_property_group", "kind": "function", "doc": "<p>remove_property_group(self: graphar._core.VertexInfo, arg0: graphar._core.PropertyGroup) -> graphar._core.VertexInfo</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.VertexInfo.get_type": {"fullname": "graphar.VertexInfo.get_type", "modulename": "graphar", "qualname": "VertexInfo.get_type", "kind": "function", "doc": "<p>get_type(self: graphar._core.VertexInfo) -> str</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.VertexInfo.get_chunk_size": {"fullname": "graphar.VertexInfo.get_chunk_size", "modulename": "graphar", "qualname": "VertexInfo.get_chunk_size", "kind": "function", "doc": "<p>get_chunk_size(self: graphar._core.VertexInfo) -> int</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.VertexInfo.get_prefix": {"fullname": "graphar.VertexInfo.get_prefix", "modulename": "graphar", "qualname": "VertexInfo.get_prefix", "kind": "function", "doc": "<p>get_prefix(self: graphar._core.VertexInfo) -> str</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.VertexInfo.version": {"fullname": "graphar.VertexInfo.version", "modulename": "graphar", "qualname": "VertexInfo.version", "kind": "function", "doc": "<p>version(self: graphar._core.VertexInfo) -> graphar._core.InfoVersion</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.VertexInfo.get_labels": {"fullname": "graphar.VertexInfo.get_labels", "modulename": "graphar", "qualname": "VertexInfo.get_labels", "kind": "function", "doc": "<p>get_labels(self: graphar._core.VertexInfo) -> list[str]</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.VertexInfo.property_group_num": {"fullname": "graphar.VertexInfo.property_group_num", "modulename": "graphar", "qualname": "VertexInfo.property_group_num", "kind": "function", "doc": "<p>property_group_num(self: graphar._core.VertexInfo) -> int</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.VertexInfo.get_property_groups": {"fullname": "graphar.VertexInfo.get_property_groups", "modulename": "graphar", "qualname": "VertexInfo.get_property_groups", "kind": "function", "doc": "<p>get_property_groups(self: graphar._core.VertexInfo) -> list[graphar._core.PropertyGroup]</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.VertexInfo.get_property_group": {"fullname": "graphar.VertexInfo.get_property_group", "modulename": "graphar", "qualname": "VertexInfo.get_property_group", "kind": "function", "doc": "<p>get_property_group(self: graphar._core.VertexInfo, arg0: str) -> graphar._core.PropertyGroup</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.VertexInfo.get_property_group_by_index": {"fullname": "graphar.VertexInfo.get_property_group_by_index", "modulename": "graphar", "qualname": "VertexInfo.get_property_group_by_index", "kind": "function", "doc": "<p>get_property_group_by_index(self: graphar._core.VertexInfo, arg0: typing.SupportsInt) -> graphar._core.PropertyGroup</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.VertexInfo.get_property_type": {"fullname": "graphar.VertexInfo.get_property_type", "modulename": "graphar", "qualname": "VertexInfo.get_property_type", "kind": "function", "doc": "<p>get_property_type(self: graphar._core.VertexInfo, arg0: str) -> graphar._core.DataType</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.VertexInfo.get_property_cardinality": {"fullname": "graphar.VertexInfo.get_property_cardinality", "modulename": "graphar", "qualname": "VertexInfo.get_property_cardinality", "kind": "function", "doc": "<p>get_property_cardinality(self: graphar._core.VertexInfo, arg0: str) -> graphar._core.Cardinality</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.VertexInfo.has_property": {"fullname": "graphar.VertexInfo.has_property", "modulename": "graphar", "qualname": "VertexInfo.has_property", "kind": "function", "doc": "<p>has_property(self: graphar._core.VertexInfo, arg0: str) -> bool</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.VertexInfo.save": {"fullname": "graphar.VertexInfo.save", "modulename": "graphar", "qualname": "VertexInfo.save", "kind": "function", "doc": "<p>save(self: graphar._core.VertexInfo, arg0: str) -> None</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.VertexInfo.dump": {"fullname": "graphar.VertexInfo.dump", "modulename": "graphar", "qualname": "VertexInfo.dump", "kind": "function", "doc": "<p>dump(self: graphar._core.VertexInfo) -> str</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.VertexInfo.is_primary_key": {"fullname": "graphar.VertexInfo.is_primary_key", "modulename": "graphar", "qualname": "VertexInfo.is_primary_key", "kind": "function", "doc": "<p>is_primary_key(self: graphar._core.VertexInfo, arg0: str) -> bool</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.VertexInfo.is_nullable_key": {"fullname": "graphar.VertexInfo.is_nullable_key", "modulename": "graphar", "qualname": "VertexInfo.is_nullable_key", "kind": "function", "doc": "<p>is_nullable_key(self: graphar._core.VertexInfo, arg0: str) -> bool</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.VertexInfo.has_property_group": {"fullname": "graphar.VertexInfo.has_property_group", "modulename": "graphar", "qualname": "VertexInfo.has_property_group", "kind": "function", "doc": "<p>has_property_group(self: graphar._core.VertexInfo, arg0: graphar._core.PropertyGroup) -> bool</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.VertexInfo.get_file_path": {"fullname": "graphar.VertexInfo.get_file_path", "modulename": "graphar", "qualname": "VertexInfo.get_file_path", "kind": "function", "doc": "<p>get_file_path(self: graphar._core.VertexInfo, arg0: graphar._core.PropertyGroup, arg1: typing.SupportsInt) -> str</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.VertexInfo.get_path_prefix": {"fullname": "graphar.VertexInfo.get_path_prefix", "modulename": "graphar", "qualname": "VertexInfo.get_path_prefix", "kind": "function", "doc": "<p>get_path_prefix(self: graphar._core.VertexInfo, arg0: graphar._core.PropertyGroup) -> str</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.VertexInfo.get_vertices_num_file_path": {"fullname": "graphar.VertexInfo.get_vertices_num_file_path", "modulename": "graphar", "qualname": "VertexInfo.get_vertices_num_file_path", "kind": "function", "doc": "<p>get_vertices_num_file_path(self: graphar._core.VertexInfo) -> str</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.VertexInfo.is_validated": {"fullname": "graphar.VertexInfo.is_validated", "modulename": "graphar", "qualname": "VertexInfo.is_validated", "kind": "function", "doc": "<p>is_validated(self: graphar._core.VertexInfo) -> bool</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgeInfo": {"fullname": "graphar.EdgeInfo", "modulename": "graphar", "qualname": "EdgeInfo", "kind": "class", "doc": "<p></p>\n", "bases": "pybind11_builtins.pybind11_object"}, "graphar.EdgeInfo.__init__": {"fullname": "graphar.EdgeInfo.__init__", "modulename": "graphar", "qualname": "EdgeInfo.__init__", "kind": "function", "doc": "<p>__init__(self: graphar._core.EdgeInfo, src_type: str, edge_type: str, dst_type: str, chunk_size: typing.SupportsInt, src_chunk_size: typing.SupportsInt, dst_chunk_size: typing.SupportsInt, directed: bool, adjacent_lists: collections.abc.Sequence[graphar._core.AdjacentList], property_groups: collections.abc.Sequence[graphar._core.PropertyGroup], prefix: str = '', version: graphar._core.InfoVersion = None) -> None</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">()</span>"}, "graphar.EdgeInfo.add_adjacent_list": {"fullname": "graphar.EdgeInfo.add_adjacent_list", "modulename": "graphar", "qualname": "EdgeInfo.add_adjacent_list", "kind": "function", "doc": "<p>add_adjacent_list(self: graphar._core.EdgeInfo, arg0: graphar._core.AdjacentList) -> graphar._core.EdgeInfo</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgeInfo.remove_adjacent_list": {"fullname": "graphar.EdgeInfo.remove_adjacent_list", "modulename": "graphar", "qualname": "EdgeInfo.remove_adjacent_list", "kind": "function", "doc": "<p>remove_adjacent_list(self: graphar._core.EdgeInfo, arg0: graphar._core.AdjacentList) -> graphar._core.EdgeInfo</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgeInfo.add_property_group": {"fullname": "graphar.EdgeInfo.add_property_group", "modulename": "graphar", "qualname": "EdgeInfo.add_property_group", "kind": "function", "doc": "<p>add_property_group(self: graphar._core.EdgeInfo, arg0: graphar._core.PropertyGroup) -> graphar._core.EdgeInfo</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgeInfo.remove_property_group": {"fullname": "graphar.EdgeInfo.remove_property_group", "modulename": "graphar", "qualname": "EdgeInfo.remove_property_group", "kind": "function", "doc": "<p>remove_property_group(self: graphar._core.EdgeInfo, arg0: graphar._core.PropertyGroup) -> graphar._core.EdgeInfo</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgeInfo.get_src_type": {"fullname": "graphar.EdgeInfo.get_src_type", "modulename": "graphar", "qualname": "EdgeInfo.get_src_type", "kind": "function", "doc": "<p>get_src_type(self: graphar._core.EdgeInfo) -> str</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgeInfo.get_edge_type": {"fullname": "graphar.EdgeInfo.get_edge_type", "modulename": "graphar", "qualname": "EdgeInfo.get_edge_type", "kind": "function", "doc": "<p>get_edge_type(self: graphar._core.EdgeInfo) -> str</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgeInfo.get_dst_type": {"fullname": "graphar.EdgeInfo.get_dst_type", "modulename": "graphar", "qualname": "EdgeInfo.get_dst_type", "kind": "function", "doc": "<p>get_dst_type(self: graphar._core.EdgeInfo) -> str</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgeInfo.get_chunk_size": {"fullname": "graphar.EdgeInfo.get_chunk_size", "modulename": "graphar", "qualname": "EdgeInfo.get_chunk_size", "kind": "function", "doc": "<p>get_chunk_size(self: graphar._core.EdgeInfo) -> int</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgeInfo.get_src_chunk_size": {"fullname": "graphar.EdgeInfo.get_src_chunk_size", "modulename": "graphar", "qualname": "EdgeInfo.get_src_chunk_size", "kind": "function", "doc": "<p>get_src_chunk_size(self: graphar._core.EdgeInfo) -> int</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgeInfo.get_dst_chunk_size": {"fullname": "graphar.EdgeInfo.get_dst_chunk_size", "modulename": "graphar", "qualname": "EdgeInfo.get_dst_chunk_size", "kind": "function", "doc": "<p>get_dst_chunk_size(self: graphar._core.EdgeInfo) -> int</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgeInfo.get_prefix": {"fullname": "graphar.EdgeInfo.get_prefix", "modulename": "graphar", "qualname": "EdgeInfo.get_prefix", "kind": "function", "doc": "<p>get_prefix(self: graphar._core.EdgeInfo) -> str</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgeInfo.is_directed": {"fullname": "graphar.EdgeInfo.is_directed", "modulename": "graphar", "qualname": "EdgeInfo.is_directed", "kind": "function", "doc": "<p>is_directed(self: graphar._core.EdgeInfo) -> bool</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgeInfo.version": {"fullname": "graphar.EdgeInfo.version", "modulename": "graphar", "qualname": "EdgeInfo.version", "kind": "function", "doc": "<p>version(self: graphar._core.EdgeInfo) -> graphar._core.InfoVersion</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgeInfo.has_adjacent_list_type": {"fullname": "graphar.EdgeInfo.has_adjacent_list_type", "modulename": "graphar", "qualname": "EdgeInfo.has_adjacent_list_type", "kind": "function", "doc": "<p>has_adjacent_list_type(self: graphar._core.EdgeInfo, arg0: graphar._core.AdjListType) -> bool</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgeInfo.has_property": {"fullname": "graphar.EdgeInfo.has_property", "modulename": "graphar", "qualname": "EdgeInfo.has_property", "kind": "function", "doc": "<p>has_property(self: graphar._core.EdgeInfo, arg0: str) -> bool</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgeInfo.has_property_group": {"fullname": "graphar.EdgeInfo.has_property_group", "modulename": "graphar", "qualname": "EdgeInfo.has_property_group", "kind": "function", "doc": "<p>has_property_group(self: graphar._core.EdgeInfo, arg0: graphar._core.PropertyGroup) -> bool</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgeInfo.get_adjacent_list": {"fullname": "graphar.EdgeInfo.get_adjacent_list", "modulename": "graphar", "qualname": "EdgeInfo.get_adjacent_list", "kind": "function", "doc": "<p>get_adjacent_list(self: graphar._core.EdgeInfo, arg0: graphar._core.AdjListType) -> graphar._core.AdjacentList</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgeInfo.property_group_num": {"fullname": "graphar.EdgeInfo.property_group_num", "modulename": "graphar", "qualname": "EdgeInfo.property_group_num", "kind": "function", "doc": "<p>property_group_num(self: graphar._core.EdgeInfo) -> int</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgeInfo.get_property_groups": {"fullname": "graphar.EdgeInfo.get_property_groups", "modulename": "graphar", "qualname": "EdgeInfo.get_property_groups", "kind": "function", "doc": "<p>get_property_groups(self: graphar._core.EdgeInfo) -> list[graphar._core.PropertyGroup]</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgeInfo.get_property_group": {"fullname": "graphar.EdgeInfo.get_property_group", "modulename": "graphar", "qualname": "EdgeInfo.get_property_group", "kind": "function", "doc": "<p>get_property_group(self: graphar._core.EdgeInfo, arg0: str) -> graphar._core.PropertyGroup</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgeInfo.get_property_group_by_index": {"fullname": "graphar.EdgeInfo.get_property_group_by_index", "modulename": "graphar", "qualname": "EdgeInfo.get_property_group_by_index", "kind": "function", "doc": "<p>get_property_group_by_index(self: graphar._core.EdgeInfo, arg0: typing.SupportsInt) -> graphar._core.PropertyGroup</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgeInfo.get_vertices_num_file_path": {"fullname": "graphar.EdgeInfo.get_vertices_num_file_path", "modulename": "graphar", "qualname": "EdgeInfo.get_vertices_num_file_path", "kind": "function", "doc": "<p>get_vertices_num_file_path(self: graphar._core.EdgeInfo, arg0: graphar._core.AdjListType) -> str</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgeInfo.get_edges_num_file_path": {"fullname": "graphar.EdgeInfo.get_edges_num_file_path", "modulename": "graphar", "qualname": "EdgeInfo.get_edges_num_file_path", "kind": "function", "doc": "<p>get_edges_num_file_path(self: graphar._core.EdgeInfo, arg0: typing.SupportsInt, arg1: graphar._core.AdjListType) -> str</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgeInfo.get_adj_list_file_path": {"fullname": "graphar.EdgeInfo.get_adj_list_file_path", "modulename": "graphar", "qualname": "EdgeInfo.get_adj_list_file_path", "kind": "function", "doc": "<p>get_adj_list_file_path(self: graphar._core.EdgeInfo, arg0: typing.SupportsInt, arg1: typing.SupportsInt, arg2: graphar._core.AdjListType) -> str</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgeInfo.get_adj_list_path_prefix": {"fullname": "graphar.EdgeInfo.get_adj_list_path_prefix", "modulename": "graphar", "qualname": "EdgeInfo.get_adj_list_path_prefix", "kind": "function", "doc": "<p>get_adj_list_path_prefix(self: graphar._core.EdgeInfo, arg0: graphar._core.AdjListType) -> str</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgeInfo.get_adj_list_offset_file_path": {"fullname": "graphar.EdgeInfo.get_adj_list_offset_file_path", "modulename": "graphar", "qualname": "EdgeInfo.get_adj_list_offset_file_path", "kind": "function", "doc": "<p>get_adj_list_offset_file_path(self: graphar._core.EdgeInfo, arg0: typing.SupportsInt, arg1: graphar._core.AdjListType) -> str</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgeInfo.get_offset_path_prefix": {"fullname": "graphar.EdgeInfo.get_offset_path_prefix", "modulename": "graphar", "qualname": "EdgeInfo.get_offset_path_prefix", "kind": "function", "doc": "<p>get_offset_path_prefix(self: graphar._core.EdgeInfo, arg0: graphar._core.AdjListType) -> str</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgeInfo.get_property_file_path": {"fullname": "graphar.EdgeInfo.get_property_file_path", "modulename": "graphar", "qualname": "EdgeInfo.get_property_file_path", "kind": "function", "doc": "<p>get_property_file_path(self: graphar._core.EdgeInfo, arg0: graphar._core.PropertyGroup, arg1: graphar._core.AdjListType, arg2: typing.SupportsInt, arg3: typing.SupportsInt) -> str</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgeInfo.get_property_group_path_prefix": {"fullname": "graphar.EdgeInfo.get_property_group_path_prefix", "modulename": "graphar", "qualname": "EdgeInfo.get_property_group_path_prefix", "kind": "function", "doc": "<p>get_property_group_path_prefix(self: graphar._core.EdgeInfo, arg0: graphar._core.PropertyGroup, arg1: graphar._core.AdjListType) -> str</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgeInfo.get_property_type": {"fullname": "graphar.EdgeInfo.get_property_type", "modulename": "graphar", "qualname": "EdgeInfo.get_property_type", "kind": "function", "doc": "<p>get_property_type(self: graphar._core.EdgeInfo, arg0: str) -> graphar._core.DataType</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgeInfo.is_primary_key": {"fullname": "graphar.EdgeInfo.is_primary_key", "modulename": "graphar", "qualname": "EdgeInfo.is_primary_key", "kind": "function", "doc": "<p>is_primary_key(self: graphar._core.EdgeInfo, arg0: str) -> bool</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgeInfo.is_nullable_key": {"fullname": "graphar.EdgeInfo.is_nullable_key", "modulename": "graphar", "qualname": "EdgeInfo.is_nullable_key", "kind": "function", "doc": "<p>is_nullable_key(self: graphar._core.EdgeInfo, arg0: str) -> bool</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgeInfo.save": {"fullname": "graphar.EdgeInfo.save", "modulename": "graphar", "qualname": "EdgeInfo.save", "kind": "function", "doc": "<p>save(self: graphar._core.EdgeInfo, arg0: str) -> None</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgeInfo.dump": {"fullname": "graphar.EdgeInfo.dump", "modulename": "graphar", "qualname": "EdgeInfo.dump", "kind": "function", "doc": "<p>dump(self: graphar._core.EdgeInfo) -> str</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgeInfo.is_validated": {"fullname": "graphar.EdgeInfo.is_validated", "modulename": "graphar", "qualname": "EdgeInfo.is_validated", "kind": "function", "doc": "<p>is_validated(self: graphar._core.EdgeInfo) -> bool</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.PropertyGroup": {"fullname": "graphar.PropertyGroup", "modulename": "graphar", "qualname": "PropertyGroup", "kind": "class", "doc": "<p></p>\n", "bases": "pybind11_builtins.pybind11_object"}, "graphar.PropertyGroup.__init__": {"fullname": "graphar.PropertyGroup.__init__", "modulename": "graphar", "qualname": "PropertyGroup.__init__", "kind": "function", "doc": "<p>__init__(self: graphar._core.PropertyGroup, properties: collections.abc.Sequence[graphar._core.Property], file_type: graphar._core.FileType, prefix: str = '') -> None</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">()</span>"}, "graphar.PropertyGroup.get_properties": {"fullname": "graphar.PropertyGroup.get_properties", "modulename": "graphar", "qualname": "PropertyGroup.get_properties", "kind": "function", "doc": "<p>get_properties(self: graphar._core.PropertyGroup) -> list[graphar._core.Property]</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.PropertyGroup.has_property": {"fullname": "graphar.PropertyGroup.has_property", "modulename": "graphar", "qualname": "PropertyGroup.has_property", "kind": "function", "doc": "<p>has_property(self: graphar._core.PropertyGroup, arg0: str) -> bool</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.PropertyGroup.get_file_type": {"fullname": "graphar.PropertyGroup.get_file_type", "modulename": "graphar", "qualname": "PropertyGroup.get_file_type", "kind": "function", "doc": "<p>get_file_type(self: graphar._core.PropertyGroup) -> graphar._core.FileType</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.PropertyGroup.get_prefix": {"fullname": "graphar.PropertyGroup.get_prefix", "modulename": "graphar", "qualname": "PropertyGroup.get_prefix", "kind": "function", "doc": "<p>get_prefix(self: graphar._core.PropertyGroup) -> str</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.PropertyGroup.is_validated": {"fullname": "graphar.PropertyGroup.is_validated", "modulename": "graphar", "qualname": "PropertyGroup.is_validated", "kind": "function", "doc": "<p>is_validated(self: graphar._core.PropertyGroup) -> bool</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.Property": {"fullname": "graphar.Property", "modulename": "graphar", "qualname": "Property", "kind": "class", "doc": "<p></p>\n", "bases": "pybind11_builtins.pybind11_object"}, "graphar.Property.__init__": {"fullname": "graphar.Property.__init__", "modulename": "graphar", "qualname": "Property.__init__", "kind": "function", "doc": "<p>__init__(<em>args, *</em>kwargs)\nOverloaded function.</p>\n\n<ol>\n<li><p>__init__(self: graphar._core.Property) -> None</p></li>\n<li><p>__init__(self: graphar._core.Property, name: str, type: graphar._core.DataType = None, is_primary: bool = False, is_nullable: bool = True, cardinality: graphar._core.Cardinality = <Cardinality.SINGLE: 0>) -> None</p></li>\n</ol>\n", "signature": "<span class=\"signature pdoc-code condensed\">()</span>"}, "graphar.Property.name": {"fullname": "graphar.Property.name", "modulename": "graphar", "qualname": "Property.name", "kind": "variable", "doc": "<p>(self: graphar._core.Property) -> str</p>\n"}, "graphar.Property.type": {"fullname": "graphar.Property.type", "modulename": "graphar", "qualname": "Property.type", "kind": "variable", "doc": "<p>(self: graphar._core.Property) -> graphar._core.DataType</p>\n"}, "graphar.Property.is_primary": {"fullname": "graphar.Property.is_primary", "modulename": "graphar", "qualname": "Property.is_primary", "kind": "variable", "doc": "<p>(self: graphar._core.Property) -> bool</p>\n"}, "graphar.Property.is_nullable": {"fullname": "graphar.Property.is_nullable", "modulename": "graphar", "qualname": "Property.is_nullable", "kind": "variable", "doc": "<p>(self: graphar._core.Property) -> bool</p>\n"}, "graphar.Property.cardinality": {"fullname": "graphar.Property.cardinality", "modulename": "graphar", "qualname": "Property.cardinality", "kind": "variable", "doc": "<p>(self: graphar._core.Property) -> graphar._core.Cardinality</p>\n"}, "graphar.DataType": {"fullname": "graphar.DataType", "modulename": "graphar", "qualname": "DataType", "kind": "class", "doc": "<p></p>\n", "bases": "pybind11_builtins.pybind11_object"}, "graphar.DataType.__init__": {"fullname": "graphar.DataType.__init__", "modulename": "graphar", "qualname": "DataType.__init__", "kind": "function", "doc": "<p>__init__(<em>args, *</em>kwargs)\nOverloaded function.</p>\n\n<ol>\n<li><p>__init__(self: graphar._core.DataType) -> None</p></li>\n<li><p>__init__(self: graphar._core.DataType, arg0: graphar._core.Type) -> None</p></li>\n</ol>\n", "signature": "<span class=\"signature pdoc-code condensed\">()</span>"}, "graphar.DataType.id": {"fullname": "graphar.DataType.id", "modulename": "graphar", "qualname": "DataType.id", "kind": "function", "doc": "<p>id(self: graphar._core.DataType) -> graphar._core.Type</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.DataType.to_type_name": {"fullname": "graphar.DataType.to_type_name", "modulename": "graphar", "qualname": "DataType.to_type_name", "kind": "function", "doc": "<p>to_type_name(self: graphar._core.DataType) -> str</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.AdjacentList": {"fullname": "graphar.AdjacentList", "modulename": "graphar", "qualname": "AdjacentList", "kind": "class", "doc": "<p></p>\n", "bases": "pybind11_builtins.pybind11_object"}, "graphar.AdjacentList.__init__": {"fullname": "graphar.AdjacentList.__init__", "modulename": "graphar", "qualname": "AdjacentList.__init__", "kind": "function", "doc": "<p>__init__(self: graphar._core.AdjacentList, type: graphar._core.AdjListType, file_type: graphar._core.FileType, prefix: str = '') -> None</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">()</span>"}, "graphar.AdjacentList.get_type": {"fullname": "graphar.AdjacentList.get_type", "modulename": "graphar", "qualname": "AdjacentList.get_type", "kind": "function", "doc": "<p>get_type(self: graphar._core.AdjacentList) -> graphar._core.AdjListType</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.AdjacentList.get_file_type": {"fullname": "graphar.AdjacentList.get_file_type", "modulename": "graphar", "qualname": "AdjacentList.get_file_type", "kind": "function", "doc": "<p>get_file_type(self: graphar._core.AdjacentList) -> graphar._core.FileType</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.AdjacentList.get_prefix": {"fullname": "graphar.AdjacentList.get_prefix", "modulename": "graphar", "qualname": "AdjacentList.get_prefix", "kind": "function", "doc": "<p>get_prefix(self: graphar._core.AdjacentList) -> str</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.AdjacentList.is_validated": {"fullname": "graphar.AdjacentList.is_validated", "modulename": "graphar", "qualname": "AdjacentList.is_validated", "kind": "function", "doc": "<p>is_validated(self: graphar._core.AdjacentList) -> bool</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.Vertex": {"fullname": "graphar.Vertex", "modulename": "graphar", "qualname": "Vertex", "kind": "class", "doc": "<p></p>\n", "bases": "pybind11_builtins.pybind11_object"}, "graphar.Vertex.__init__": {"fullname": "graphar.Vertex.__init__", "modulename": "graphar", "qualname": "Vertex.__init__", "kind": "function", "doc": "<p></p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"o\">*</span><span class=\"n\">args</span>, </span><span class=\"param\"><span class=\"o\">**</span><span class=\"n\">kwargs</span></span>)</span>"}, "graphar.Vertex.id": {"fullname": "graphar.Vertex.id", "modulename": "graphar", "qualname": "Vertex.id", "kind": "function", "doc": "<p>id(self: graphar._core.Vertex) -> int</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.Vertex.property": {"fullname": "graphar.Vertex.property", "modulename": "graphar", "qualname": "Vertex.property", "kind": "function", "doc": "<p>property(self: graphar._core.Vertex, arg0: str) -> object</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.Vertex.IsValid": {"fullname": "graphar.Vertex.IsValid", "modulename": "graphar", "qualname": "Vertex.IsValid", "kind": "function", "doc": "<p>IsValid(self: graphar._core.Vertex, arg0: str) -> bool</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.Edge": {"fullname": "graphar.Edge", "modulename": "graphar", "qualname": "Edge", "kind": "class", "doc": "<p></p>\n", "bases": "pybind11_builtins.pybind11_object"}, "graphar.Edge.__init__": {"fullname": "graphar.Edge.__init__", "modulename": "graphar", "qualname": "Edge.__init__", "kind": "function", "doc": "<p></p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"o\">*</span><span class=\"n\">args</span>, </span><span class=\"param\"><span class=\"o\">**</span><span class=\"n\">kwargs</span></span>)</span>"}, "graphar.Edge.source": {"fullname": "graphar.Edge.source", "modulename": "graphar", "qualname": "Edge.source", "kind": "function", "doc": "<p>source(self: graphar._core.Edge) -> int</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.Edge.destination": {"fullname": "graphar.Edge.destination", "modulename": "graphar", "qualname": "Edge.destination", "kind": "function", "doc": "<p>destination(self: graphar._core.Edge) -> int</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.Edge.property": {"fullname": "graphar.Edge.property", "modulename": "graphar", "qualname": "Edge.property", "kind": "function", "doc": "<p>property(self: graphar._core.Edge, arg0: str) -> object</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.Edge.IsValid": {"fullname": "graphar.Edge.IsValid", "modulename": "graphar", "qualname": "Edge.IsValid", "kind": "function", "doc": "<p>IsValid(self: graphar._core.Edge, arg0: str) -> bool</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.VertexIter": {"fullname": "graphar.VertexIter", "modulename": "graphar", "qualname": "VertexIter", "kind": "class", "doc": "<p></p>\n", "bases": "pybind11_builtins.pybind11_object"}, "graphar.VertexIter.__init__": {"fullname": "graphar.VertexIter.__init__", "modulename": "graphar", "qualname": "VertexIter.__init__", "kind": "function", "doc": "<p></p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"o\">*</span><span class=\"n\">args</span>, </span><span class=\"param\"><span class=\"o\">**</span><span class=\"n\">kwargs</span></span>)</span>"}, "graphar.VertexIter.id": {"fullname": "graphar.VertexIter.id", "modulename": "graphar", "qualname": "VertexIter.id", "kind": "function", "doc": "<p>id(self: graphar._core.VertexIter) -> int</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.VertexIter.property": {"fullname": "graphar.VertexIter.property", "modulename": "graphar", "qualname": "VertexIter.property", "kind": "function", "doc": "<p>property(self: graphar._core.VertexIter, arg0: str) -> object</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.VerticesCollection": {"fullname": "graphar.VerticesCollection", "modulename": "graphar", "qualname": "VerticesCollection", "kind": "class", "doc": "<p></p>\n", "bases": "pybind11_builtins.pybind11_object"}, "graphar.VerticesCollection.__init__": {"fullname": "graphar.VerticesCollection.__init__", "modulename": "graphar", "qualname": "VerticesCollection.__init__", "kind": "function", "doc": "<p></p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"o\">*</span><span class=\"n\">args</span>, </span><span class=\"param\"><span class=\"o\">**</span><span class=\"n\">kwargs</span></span>)</span>"}, "graphar.VerticesCollection.begin": {"fullname": "graphar.VerticesCollection.begin", "modulename": "graphar", "qualname": "VerticesCollection.begin", "kind": "function", "doc": "<p>begin(self: graphar._core.VerticesCollection) -> graphar._core.VertexIter</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.VerticesCollection.end": {"fullname": "graphar.VerticesCollection.end", "modulename": "graphar", "qualname": "VerticesCollection.end", "kind": "function", "doc": "<p>end(self: graphar._core.VerticesCollection) -> graphar._core.VertexIter</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.VerticesCollection.find": {"fullname": "graphar.VerticesCollection.find", "modulename": "graphar", "qualname": "VerticesCollection.find", "kind": "function", "doc": "<p>find(self: graphar._core.VerticesCollection, arg0: typing.SupportsInt) -> graphar._core.VertexIter</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.VerticesCollection.size": {"fullname": "graphar.VerticesCollection.size", "modulename": "graphar", "qualname": "VerticesCollection.size", "kind": "function", "doc": "<p>size(self: graphar._core.VerticesCollection) -> int</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.VerticesCollection.Make": {"fullname": "graphar.VerticesCollection.Make", "modulename": "graphar", "qualname": "VerticesCollection.Make", "kind": "function", "doc": "<p>Make(arg0: graphar._core.GraphInfo, arg1: str) -> graphar._core.VerticesCollection</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgeIter": {"fullname": "graphar.EdgeIter", "modulename": "graphar", "qualname": "EdgeIter", "kind": "class", "doc": "<p></p>\n", "bases": "pybind11_builtins.pybind11_object"}, "graphar.EdgeIter.__init__": {"fullname": "graphar.EdgeIter.__init__", "modulename": "graphar", "qualname": "EdgeIter.__init__", "kind": "function", "doc": "<p></p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"o\">*</span><span class=\"n\">args</span>, </span><span class=\"param\"><span class=\"o\">**</span><span class=\"n\">kwargs</span></span>)</span>"}, "graphar.EdgeIter.source": {"fullname": "graphar.EdgeIter.source", "modulename": "graphar", "qualname": "EdgeIter.source", "kind": "function", "doc": "<p>source(self: graphar._core.EdgeIter) -> int</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgeIter.destination": {"fullname": "graphar.EdgeIter.destination", "modulename": "graphar", "qualname": "EdgeIter.destination", "kind": "function", "doc": "<p>destination(self: graphar._core.EdgeIter) -> int</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgeIter.property": {"fullname": "graphar.EdgeIter.property", "modulename": "graphar", "qualname": "EdgeIter.property", "kind": "function", "doc": "<p>property(self: graphar._core.EdgeIter, arg0: str) -> object</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgesCollection": {"fullname": "graphar.EdgesCollection", "modulename": "graphar", "qualname": "EdgesCollection", "kind": "class", "doc": "<p></p>\n", "bases": "pybind11_builtins.pybind11_object"}, "graphar.EdgesCollection.__init__": {"fullname": "graphar.EdgesCollection.__init__", "modulename": "graphar", "qualname": "EdgesCollection.__init__", "kind": "function", "doc": "<p></p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"o\">*</span><span class=\"n\">args</span>, </span><span class=\"param\"><span class=\"o\">**</span><span class=\"n\">kwargs</span></span>)</span>"}, "graphar.EdgesCollection.begin": {"fullname": "graphar.EdgesCollection.begin", "modulename": "graphar", "qualname": "EdgesCollection.begin", "kind": "function", "doc": "<p>begin(self: graphar._core.EdgesCollection) -> graphar._core.EdgeIter</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgesCollection.end": {"fullname": "graphar.EdgesCollection.end", "modulename": "graphar", "qualname": "EdgesCollection.end", "kind": "function", "doc": "<p>end(self: graphar._core.EdgesCollection) -> graphar._core.EdgeIter</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgesCollection.size": {"fullname": "graphar.EdgesCollection.size", "modulename": "graphar", "qualname": "EdgesCollection.size", "kind": "function", "doc": "<p>size(self: graphar._core.EdgesCollection) -> int</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgesCollection.find_src": {"fullname": "graphar.EdgesCollection.find_src", "modulename": "graphar", "qualname": "EdgesCollection.find_src", "kind": "function", "doc": "<p>find_src(self: graphar._core.EdgesCollection, arg0: typing.SupportsInt, arg1: graphar._core.EdgeIter) -> graphar._core.EdgeIter</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgesCollection.find_dst": {"fullname": "graphar.EdgesCollection.find_dst", "modulename": "graphar", "qualname": "EdgesCollection.find_dst", "kind": "function", "doc": "<p>find_dst(self: graphar._core.EdgesCollection, arg0: typing.SupportsInt, arg1: graphar._core.EdgeIter) -> graphar._core.EdgeIter</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgesCollection.Make": {"fullname": "graphar.EdgesCollection.Make", "modulename": "graphar", "qualname": "EdgesCollection.Make", "kind": "function", "doc": "<p>Make(arg0: graphar._core.GraphInfo, arg1: str, arg2: str, arg3: str, arg4: graphar._core.AdjListType) -> graphar._core.EdgesCollection</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.BuilderVertex": {"fullname": "graphar.BuilderVertex", "modulename": "graphar", "qualname": "BuilderVertex", "kind": "class", "doc": "<p></p>\n", "bases": "pybind11_builtins.pybind11_object"}, "graphar.BuilderVertex.__init__": {"fullname": "graphar.BuilderVertex.__init__", "modulename": "graphar", "qualname": "BuilderVertex.__init__", "kind": "function", "doc": "<p>__init__(<em>args, *</em>kwargs)\nOverloaded function.</p>\n\n<ol>\n<li><p>__init__(self: graphar._core.BuilderVertex) -> None</p></li>\n<li><p>__init__(self: graphar._core.BuilderVertex, arg0: typing.SupportsInt) -> None</p></li>\n</ol>\n", "signature": "<span class=\"signature pdoc-code condensed\">()</span>"}, "graphar.BuilderVertex.GetId": {"fullname": "graphar.BuilderVertex.GetId", "modulename": "graphar", "qualname": "BuilderVertex.GetId", "kind": "function", "doc": "<p>GetId(self: graphar._core.BuilderVertex) -> int</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.BuilderVertex.SetId": {"fullname": "graphar.BuilderVertex.SetId", "modulename": "graphar", "qualname": "BuilderVertex.SetId", "kind": "function", "doc": "<p>SetId(self: graphar._core.BuilderVertex, arg0: typing.SupportsInt) -> None</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.BuilderVertex.Empty": {"fullname": "graphar.BuilderVertex.Empty", "modulename": "graphar", "qualname": "BuilderVertex.Empty", "kind": "function", "doc": "<p>Empty(self: graphar._core.BuilderVertex) -> bool</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.BuilderVertex.AddProperty": {"fullname": "graphar.BuilderVertex.AddProperty", "modulename": "graphar", "qualname": "BuilderVertex.AddProperty", "kind": "function", "doc": "<p>AddProperty(self: graphar._core.BuilderVertex, arg0: str, arg1: object) -> None</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.BuilderVertex.GetProperty": {"fullname": "graphar.BuilderVertex.GetProperty", "modulename": "graphar", "qualname": "BuilderVertex.GetProperty", "kind": "function", "doc": "<p>GetProperty(self: graphar._core.BuilderVertex, arg0: str) -> object</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.BuilderVertex.GetProperties": {"fullname": "graphar.BuilderVertex.GetProperties", "modulename": "graphar", "qualname": "BuilderVertex.GetProperties", "kind": "function", "doc": "<p>GetProperties(self: graphar._core.BuilderVertex) -> dict[str, std::any]</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.BuilderVertex.ContainProperty": {"fullname": "graphar.BuilderVertex.ContainProperty", "modulename": "graphar", "qualname": "BuilderVertex.ContainProperty", "kind": "function", "doc": "<p>ContainProperty(self: graphar._core.BuilderVertex, arg0: str) -> bool</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.VerticesBuilder": {"fullname": "graphar.VerticesBuilder", "modulename": "graphar", "qualname": "VerticesBuilder", "kind": "class", "doc": "<p></p>\n", "bases": "pybind11_builtins.pybind11_object"}, "graphar.VerticesBuilder.__init__": {"fullname": "graphar.VerticesBuilder.__init__", "modulename": "graphar", "qualname": "VerticesBuilder.__init__", "kind": "function", "doc": "<p></p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"o\">*</span><span class=\"n\">args</span>, </span><span class=\"param\"><span class=\"o\">**</span><span class=\"n\">kwargs</span></span>)</span>"}, "graphar.VerticesBuilder.Clear": {"fullname": "graphar.VerticesBuilder.Clear", "modulename": "graphar", "qualname": "VerticesBuilder.Clear", "kind": "function", "doc": "<p>Clear(self: graphar._core.VerticesBuilder) -> None</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.VerticesBuilder.SetWriterOptions": {"fullname": "graphar.VerticesBuilder.SetWriterOptions", "modulename": "graphar", "qualname": "VerticesBuilder.SetWriterOptions", "kind": "function", "doc": "<p>SetWriterOptions(self: graphar._core.VerticesBuilder, arg0: graphar._core.WriterOptions) -> None</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.VerticesBuilder.GetWriterOptions": {"fullname": "graphar.VerticesBuilder.GetWriterOptions", "modulename": "graphar", "qualname": "VerticesBuilder.GetWriterOptions", "kind": "function", "doc": "<p>GetWriterOptions(self: graphar._core.VerticesBuilder) -> graphar._core.WriterOptions</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.VerticesBuilder.SetValidateLevel": {"fullname": "graphar.VerticesBuilder.SetValidateLevel", "modulename": "graphar", "qualname": "VerticesBuilder.SetValidateLevel", "kind": "function", "doc": "<p>SetValidateLevel(self: graphar._core.VerticesBuilder, arg0: graphar._core.ValidateLevel) -> None</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.VerticesBuilder.GetValidateLevel": {"fullname": "graphar.VerticesBuilder.GetValidateLevel", "modulename": "graphar", "qualname": "VerticesBuilder.GetValidateLevel", "kind": "function", "doc": "<p>GetValidateLevel(self: graphar._core.VerticesBuilder) -> graphar._core.ValidateLevel</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.VerticesBuilder.AddVertex": {"fullname": "graphar.VerticesBuilder.AddVertex", "modulename": "graphar", "qualname": "VerticesBuilder.AddVertex", "kind": "function", "doc": "<p>AddVertex(self: graphar._core.VerticesBuilder, v: graphar._core.BuilderVertex, index: typing.SupportsInt = -1, validate_level: graphar._core.ValidateLevel = <ValidateLevel.default_validate: 0>) -> None</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.VerticesBuilder.GetNum": {"fullname": "graphar.VerticesBuilder.GetNum", "modulename": "graphar", "qualname": "VerticesBuilder.GetNum", "kind": "function", "doc": "<p>GetNum(self: graphar._core.VerticesBuilder) -> int</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.VerticesBuilder.Dump": {"fullname": "graphar.VerticesBuilder.Dump", "modulename": "graphar", "qualname": "VerticesBuilder.Dump", "kind": "function", "doc": "<p>Dump(self: graphar._core.VerticesBuilder) -> None</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.VerticesBuilder.Make": {"fullname": "graphar.VerticesBuilder.Make", "modulename": "graphar", "qualname": "VerticesBuilder.Make", "kind": "function", "doc": "<p>Make(<em>args, *</em>kwargs)\nOverloaded function.</p>\n\n<ol>\n<li><p>Make(vertex_info: graphar._core.VertexInfo, prefix: str, writer_options: graphar._core.WriterOptions = None, start_vertex_index: typing.SupportsInt = 0, validate_level: graphar._core.ValidateLevel = <ValidateLevel.no_validate: 1>) -> graphar._core.VerticesBuilder</p></li>\n<li><p>Make(graph_info: graphar._core.GraphInfo, type: str, writer_options: graphar._core.WriterOptions = None, start_vertex_index: typing.SupportsInt = 0, validate_level: graphar._core.ValidateLevel = <ValidateLevel.no_validate: 1>) -> graphar._core.VerticesBuilder</p></li>\n<li><p>Make(vertex_info: graphar._core.VertexInfo, prefix: str, start_vertex_index: typing.SupportsInt = 0) -> graphar._core.VerticesBuilder</p></li>\n</ol>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.BuilderEdge": {"fullname": "graphar.BuilderEdge", "modulename": "graphar", "qualname": "BuilderEdge", "kind": "class", "doc": "<p></p>\n", "bases": "pybind11_builtins.pybind11_object"}, "graphar.BuilderEdge.__init__": {"fullname": "graphar.BuilderEdge.__init__", "modulename": "graphar", "qualname": "BuilderEdge.__init__", "kind": "function", "doc": "<p>__init__(self: graphar._core.BuilderEdge, arg0: typing.SupportsInt, arg1: typing.SupportsInt) -> None</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">()</span>"}, "graphar.BuilderEdge.Empty": {"fullname": "graphar.BuilderEdge.Empty", "modulename": "graphar", "qualname": "BuilderEdge.Empty", "kind": "function", "doc": "<p>Empty(self: graphar._core.BuilderEdge) -> bool</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.BuilderEdge.GetSource": {"fullname": "graphar.BuilderEdge.GetSource", "modulename": "graphar", "qualname": "BuilderEdge.GetSource", "kind": "function", "doc": "<p>GetSource(self: graphar._core.BuilderEdge) -> int</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.BuilderEdge.GetDestination": {"fullname": "graphar.BuilderEdge.GetDestination", "modulename": "graphar", "qualname": "BuilderEdge.GetDestination", "kind": "function", "doc": "<p>GetDestination(self: graphar._core.BuilderEdge) -> int</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.BuilderEdge.AddProperty": {"fullname": "graphar.BuilderEdge.AddProperty", "modulename": "graphar", "qualname": "BuilderEdge.AddProperty", "kind": "function", "doc": "<p>AddProperty(self: graphar._core.BuilderEdge, arg0: str, arg1: object) -> None</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.BuilderEdge.GetProperty": {"fullname": "graphar.BuilderEdge.GetProperty", "modulename": "graphar", "qualname": "BuilderEdge.GetProperty", "kind": "function", "doc": "<p>GetProperty(self: graphar._core.BuilderEdge, arg0: str) -> object</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.BuilderEdge.GetProperties": {"fullname": "graphar.BuilderEdge.GetProperties", "modulename": "graphar", "qualname": "BuilderEdge.GetProperties", "kind": "function", "doc": "<p>GetProperties(self: graphar._core.BuilderEdge) -> dict[str, std::any]</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.BuilderEdge.ContainProperty": {"fullname": "graphar.BuilderEdge.ContainProperty", "modulename": "graphar", "qualname": "BuilderEdge.ContainProperty", "kind": "function", "doc": "<p>ContainProperty(self: graphar._core.BuilderEdge, arg0: str) -> bool</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgesBuilder": {"fullname": "graphar.EdgesBuilder", "modulename": "graphar", "qualname": "EdgesBuilder", "kind": "class", "doc": "<p></p>\n", "bases": "pybind11_builtins.pybind11_object"}, "graphar.EdgesBuilder.__init__": {"fullname": "graphar.EdgesBuilder.__init__", "modulename": "graphar", "qualname": "EdgesBuilder.__init__", "kind": "function", "doc": "<p></p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"o\">*</span><span class=\"n\">args</span>, </span><span class=\"param\"><span class=\"o\">**</span><span class=\"n\">kwargs</span></span>)</span>"}, "graphar.EdgesBuilder.SetValidateLevel": {"fullname": "graphar.EdgesBuilder.SetValidateLevel", "modulename": "graphar", "qualname": "EdgesBuilder.SetValidateLevel", "kind": "function", "doc": "<p>SetValidateLevel(self: graphar._core.EdgesBuilder, arg0: graphar._core.ValidateLevel) -> None</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgesBuilder.SetWriterOptions": {"fullname": "graphar.EdgesBuilder.SetWriterOptions", "modulename": "graphar", "qualname": "EdgesBuilder.SetWriterOptions", "kind": "function", "doc": "<p>SetWriterOptions(self: graphar._core.EdgesBuilder, arg0: graphar._core.WriterOptions) -> None</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgesBuilder.GetWriterOptions": {"fullname": "graphar.EdgesBuilder.GetWriterOptions", "modulename": "graphar", "qualname": "EdgesBuilder.GetWriterOptions", "kind": "function", "doc": "<p>GetWriterOptions(self: graphar._core.EdgesBuilder) -> graphar._core.WriterOptions</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgesBuilder.GetValidateLevel": {"fullname": "graphar.EdgesBuilder.GetValidateLevel", "modulename": "graphar", "qualname": "EdgesBuilder.GetValidateLevel", "kind": "function", "doc": "<p>GetValidateLevel(self: graphar._core.EdgesBuilder) -> graphar._core.ValidateLevel</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgesBuilder.Clear": {"fullname": "graphar.EdgesBuilder.Clear", "modulename": "graphar", "qualname": "EdgesBuilder.Clear", "kind": "function", "doc": "<p>Clear(self: graphar._core.EdgesBuilder) -> None</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgesBuilder.AddEdge": {"fullname": "graphar.EdgesBuilder.AddEdge", "modulename": "graphar", "qualname": "EdgesBuilder.AddEdge", "kind": "function", "doc": "<p>AddEdge(self: graphar._core.EdgesBuilder, e: graphar._core.BuilderEdge, validate_level: graphar._core.ValidateLevel = <ValidateLevel.default_validate: 0>) -> None</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgesBuilder.GetNum": {"fullname": "graphar.EdgesBuilder.GetNum", "modulename": "graphar", "qualname": "EdgesBuilder.GetNum", "kind": "function", "doc": "<p>GetNum(self: graphar._core.EdgesBuilder) -> int</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgesBuilder.Dump": {"fullname": "graphar.EdgesBuilder.Dump", "modulename": "graphar", "qualname": "EdgesBuilder.Dump", "kind": "function", "doc": "<p>Dump(self: graphar._core.EdgesBuilder) -> None</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "graphar.EdgesBuilder.Make": {"fullname": "graphar.EdgesBuilder.Make", "modulename": "graphar", "qualname": "EdgesBuilder.Make", "kind": "function", "doc": "<p>Make(<em>args, *</em>kwargs)\nOverloaded function.</p>\n\n<ol>\n<li><p>Make(edge_info: graphar._core.EdgeInfo, prefix: str, adj_list_type: graphar._core.AdjListType, num_vertices: typing.SupportsInt, writer_options: graphar._core.WriterOptions = None, validate_level: graphar._core.ValidateLevel = <ValidateLevel.no_validate: 1>) -> graphar._core.EdgesBuilder</p></li>\n<li><p>Make(graph_info: graphar._core.GraphInfo, src_type: str, edge_type: str, dst_type: str, adj_list_type: graphar._core.AdjListType, num_vertices: typing.SupportsInt, writer_options: graphar._core.WriterOptions = None, validate_level: graphar._core.ValidateLevel = <ValidateLevel.no_validate: 1>) -> graphar._core.EdgesBuilder</p></li>\n</ol>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">unknown</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}}, "docInfo": {"graphar": {"qualname": 0, "fullname": 1, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "graphar.GraphInfo": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 3}, "graphar.GraphInfo.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 47}, "graphar.GraphInfo.load": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 38}, "graphar.GraphInfo.add_vertex": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 16}, "graphar.GraphInfo.remove_vertex": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 16}, "graphar.GraphInfo.add_edge": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 16}, "graphar.GraphInfo.remove_edge": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 16}, "graphar.GraphInfo.get_name": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 10}, "graphar.GraphInfo.get_labels": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 10}, "graphar.GraphInfo.get_prefix": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 10}, "graphar.GraphInfo.version": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "graphar.GraphInfo.get_extra_info": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 12}, "graphar.GraphInfo.get_vertex_info": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 15}, "graphar.GraphInfo.get_edge_info": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 19}, "graphar.GraphInfo.get_vertex_info_index": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 14}, "graphar.GraphInfo.get_edge_info_index": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 18}, "graphar.GraphInfo.vertex_info_num": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "graphar.GraphInfo.edge_info_num": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "graphar.GraphInfo.get_vertex_info_by_index": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 18}, "graphar.GraphInfo.get_edge_info_by_index": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 18}, "graphar.GraphInfo.get_vertex_infos": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 13}, "graphar.GraphInfo.get_edge_infos": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 13}, "graphar.GraphInfo.save": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "graphar.GraphInfo.dump": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 9}, "graphar.GraphInfo.is_validated": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 10}, "graphar.VertexInfo": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 3}, "graphar.VertexInfo.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 35}, "graphar.VertexInfo.add_property_group": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 17}, "graphar.VertexInfo.remove_property_group": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 17}, "graphar.VertexInfo.get_type": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 10}, "graphar.VertexInfo.get_chunk_size": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "graphar.VertexInfo.get_prefix": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 10}, "graphar.VertexInfo.version": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "graphar.VertexInfo.get_labels": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 10}, "graphar.VertexInfo.property_group_num": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "graphar.VertexInfo.get_property_groups": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 13}, "graphar.VertexInfo.get_property_group": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 15}, "graphar.VertexInfo.get_property_group_by_index": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 18}, "graphar.VertexInfo.get_property_type": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 15}, "graphar.VertexInfo.get_property_cardinality": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 15}, "graphar.VertexInfo.has_property": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 12}, "graphar.VertexInfo.save": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "graphar.VertexInfo.dump": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 9}, "graphar.VertexInfo.is_primary_key": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 13}, "graphar.VertexInfo.is_nullable_key": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 13}, "graphar.VertexInfo.has_property_group": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 15}, "graphar.VertexInfo.get_file_path": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 18}, "graphar.VertexInfo.get_path_prefix": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 15}, "graphar.VertexInfo.get_vertices_num_file_path": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 13}, "graphar.VertexInfo.is_validated": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 10}, "graphar.EdgeInfo": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 3}, "graphar.EdgeInfo.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 56}, "graphar.EdgeInfo.add_adjacent_list": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 17}, "graphar.EdgeInfo.remove_adjacent_list": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 17}, "graphar.EdgeInfo.add_property_group": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 17}, "graphar.EdgeInfo.remove_property_group": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 17}, "graphar.EdgeInfo.get_src_type": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "graphar.EdgeInfo.get_edge_type": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "graphar.EdgeInfo.get_dst_type": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "graphar.EdgeInfo.get_chunk_size": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "graphar.EdgeInfo.get_src_chunk_size": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 12}, "graphar.EdgeInfo.get_dst_chunk_size": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 12}, "graphar.EdgeInfo.get_prefix": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 10}, "graphar.EdgeInfo.is_directed": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 10}, "graphar.EdgeInfo.version": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "graphar.EdgeInfo.has_adjacent_list_type": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 16}, "graphar.EdgeInfo.has_property": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 12}, "graphar.EdgeInfo.has_property_group": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 15}, "graphar.EdgeInfo.get_adjacent_list": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 17}, "graphar.EdgeInfo.property_group_num": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "graphar.EdgeInfo.get_property_groups": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 13}, "graphar.EdgeInfo.get_property_group": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 15}, "graphar.EdgeInfo.get_property_group_by_index": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 18}, "graphar.EdgeInfo.get_vertices_num_file_path": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 17}, "graphar.EdgeInfo.get_edges_num_file_path": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 20}, "graphar.EdgeInfo.get_adj_list_file_path": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 23}, "graphar.EdgeInfo.get_adj_list_path_prefix": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 17}, "graphar.EdgeInfo.get_adj_list_offset_file_path": {"qualname": 7, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 21}, "graphar.EdgeInfo.get_offset_path_prefix": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 16}, "graphar.EdgeInfo.get_property_file_path": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 26}, "graphar.EdgeInfo.get_property_group_path_prefix": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 21}, "graphar.EdgeInfo.get_property_type": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 15}, "graphar.EdgeInfo.is_primary_key": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 13}, "graphar.EdgeInfo.is_nullable_key": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 13}, "graphar.EdgeInfo.save": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "graphar.EdgeInfo.dump": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 9}, "graphar.EdgeInfo.is_validated": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 10}, "graphar.PropertyGroup": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 3}, "graphar.PropertyGroup.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 23}, "graphar.PropertyGroup.get_properties": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 12}, "graphar.PropertyGroup.has_property": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 12}, "graphar.PropertyGroup.get_file_type": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 13}, "graphar.PropertyGroup.get_prefix": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 10}, "graphar.PropertyGroup.is_validated": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 10}, "graphar.Property": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 3}, "graphar.Property.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 60}, "graphar.Property.name": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "graphar.Property.type": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "graphar.Property.is_primary": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "graphar.Property.is_nullable": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "graphar.Property.cardinality": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "graphar.DataType": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 3}, "graphar.DataType.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 43}, "graphar.DataType.id": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "graphar.DataType.to_type_name": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "graphar.AdjacentList": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 3}, "graphar.AdjacentList.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 21}, "graphar.AdjacentList.get_type": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 12}, "graphar.AdjacentList.get_file_type": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 13}, "graphar.AdjacentList.get_prefix": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 10}, "graphar.AdjacentList.is_validated": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 10}, "graphar.Vertex": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 3}, "graphar.Vertex.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 18, "bases": 0, "doc": 3}, "graphar.Vertex.id": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 9}, "graphar.Vertex.property": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "graphar.Vertex.IsValid": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "graphar.Edge": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 3}, "graphar.Edge.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 18, "bases": 0, "doc": 3}, "graphar.Edge.source": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 9}, "graphar.Edge.destination": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 9}, "graphar.Edge.property": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "graphar.Edge.IsValid": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "graphar.VertexIter": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 3}, "graphar.VertexIter.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 18, "bases": 0, "doc": 3}, "graphar.VertexIter.id": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 9}, "graphar.VertexIter.property": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "graphar.VerticesCollection": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 3}, "graphar.VerticesCollection.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 18, "bases": 0, "doc": 3}, "graphar.VerticesCollection.begin": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "graphar.VerticesCollection.end": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "graphar.VerticesCollection.find": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 14}, "graphar.VerticesCollection.size": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 9}, "graphar.VerticesCollection.Make": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 13}, "graphar.EdgeIter": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 3}, "graphar.EdgeIter.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 18, "bases": 0, "doc": 3}, "graphar.EdgeIter.source": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 9}, "graphar.EdgeIter.destination": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 9}, "graphar.EdgeIter.property": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "graphar.EdgesCollection": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 3}, "graphar.EdgesCollection.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 18, "bases": 0, "doc": 3}, "graphar.EdgesCollection.begin": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "graphar.EdgesCollection.end": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "graphar.EdgesCollection.size": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 9}, "graphar.EdgesCollection.find_src": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 19}, "graphar.EdgesCollection.find_dst": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 19}, "graphar.EdgesCollection.Make": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 21}, "graphar.BuilderVertex": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 3}, "graphar.BuilderVertex.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 42}, "graphar.BuilderVertex.GetId": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 9}, "graphar.BuilderVertex.SetId": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 12}, "graphar.BuilderVertex.Empty": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 9}, "graphar.BuilderVertex.AddProperty": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 13}, "graphar.BuilderVertex.GetProperty": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "graphar.BuilderVertex.GetProperties": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 10}, "graphar.BuilderVertex.ContainProperty": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "graphar.VerticesBuilder": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 3}, "graphar.VerticesBuilder.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 18, "bases": 0, "doc": 3}, "graphar.VerticesBuilder.Clear": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 9}, "graphar.VerticesBuilder.SetWriterOptions": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 13}, "graphar.VerticesBuilder.GetWriterOptions": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "graphar.VerticesBuilder.SetValidateLevel": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 13}, "graphar.VerticesBuilder.GetValidateLevel": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "graphar.VerticesBuilder.AddVertex": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 24}, "graphar.VerticesBuilder.GetNum": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 9}, "graphar.VerticesBuilder.Dump": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 9}, "graphar.VerticesBuilder.Make": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 106}, "graphar.BuilderEdge": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 3}, "graphar.BuilderEdge.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 16}, "graphar.BuilderEdge.Empty": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 9}, "graphar.BuilderEdge.GetSource": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 9}, "graphar.BuilderEdge.GetDestination": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 9}, "graphar.BuilderEdge.AddProperty": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 13}, "graphar.BuilderEdge.GetProperty": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "graphar.BuilderEdge.GetProperties": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 10}, "graphar.BuilderEdge.ContainProperty": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "graphar.EdgesBuilder": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 3}, "graphar.EdgesBuilder.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 18, "bases": 0, "doc": 3}, "graphar.EdgesBuilder.SetValidateLevel": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 13}, "graphar.EdgesBuilder.SetWriterOptions": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 13}, "graphar.EdgesBuilder.GetWriterOptions": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "graphar.EdgesBuilder.GetValidateLevel": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "graphar.EdgesBuilder.Clear": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 9}, "graphar.EdgesBuilder.AddEdge": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 20}, "graphar.EdgesBuilder.GetNum": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 9}, "graphar.EdgesBuilder.Dump": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 9}, "graphar.EdgesBuilder.Make": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 99}}, "length": 187, "save": true}, "index": {"qualname": {"root": {"docs": {"graphar.GraphInfo.__init__": {"tf": 1}, "graphar.VertexInfo.__init__": {"tf": 1}, "graphar.EdgeInfo.__init__": {"tf": 1}, "graphar.PropertyGroup.__init__": {"tf": 1}, "graphar.Property.__init__": {"tf": 1}, "graphar.DataType.__init__": {"tf": 1}, "graphar.AdjacentList.__init__": {"tf": 1}, "graphar.Vertex.__init__": {"tf": 1}, "graphar.Edge.__init__": {"tf": 1}, "graphar.VertexIter.__init__": {"tf": 1}, "graphar.VerticesCollection.__init__": {"tf": 1}, "graphar.EdgeIter.__init__": {"tf": 1}, "graphar.EdgesCollection.__init__": {"tf": 1}, "graphar.BuilderVertex.__init__": {"tf": 1}, "graphar.VerticesBuilder.__init__": {"tf": 1}, "graphar.BuilderEdge.__init__": {"tf": 1}, "graphar.EdgesBuilder.__init__": {"tf": 1}}, "df": 17, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"graphar.GraphInfo": {"tf": 1}, "graphar.GraphInfo.__init__": {"tf": 1}, "graphar.GraphInfo.load": {"tf": 1}, "graphar.GraphInfo.add_vertex": {"tf": 1}, "graphar.GraphInfo.remove_vertex": {"tf": 1}, "graphar.GraphInfo.add_edge": {"tf": 1}, "graphar.GraphInfo.remove_edge": {"tf": 1}, "graphar.GraphInfo.get_name": {"tf": 1}, "graphar.GraphInfo.get_labels": {"tf": 1}, "graphar.GraphInfo.get_prefix": {"tf": 1}, "graphar.GraphInfo.version": {"tf": 1}, "graphar.GraphInfo.get_extra_info": {"tf": 1}, "graphar.GraphInfo.get_vertex_info": {"tf": 1}, "graphar.GraphInfo.get_edge_info": {"tf": 1}, "graphar.GraphInfo.get_vertex_info_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_index": {"tf": 1}, "graphar.GraphInfo.vertex_info_num": {"tf": 1}, "graphar.GraphInfo.edge_info_num": {"tf": 1}, "graphar.GraphInfo.get_vertex_info_by_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_by_index": {"tf": 1}, "graphar.GraphInfo.get_vertex_infos": {"tf": 1}, "graphar.GraphInfo.get_edge_infos": {"tf": 1}, "graphar.GraphInfo.save": {"tf": 1}, "graphar.GraphInfo.dump": {"tf": 1}, "graphar.GraphInfo.is_validated": {"tf": 1}}, "df": 25}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"graphar.VertexInfo.add_property_group": {"tf": 1}, "graphar.VertexInfo.remove_property_group": {"tf": 1}, "graphar.VertexInfo.property_group_num": {"tf": 1}, "graphar.VertexInfo.get_property_group": {"tf": 1}, "graphar.VertexInfo.get_property_group_by_index": {"tf": 1}, "graphar.VertexInfo.has_property_group": {"tf": 1}, "graphar.EdgeInfo.add_property_group": {"tf": 1}, "graphar.EdgeInfo.remove_property_group": {"tf": 1}, "graphar.EdgeInfo.has_property_group": {"tf": 1}, "graphar.EdgeInfo.property_group_num": {"tf": 1}, "graphar.EdgeInfo.get_property_group": {"tf": 1}, "graphar.EdgeInfo.get_property_group_by_index": {"tf": 1}, "graphar.EdgeInfo.get_property_group_path_prefix": {"tf": 1}}, "df": 13, "s": {"docs": {"graphar.VertexInfo.get_property_groups": {"tf": 1}, "graphar.EdgeInfo.get_property_groups": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"graphar.GraphInfo.get_name": {"tf": 1}, "graphar.GraphInfo.get_labels": {"tf": 1}, "graphar.GraphInfo.get_prefix": {"tf": 1}, "graphar.GraphInfo.get_extra_info": {"tf": 1}, "graphar.GraphInfo.get_vertex_info": {"tf": 1}, "graphar.GraphInfo.get_edge_info": {"tf": 1}, "graphar.GraphInfo.get_vertex_info_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_index": {"tf": 1}, "graphar.GraphInfo.get_vertex_info_by_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_by_index": {"tf": 1}, "graphar.GraphInfo.get_vertex_infos": {"tf": 1}, "graphar.GraphInfo.get_edge_infos": {"tf": 1}, "graphar.VertexInfo.get_type": {"tf": 1}, "graphar.VertexInfo.get_chunk_size": {"tf": 1}, "graphar.VertexInfo.get_prefix": {"tf": 1}, "graphar.VertexInfo.get_labels": {"tf": 1}, "graphar.VertexInfo.get_property_groups": {"tf": 1}, "graphar.VertexInfo.get_property_group": {"tf": 1}, "graphar.VertexInfo.get_property_group_by_index": {"tf": 1}, "graphar.VertexInfo.get_property_type": {"tf": 1}, "graphar.VertexInfo.get_property_cardinality": {"tf": 1}, "graphar.VertexInfo.get_file_path": {"tf": 1}, "graphar.VertexInfo.get_path_prefix": {"tf": 1}, "graphar.VertexInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_src_type": {"tf": 1}, "graphar.EdgeInfo.get_edge_type": {"tf": 1}, "graphar.EdgeInfo.get_dst_type": {"tf": 1}, "graphar.EdgeInfo.get_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_src_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_dst_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_prefix": {"tf": 1}, "graphar.EdgeInfo.get_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.get_property_groups": {"tf": 1}, "graphar.EdgeInfo.get_property_group": {"tf": 1}, "graphar.EdgeInfo.get_property_group_by_index": {"tf": 1}, "graphar.EdgeInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_edges_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_offset_file_path": {"tf": 1}, "graphar.EdgeInfo.get_offset_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_property_file_path": {"tf": 1}, "graphar.EdgeInfo.get_property_group_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_property_type": {"tf": 1}, "graphar.PropertyGroup.get_properties": {"tf": 1}, "graphar.PropertyGroup.get_file_type": {"tf": 1}, "graphar.PropertyGroup.get_prefix": {"tf": 1}, "graphar.AdjacentList.get_type": {"tf": 1}, "graphar.AdjacentList.get_file_type": {"tf": 1}, "graphar.AdjacentList.get_prefix": {"tf": 1}}, "df": 50, "i": {"docs": {}, "df": 0, "d": {"docs": {"graphar.BuilderVertex.GetId": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"graphar.BuilderVertex.GetProperty": {"tf": 1}, "graphar.BuilderEdge.GetProperty": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"graphar.BuilderVertex.GetProperties": {"tf": 1}, "graphar.BuilderEdge.GetProperties": {"tf": 1}}, "df": 2}}}}}}}}}}, "w": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"graphar.VerticesBuilder.GetWriterOptions": {"tf": 1}, "graphar.EdgesBuilder.GetWriterOptions": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"graphar.VerticesBuilder.GetValidateLevel": {"tf": 1}, "graphar.EdgesBuilder.GetValidateLevel": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"graphar.VerticesBuilder.GetNum": {"tf": 1}, "graphar.EdgesBuilder.GetNum": {"tf": 1}}, "df": 2}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"graphar.BuilderEdge.GetSource": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"graphar.BuilderEdge.GetDestination": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"graphar.GraphInfo.__init__": {"tf": 1}, "graphar.VertexInfo.__init__": {"tf": 1}, "graphar.EdgeInfo.__init__": {"tf": 1}, "graphar.PropertyGroup.__init__": {"tf": 1}, "graphar.Property.__init__": {"tf": 1}, "graphar.DataType.__init__": {"tf": 1}, "graphar.AdjacentList.__init__": {"tf": 1}, "graphar.Vertex.__init__": {"tf": 1}, "graphar.Edge.__init__": {"tf": 1}, "graphar.VertexIter.__init__": {"tf": 1}, "graphar.VerticesCollection.__init__": {"tf": 1}, "graphar.EdgeIter.__init__": {"tf": 1}, "graphar.EdgesCollection.__init__": {"tf": 1}, "graphar.BuilderVertex.__init__": {"tf": 1}, "graphar.VerticesBuilder.__init__": {"tf": 1}, "graphar.BuilderEdge.__init__": {"tf": 1}, "graphar.EdgesBuilder.__init__": {"tf": 1}}, "df": 17}}, "f": {"docs": {}, "df": 0, "o": {"docs": {"graphar.GraphInfo.get_extra_info": {"tf": 1}, "graphar.GraphInfo.get_vertex_info": {"tf": 1}, "graphar.GraphInfo.get_edge_info": {"tf": 1}, "graphar.GraphInfo.get_vertex_info_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_index": {"tf": 1}, "graphar.GraphInfo.vertex_info_num": {"tf": 1}, "graphar.GraphInfo.edge_info_num": {"tf": 1}, "graphar.GraphInfo.get_vertex_info_by_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_by_index": {"tf": 1}}, "df": 9, "s": {"docs": {"graphar.GraphInfo.get_vertex_infos": {"tf": 1}, "graphar.GraphInfo.get_edge_infos": {"tf": 1}}, "df": 2}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"graphar.GraphInfo.get_vertex_info_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_index": {"tf": 1}, "graphar.GraphInfo.get_vertex_info_by_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_by_index": {"tf": 1}, "graphar.VertexInfo.get_property_group_by_index": {"tf": 1}, "graphar.EdgeInfo.get_property_group_by_index": {"tf": 1}}, "df": 6}}}}, "s": {"docs": {"graphar.GraphInfo.is_validated": {"tf": 1}, "graphar.VertexInfo.is_primary_key": {"tf": 1}, "graphar.VertexInfo.is_nullable_key": {"tf": 1}, "graphar.VertexInfo.is_validated": {"tf": 1}, "graphar.EdgeInfo.is_directed": {"tf": 1}, "graphar.EdgeInfo.is_primary_key": {"tf": 1}, "graphar.EdgeInfo.is_nullable_key": {"tf": 1}, "graphar.EdgeInfo.is_validated": {"tf": 1}, "graphar.PropertyGroup.is_validated": {"tf": 1}, "graphar.Property.is_primary": {"tf": 1}, "graphar.Property.is_nullable": {"tf": 1}, "graphar.AdjacentList.is_validated": {"tf": 1}}, "df": 12, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"graphar.Vertex.IsValid": {"tf": 1}, "graphar.Edge.IsValid": {"tf": 1}}, "df": 2}}}}}}, "d": {"docs": {"graphar.DataType.id": {"tf": 1}, "graphar.Vertex.id": {"tf": 1}, "graphar.VertexIter.id": {"tf": 1}}, "df": 3}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"graphar.GraphInfo.load": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"graphar.GraphInfo.get_labels": {"tf": 1}, "graphar.VertexInfo.get_labels": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"graphar.EdgeInfo.add_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.remove_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.has_adjacent_list_type": {"tf": 1}, "graphar.EdgeInfo.get_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_offset_file_path": {"tf": 1}}, "df": 7}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {"graphar.GraphInfo.add_vertex": {"tf": 1}, "graphar.GraphInfo.add_edge": {"tf": 1}, "graphar.VertexInfo.add_property_group": {"tf": 1}, "graphar.EdgeInfo.add_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.add_property_group": {"tf": 1}}, "df": 5, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"graphar.BuilderVertex.AddProperty": {"tf": 1}, "graphar.BuilderEdge.AddProperty": {"tf": 1}}, "df": 2}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"graphar.VerticesBuilder.AddVertex": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"graphar.EdgesBuilder.AddEdge": {"tf": 1}}, "df": 1}}}}}, "j": {"docs": {"graphar.EdgeInfo.get_adj_list_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_offset_file_path": {"tf": 1}}, "df": 3, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"graphar.EdgeInfo.add_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.remove_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.has_adjacent_list_type": {"tf": 1}, "graphar.EdgeInfo.get_adjacent_list": {"tf": 1}}, "df": 4, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"graphar.AdjacentList": {"tf": 1}, "graphar.AdjacentList.__init__": {"tf": 1}, "graphar.AdjacentList.get_type": {"tf": 1}, "graphar.AdjacentList.get_file_type": {"tf": 1}, "graphar.AdjacentList.get_prefix": {"tf": 1}, "graphar.AdjacentList.is_validated": {"tf": 1}}, "df": 6}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"graphar.GraphInfo.add_vertex": {"tf": 1}, "graphar.GraphInfo.remove_vertex": {"tf": 1}, "graphar.GraphInfo.get_vertex_info": {"tf": 1}, "graphar.GraphInfo.get_vertex_info_index": {"tf": 1}, "graphar.GraphInfo.vertex_info_num": {"tf": 1}, "graphar.GraphInfo.get_vertex_info_by_index": {"tf": 1}, "graphar.GraphInfo.get_vertex_infos": {"tf": 1}, "graphar.Vertex": {"tf": 1}, "graphar.Vertex.__init__": {"tf": 1}, "graphar.Vertex.id": {"tf": 1}, "graphar.Vertex.property": {"tf": 1}, "graphar.Vertex.IsValid": {"tf": 1}}, "df": 12, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"graphar.VertexInfo": {"tf": 1}, "graphar.VertexInfo.__init__": {"tf": 1}, "graphar.VertexInfo.add_property_group": {"tf": 1}, "graphar.VertexInfo.remove_property_group": {"tf": 1}, "graphar.VertexInfo.get_type": {"tf": 1}, "graphar.VertexInfo.get_chunk_size": {"tf": 1}, "graphar.VertexInfo.get_prefix": {"tf": 1}, "graphar.VertexInfo.version": {"tf": 1}, "graphar.VertexInfo.get_labels": {"tf": 1}, "graphar.VertexInfo.property_group_num": {"tf": 1}, "graphar.VertexInfo.get_property_groups": {"tf": 1}, "graphar.VertexInfo.get_property_group": {"tf": 1}, "graphar.VertexInfo.get_property_group_by_index": {"tf": 1}, "graphar.VertexInfo.get_property_type": {"tf": 1}, "graphar.VertexInfo.get_property_cardinality": {"tf": 1}, "graphar.VertexInfo.has_property": {"tf": 1}, "graphar.VertexInfo.save": {"tf": 1}, "graphar.VertexInfo.dump": {"tf": 1}, "graphar.VertexInfo.is_primary_key": {"tf": 1}, "graphar.VertexInfo.is_nullable_key": {"tf": 1}, "graphar.VertexInfo.has_property_group": {"tf": 1}, "graphar.VertexInfo.get_file_path": {"tf": 1}, "graphar.VertexInfo.get_path_prefix": {"tf": 1}, "graphar.VertexInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.VertexInfo.is_validated": {"tf": 1}}, "df": 25}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"graphar.VertexIter": {"tf": 1}, "graphar.VertexIter.__init__": {"tf": 1}, "graphar.VertexIter.id": {"tf": 1}, "graphar.VertexIter.property": {"tf": 1}}, "df": 4}}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"graphar.VertexInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_vertices_num_file_path": {"tf": 1}}, "df": 2, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"graphar.VerticesCollection": {"tf": 1}, "graphar.VerticesCollection.__init__": {"tf": 1}, "graphar.VerticesCollection.begin": {"tf": 1}, "graphar.VerticesCollection.end": {"tf": 1}, "graphar.VerticesCollection.find": {"tf": 1}, "graphar.VerticesCollection.size": {"tf": 1}, "graphar.VerticesCollection.Make": {"tf": 1}}, "df": 7}}}}}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"graphar.VerticesBuilder": {"tf": 1}, "graphar.VerticesBuilder.__init__": {"tf": 1}, "graphar.VerticesBuilder.Clear": {"tf": 1}, "graphar.VerticesBuilder.SetWriterOptions": {"tf": 1}, "graphar.VerticesBuilder.GetWriterOptions": {"tf": 1}, "graphar.VerticesBuilder.SetValidateLevel": {"tf": 1}, "graphar.VerticesBuilder.GetValidateLevel": {"tf": 1}, "graphar.VerticesBuilder.AddVertex": {"tf": 1}, "graphar.VerticesBuilder.GetNum": {"tf": 1}, "graphar.VerticesBuilder.Dump": {"tf": 1}, "graphar.VerticesBuilder.Make": {"tf": 1}}, "df": 11}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"graphar.GraphInfo.version": {"tf": 1}, "graphar.VertexInfo.version": {"tf": 1}, "graphar.EdgeInfo.version": {"tf": 1}}, "df": 3}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"graphar.GraphInfo.is_validated": {"tf": 1}, "graphar.VertexInfo.is_validated": {"tf": 1}, "graphar.EdgeInfo.is_validated": {"tf": 1}, "graphar.PropertyGroup.is_validated": {"tf": 1}, "graphar.AdjacentList.is_validated": {"tf": 1}}, "df": 5}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"graphar.GraphInfo.remove_vertex": {"tf": 1}, "graphar.GraphInfo.remove_edge": {"tf": 1}, "graphar.VertexInfo.remove_property_group": {"tf": 1}, "graphar.EdgeInfo.remove_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.remove_property_group": {"tf": 1}}, "df": 5}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"graphar.GraphInfo.add_edge": {"tf": 1}, "graphar.GraphInfo.remove_edge": {"tf": 1}, "graphar.GraphInfo.get_edge_info": {"tf": 1}, "graphar.GraphInfo.get_edge_info_index": {"tf": 1}, "graphar.GraphInfo.edge_info_num": {"tf": 1}, "graphar.GraphInfo.get_edge_info_by_index": {"tf": 1}, "graphar.GraphInfo.get_edge_infos": {"tf": 1}, "graphar.EdgeInfo.get_edge_type": {"tf": 1}, "graphar.Edge": {"tf": 1}, "graphar.Edge.__init__": {"tf": 1}, "graphar.Edge.source": {"tf": 1}, "graphar.Edge.destination": {"tf": 1}, "graphar.Edge.property": {"tf": 1}, "graphar.Edge.IsValid": {"tf": 1}}, "df": 14, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"graphar.EdgeInfo": {"tf": 1}, "graphar.EdgeInfo.__init__": {"tf": 1}, "graphar.EdgeInfo.add_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.remove_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.add_property_group": {"tf": 1}, "graphar.EdgeInfo.remove_property_group": {"tf": 1}, "graphar.EdgeInfo.get_src_type": {"tf": 1}, "graphar.EdgeInfo.get_edge_type": {"tf": 1}, "graphar.EdgeInfo.get_dst_type": {"tf": 1}, "graphar.EdgeInfo.get_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_src_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_dst_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_prefix": {"tf": 1}, "graphar.EdgeInfo.is_directed": {"tf": 1}, "graphar.EdgeInfo.version": {"tf": 1}, "graphar.EdgeInfo.has_adjacent_list_type": {"tf": 1}, "graphar.EdgeInfo.has_property": {"tf": 1}, "graphar.EdgeInfo.has_property_group": {"tf": 1}, "graphar.EdgeInfo.get_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.property_group_num": {"tf": 1}, "graphar.EdgeInfo.get_property_groups": {"tf": 1}, "graphar.EdgeInfo.get_property_group": {"tf": 1}, "graphar.EdgeInfo.get_property_group_by_index": {"tf": 1}, "graphar.EdgeInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_edges_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_offset_file_path": {"tf": 1}, "graphar.EdgeInfo.get_offset_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_property_file_path": {"tf": 1}, "graphar.EdgeInfo.get_property_group_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_property_type": {"tf": 1}, "graphar.EdgeInfo.is_primary_key": {"tf": 1}, "graphar.EdgeInfo.is_nullable_key": {"tf": 1}, "graphar.EdgeInfo.save": {"tf": 1}, "graphar.EdgeInfo.dump": {"tf": 1}, "graphar.EdgeInfo.is_validated": {"tf": 1}}, "df": 37}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"graphar.EdgeIter": {"tf": 1}, "graphar.EdgeIter.__init__": {"tf": 1}, "graphar.EdgeIter.source": {"tf": 1}, "graphar.EdgeIter.destination": {"tf": 1}, "graphar.EdgeIter.property": {"tf": 1}}, "df": 5}}}}, "s": {"docs": {"graphar.EdgeInfo.get_edges_num_file_path": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"graphar.EdgesCollection": {"tf": 1}, "graphar.EdgesCollection.__init__": {"tf": 1}, "graphar.EdgesCollection.begin": {"tf": 1}, "graphar.EdgesCollection.end": {"tf": 1}, "graphar.EdgesCollection.size": {"tf": 1}, "graphar.EdgesCollection.find_src": {"tf": 1}, "graphar.EdgesCollection.find_dst": {"tf": 1}, "graphar.EdgesCollection.Make": {"tf": 1}}, "df": 8}}}}}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"graphar.EdgesBuilder": {"tf": 1}, "graphar.EdgesBuilder.__init__": {"tf": 1}, "graphar.EdgesBuilder.SetValidateLevel": {"tf": 1}, "graphar.EdgesBuilder.SetWriterOptions": {"tf": 1}, "graphar.EdgesBuilder.GetWriterOptions": {"tf": 1}, "graphar.EdgesBuilder.GetValidateLevel": {"tf": 1}, "graphar.EdgesBuilder.Clear": {"tf": 1}, "graphar.EdgesBuilder.AddEdge": {"tf": 1}, "graphar.EdgesBuilder.GetNum": {"tf": 1}, "graphar.EdgesBuilder.Dump": {"tf": 1}, "graphar.EdgesBuilder.Make": {"tf": 1}}, "df": 11}}}}}}}}}}}, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {"graphar.GraphInfo.get_extra_info": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"graphar.VerticesCollection.end": {"tf": 1}, "graphar.EdgesCollection.end": {"tf": 1}}, "df": 2}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"graphar.BuilderVertex.Empty": {"tf": 1}, "graphar.BuilderEdge.Empty": {"tf": 1}}, "df": 2}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"graphar.GraphInfo.get_name": {"tf": 1}, "graphar.Property.name": {"tf": 1}, "graphar.DataType.to_type_name": {"tf": 1}}, "df": 3}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {"graphar.GraphInfo.vertex_info_num": {"tf": 1}, "graphar.GraphInfo.edge_info_num": {"tf": 1}, "graphar.VertexInfo.property_group_num": {"tf": 1}, "graphar.VertexInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.EdgeInfo.property_group_num": {"tf": 1}, "graphar.EdgeInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_edges_num_file_path": {"tf": 1}}, "df": 7}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"graphar.VertexInfo.is_nullable_key": {"tf": 1}, "graphar.EdgeInfo.is_nullable_key": {"tf": 1}, "graphar.Property.is_nullable": {"tf": 1}}, "df": 3}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"graphar.GraphInfo.get_prefix": {"tf": 1}, "graphar.VertexInfo.get_prefix": {"tf": 1}, "graphar.VertexInfo.get_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_prefix": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_offset_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_property_group_path_prefix": {"tf": 1}, "graphar.PropertyGroup.get_prefix": {"tf": 1}, "graphar.AdjacentList.get_prefix": {"tf": 1}}, "df": 9}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"graphar.VertexInfo.add_property_group": {"tf": 1}, "graphar.VertexInfo.remove_property_group": {"tf": 1}, "graphar.VertexInfo.property_group_num": {"tf": 1}, "graphar.VertexInfo.get_property_groups": {"tf": 1}, "graphar.VertexInfo.get_property_group": {"tf": 1}, "graphar.VertexInfo.get_property_group_by_index": {"tf": 1}, "graphar.VertexInfo.get_property_type": {"tf": 1}, "graphar.VertexInfo.get_property_cardinality": {"tf": 1}, "graphar.VertexInfo.has_property": {"tf": 1}, "graphar.VertexInfo.has_property_group": {"tf": 1}, "graphar.EdgeInfo.add_property_group": {"tf": 1}, "graphar.EdgeInfo.remove_property_group": {"tf": 1}, "graphar.EdgeInfo.has_property": {"tf": 1}, "graphar.EdgeInfo.has_property_group": {"tf": 1}, "graphar.EdgeInfo.property_group_num": {"tf": 1}, "graphar.EdgeInfo.get_property_groups": {"tf": 1}, "graphar.EdgeInfo.get_property_group": {"tf": 1}, "graphar.EdgeInfo.get_property_group_by_index": {"tf": 1}, "graphar.EdgeInfo.get_property_file_path": {"tf": 1}, "graphar.EdgeInfo.get_property_group_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_property_type": {"tf": 1}, "graphar.PropertyGroup.has_property": {"tf": 1}, "graphar.Property": {"tf": 1}, "graphar.Property.__init__": {"tf": 1}, "graphar.Property.name": {"tf": 1}, "graphar.Property.type": {"tf": 1}, "graphar.Property.is_primary": {"tf": 1}, "graphar.Property.is_nullable": {"tf": 1}, "graphar.Property.cardinality": {"tf": 1}, "graphar.Vertex.property": {"tf": 1}, "graphar.Edge.property": {"tf": 1}, "graphar.VertexIter.property": {"tf": 1}, "graphar.EdgeIter.property": {"tf": 1}}, "df": 33, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"graphar.PropertyGroup": {"tf": 1}, "graphar.PropertyGroup.__init__": {"tf": 1}, "graphar.PropertyGroup.get_properties": {"tf": 1}, "graphar.PropertyGroup.has_property": {"tf": 1}, "graphar.PropertyGroup.get_file_type": {"tf": 1}, "graphar.PropertyGroup.get_prefix": {"tf": 1}, "graphar.PropertyGroup.is_validated": {"tf": 1}}, "df": 7}}}}}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"graphar.PropertyGroup.get_properties": {"tf": 1}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"graphar.VertexInfo.is_primary_key": {"tf": 1}, "graphar.EdgeInfo.is_primary_key": {"tf": 1}, "graphar.Property.is_primary": {"tf": 1}}, "df": 3}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"graphar.VertexInfo.get_file_path": {"tf": 1}, "graphar.VertexInfo.get_path_prefix": {"tf": 1}, "graphar.VertexInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_edges_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_offset_file_path": {"tf": 1}, "graphar.EdgeInfo.get_offset_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_property_file_path": {"tf": 1}, "graphar.EdgeInfo.get_property_group_path_prefix": {"tf": 1}}, "df": 11}}}}, "b": {"docs": {}, "df": 0, "y": {"docs": {"graphar.GraphInfo.get_vertex_info_by_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_by_index": {"tf": 1}, "graphar.VertexInfo.get_property_group_by_index": {"tf": 1}, "graphar.EdgeInfo.get_property_group_by_index": {"tf": 1}}, "df": 4}, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"graphar.VerticesCollection.begin": {"tf": 1}, "graphar.EdgesCollection.begin": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"graphar.BuilderVertex": {"tf": 1}, "graphar.BuilderVertex.__init__": {"tf": 1}, "graphar.BuilderVertex.GetId": {"tf": 1}, "graphar.BuilderVertex.SetId": {"tf": 1}, "graphar.BuilderVertex.Empty": {"tf": 1}, "graphar.BuilderVertex.AddProperty": {"tf": 1}, "graphar.BuilderVertex.GetProperty": {"tf": 1}, "graphar.BuilderVertex.GetProperties": {"tf": 1}, "graphar.BuilderVertex.ContainProperty": {"tf": 1}}, "df": 9}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"graphar.BuilderEdge": {"tf": 1}, "graphar.BuilderEdge.__init__": {"tf": 1}, "graphar.BuilderEdge.Empty": {"tf": 1}, "graphar.BuilderEdge.GetSource": {"tf": 1}, "graphar.BuilderEdge.GetDestination": {"tf": 1}, "graphar.BuilderEdge.AddProperty": {"tf": 1}, "graphar.BuilderEdge.GetProperty": {"tf": 1}, "graphar.BuilderEdge.GetProperties": {"tf": 1}, "graphar.BuilderEdge.ContainProperty": {"tf": 1}}, "df": 9}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"graphar.GraphInfo.save": {"tf": 1}, "graphar.VertexInfo.save": {"tf": 1}, "graphar.EdgeInfo.save": {"tf": 1}}, "df": 3}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"graphar.VertexInfo.get_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_src_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_dst_chunk_size": {"tf": 1}, "graphar.VerticesCollection.size": {"tf": 1}, "graphar.EdgesCollection.size": {"tf": 1}}, "df": 6}}}, "r": {"docs": {}, "df": 0, "c": {"docs": {"graphar.EdgeInfo.get_src_type": {"tf": 1}, "graphar.EdgeInfo.get_src_chunk_size": {"tf": 1}, "graphar.EdgesCollection.find_src": {"tf": 1}}, "df": 3}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"graphar.Edge.source": {"tf": 1}, "graphar.EdgeIter.source": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"graphar.BuilderVertex.SetId": {"tf": 1}}, "df": 1}}, "w": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"graphar.VerticesBuilder.SetWriterOptions": {"tf": 1}, "graphar.EdgesBuilder.SetWriterOptions": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"graphar.VerticesBuilder.SetValidateLevel": {"tf": 1}, "graphar.EdgesBuilder.SetValidateLevel": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {"graphar.GraphInfo.dump": {"tf": 1}, "graphar.VertexInfo.dump": {"tf": 1}, "graphar.EdgeInfo.dump": {"tf": 1}, "graphar.VerticesBuilder.Dump": {"tf": 1}, "graphar.EdgesBuilder.Dump": {"tf": 1}}, "df": 5}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"graphar.EdgeInfo.get_dst_type": {"tf": 1}, "graphar.EdgeInfo.get_dst_chunk_size": {"tf": 1}, "graphar.EdgesCollection.find_dst": {"tf": 1}}, "df": 3}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"graphar.EdgeInfo.is_directed": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"graphar.DataType": {"tf": 1}, "graphar.DataType.__init__": {"tf": 1}, "graphar.DataType.id": {"tf": 1}, "graphar.DataType.to_type_name": {"tf": 1}}, "df": 4}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"graphar.Edge.destination": {"tf": 1}, "graphar.EdgeIter.destination": {"tf": 1}}, "df": 2}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"graphar.VertexInfo.get_type": {"tf": 1}, "graphar.VertexInfo.get_property_type": {"tf": 1}, "graphar.EdgeInfo.get_src_type": {"tf": 1}, "graphar.EdgeInfo.get_edge_type": {"tf": 1}, "graphar.EdgeInfo.get_dst_type": {"tf": 1}, "graphar.EdgeInfo.has_adjacent_list_type": {"tf": 1}, "graphar.EdgeInfo.get_property_type": {"tf": 1}, "graphar.PropertyGroup.get_file_type": {"tf": 1}, "graphar.Property.type": {"tf": 1}, "graphar.DataType.to_type_name": {"tf": 1}, "graphar.AdjacentList.get_type": {"tf": 1}, "graphar.AdjacentList.get_file_type": {"tf": 1}}, "df": 12}}}, "o": {"docs": {"graphar.DataType.to_type_name": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {"graphar.VertexInfo.get_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_src_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_dst_chunk_size": {"tf": 1}}, "df": 4}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"graphar.VertexInfo.get_property_cardinality": {"tf": 1}, "graphar.Property.cardinality": {"tf": 1}}, "df": 2}}}}}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"graphar.BuilderVertex.ContainProperty": {"tf": 1}, "graphar.BuilderEdge.ContainProperty": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"graphar.VerticesBuilder.Clear": {"tf": 1}, "graphar.EdgesBuilder.Clear": {"tf": 1}}, "df": 2}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"graphar.VertexInfo.has_property": {"tf": 1}, "graphar.VertexInfo.has_property_group": {"tf": 1}, "graphar.EdgeInfo.has_adjacent_list_type": {"tf": 1}, "graphar.EdgeInfo.has_property": {"tf": 1}, "graphar.EdgeInfo.has_property_group": {"tf": 1}, "graphar.PropertyGroup.has_property": {"tf": 1}}, "df": 6}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"graphar.VertexInfo.is_primary_key": {"tf": 1}, "graphar.VertexInfo.is_nullable_key": {"tf": 1}, "graphar.EdgeInfo.is_primary_key": {"tf": 1}, "graphar.EdgeInfo.is_nullable_key": {"tf": 1}}, "df": 4}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"graphar.VertexInfo.get_file_path": {"tf": 1}, "graphar.VertexInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_edges_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_offset_file_path": {"tf": 1}, "graphar.EdgeInfo.get_property_file_path": {"tf": 1}, "graphar.PropertyGroup.get_file_type": {"tf": 1}, "graphar.AdjacentList.get_file_type": {"tf": 1}}, "df": 9}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"graphar.VerticesCollection.find": {"tf": 1}, "graphar.EdgesCollection.find_src": {"tf": 1}, "graphar.EdgesCollection.find_dst": {"tf": 1}}, "df": 3}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"graphar.EdgeInfo.get_adj_list_offset_file_path": {"tf": 1}, "graphar.EdgeInfo.get_offset_path_prefix": {"tf": 1}}, "df": 2}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {"graphar.VerticesCollection.Make": {"tf": 1}, "graphar.EdgesCollection.Make": {"tf": 1}, "graphar.VerticesBuilder.Make": {"tf": 1}, "graphar.EdgesBuilder.Make": {"tf": 1}}, "df": 4}}}}}}, "fullname": {"root": {"docs": {"graphar.GraphInfo.__init__": {"tf": 1}, "graphar.VertexInfo.__init__": {"tf": 1}, "graphar.EdgeInfo.__init__": {"tf": 1}, "graphar.PropertyGroup.__init__": {"tf": 1}, "graphar.Property.__init__": {"tf": 1}, "graphar.DataType.__init__": {"tf": 1}, "graphar.AdjacentList.__init__": {"tf": 1}, "graphar.Vertex.__init__": {"tf": 1}, "graphar.Edge.__init__": {"tf": 1}, "graphar.VertexIter.__init__": {"tf": 1}, "graphar.VerticesCollection.__init__": {"tf": 1}, "graphar.EdgeIter.__init__": {"tf": 1}, "graphar.EdgesCollection.__init__": {"tf": 1}, "graphar.BuilderVertex.__init__": {"tf": 1}, "graphar.VerticesBuilder.__init__": {"tf": 1}, "graphar.BuilderEdge.__init__": {"tf": 1}, "graphar.EdgesBuilder.__init__": {"tf": 1}}, "df": 17, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"graphar": {"tf": 1}, "graphar.GraphInfo": {"tf": 1}, "graphar.GraphInfo.__init__": {"tf": 1}, "graphar.GraphInfo.load": {"tf": 1}, "graphar.GraphInfo.add_vertex": {"tf": 1}, "graphar.GraphInfo.remove_vertex": {"tf": 1}, "graphar.GraphInfo.add_edge": {"tf": 1}, "graphar.GraphInfo.remove_edge": {"tf": 1}, "graphar.GraphInfo.get_name": {"tf": 1}, "graphar.GraphInfo.get_labels": {"tf": 1}, "graphar.GraphInfo.get_prefix": {"tf": 1}, "graphar.GraphInfo.version": {"tf": 1}, "graphar.GraphInfo.get_extra_info": {"tf": 1}, "graphar.GraphInfo.get_vertex_info": {"tf": 1}, "graphar.GraphInfo.get_edge_info": {"tf": 1}, "graphar.GraphInfo.get_vertex_info_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_index": {"tf": 1}, "graphar.GraphInfo.vertex_info_num": {"tf": 1}, "graphar.GraphInfo.edge_info_num": {"tf": 1}, "graphar.GraphInfo.get_vertex_info_by_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_by_index": {"tf": 1}, "graphar.GraphInfo.get_vertex_infos": {"tf": 1}, "graphar.GraphInfo.get_edge_infos": {"tf": 1}, "graphar.GraphInfo.save": {"tf": 1}, "graphar.GraphInfo.dump": {"tf": 1}, "graphar.GraphInfo.is_validated": {"tf": 1}, "graphar.VertexInfo": {"tf": 1}, "graphar.VertexInfo.__init__": {"tf": 1}, "graphar.VertexInfo.add_property_group": {"tf": 1}, "graphar.VertexInfo.remove_property_group": {"tf": 1}, "graphar.VertexInfo.get_type": {"tf": 1}, "graphar.VertexInfo.get_chunk_size": {"tf": 1}, "graphar.VertexInfo.get_prefix": {"tf": 1}, "graphar.VertexInfo.version": {"tf": 1}, "graphar.VertexInfo.get_labels": {"tf": 1}, "graphar.VertexInfo.property_group_num": {"tf": 1}, "graphar.VertexInfo.get_property_groups": {"tf": 1}, "graphar.VertexInfo.get_property_group": {"tf": 1}, "graphar.VertexInfo.get_property_group_by_index": {"tf": 1}, "graphar.VertexInfo.get_property_type": {"tf": 1}, "graphar.VertexInfo.get_property_cardinality": {"tf": 1}, "graphar.VertexInfo.has_property": {"tf": 1}, "graphar.VertexInfo.save": {"tf": 1}, "graphar.VertexInfo.dump": {"tf": 1}, "graphar.VertexInfo.is_primary_key": {"tf": 1}, "graphar.VertexInfo.is_nullable_key": {"tf": 1}, "graphar.VertexInfo.has_property_group": {"tf": 1}, "graphar.VertexInfo.get_file_path": {"tf": 1}, "graphar.VertexInfo.get_path_prefix": {"tf": 1}, "graphar.VertexInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.VertexInfo.is_validated": {"tf": 1}, "graphar.EdgeInfo": {"tf": 1}, "graphar.EdgeInfo.__init__": {"tf": 1}, "graphar.EdgeInfo.add_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.remove_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.add_property_group": {"tf": 1}, "graphar.EdgeInfo.remove_property_group": {"tf": 1}, "graphar.EdgeInfo.get_src_type": {"tf": 1}, "graphar.EdgeInfo.get_edge_type": {"tf": 1}, "graphar.EdgeInfo.get_dst_type": {"tf": 1}, "graphar.EdgeInfo.get_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_src_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_dst_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_prefix": {"tf": 1}, "graphar.EdgeInfo.is_directed": {"tf": 1}, "graphar.EdgeInfo.version": {"tf": 1}, "graphar.EdgeInfo.has_adjacent_list_type": {"tf": 1}, "graphar.EdgeInfo.has_property": {"tf": 1}, "graphar.EdgeInfo.has_property_group": {"tf": 1}, "graphar.EdgeInfo.get_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.property_group_num": {"tf": 1}, "graphar.EdgeInfo.get_property_groups": {"tf": 1}, "graphar.EdgeInfo.get_property_group": {"tf": 1}, "graphar.EdgeInfo.get_property_group_by_index": {"tf": 1}, "graphar.EdgeInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_edges_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_offset_file_path": {"tf": 1}, "graphar.EdgeInfo.get_offset_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_property_file_path": {"tf": 1}, "graphar.EdgeInfo.get_property_group_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_property_type": {"tf": 1}, "graphar.EdgeInfo.is_primary_key": {"tf": 1}, "graphar.EdgeInfo.is_nullable_key": {"tf": 1}, "graphar.EdgeInfo.save": {"tf": 1}, "graphar.EdgeInfo.dump": {"tf": 1}, "graphar.EdgeInfo.is_validated": {"tf": 1}, "graphar.PropertyGroup": {"tf": 1}, "graphar.PropertyGroup.__init__": {"tf": 1}, "graphar.PropertyGroup.get_properties": {"tf": 1}, "graphar.PropertyGroup.has_property": {"tf": 1}, "graphar.PropertyGroup.get_file_type": {"tf": 1}, "graphar.PropertyGroup.get_prefix": {"tf": 1}, "graphar.PropertyGroup.is_validated": {"tf": 1}, "graphar.Property": {"tf": 1}, "graphar.Property.__init__": {"tf": 1}, "graphar.Property.name": {"tf": 1}, "graphar.Property.type": {"tf": 1}, "graphar.Property.is_primary": {"tf": 1}, "graphar.Property.is_nullable": {"tf": 1}, "graphar.Property.cardinality": {"tf": 1}, "graphar.DataType": {"tf": 1}, "graphar.DataType.__init__": {"tf": 1}, "graphar.DataType.id": {"tf": 1}, "graphar.DataType.to_type_name": {"tf": 1}, "graphar.AdjacentList": {"tf": 1}, "graphar.AdjacentList.__init__": {"tf": 1}, "graphar.AdjacentList.get_type": {"tf": 1}, "graphar.AdjacentList.get_file_type": {"tf": 1}, "graphar.AdjacentList.get_prefix": {"tf": 1}, "graphar.AdjacentList.is_validated": {"tf": 1}, "graphar.Vertex": {"tf": 1}, "graphar.Vertex.__init__": {"tf": 1}, "graphar.Vertex.id": {"tf": 1}, "graphar.Vertex.property": {"tf": 1}, "graphar.Vertex.IsValid": {"tf": 1}, "graphar.Edge": {"tf": 1}, "graphar.Edge.__init__": {"tf": 1}, "graphar.Edge.source": {"tf": 1}, "graphar.Edge.destination": {"tf": 1}, "graphar.Edge.property": {"tf": 1}, "graphar.Edge.IsValid": {"tf": 1}, "graphar.VertexIter": {"tf": 1}, "graphar.VertexIter.__init__": {"tf": 1}, "graphar.VertexIter.id": {"tf": 1}, "graphar.VertexIter.property": {"tf": 1}, "graphar.VerticesCollection": {"tf": 1}, "graphar.VerticesCollection.__init__": {"tf": 1}, "graphar.VerticesCollection.begin": {"tf": 1}, "graphar.VerticesCollection.end": {"tf": 1}, "graphar.VerticesCollection.find": {"tf": 1}, "graphar.VerticesCollection.size": {"tf": 1}, "graphar.VerticesCollection.Make": {"tf": 1}, "graphar.EdgeIter": {"tf": 1}, "graphar.EdgeIter.__init__": {"tf": 1}, "graphar.EdgeIter.source": {"tf": 1}, "graphar.EdgeIter.destination": {"tf": 1}, "graphar.EdgeIter.property": {"tf": 1}, "graphar.EdgesCollection": {"tf": 1}, "graphar.EdgesCollection.__init__": {"tf": 1}, "graphar.EdgesCollection.begin": {"tf": 1}, "graphar.EdgesCollection.end": {"tf": 1}, "graphar.EdgesCollection.size": {"tf": 1}, "graphar.EdgesCollection.find_src": {"tf": 1}, "graphar.EdgesCollection.find_dst": {"tf": 1}, "graphar.EdgesCollection.Make": {"tf": 1}, "graphar.BuilderVertex": {"tf": 1}, "graphar.BuilderVertex.__init__": {"tf": 1}, "graphar.BuilderVertex.GetId": {"tf": 1}, "graphar.BuilderVertex.SetId": {"tf": 1}, "graphar.BuilderVertex.Empty": {"tf": 1}, "graphar.BuilderVertex.AddProperty": {"tf": 1}, "graphar.BuilderVertex.GetProperty": {"tf": 1}, "graphar.BuilderVertex.GetProperties": {"tf": 1}, "graphar.BuilderVertex.ContainProperty": {"tf": 1}, "graphar.VerticesBuilder": {"tf": 1}, "graphar.VerticesBuilder.__init__": {"tf": 1}, "graphar.VerticesBuilder.Clear": {"tf": 1}, "graphar.VerticesBuilder.SetWriterOptions": {"tf": 1}, "graphar.VerticesBuilder.GetWriterOptions": {"tf": 1}, "graphar.VerticesBuilder.SetValidateLevel": {"tf": 1}, "graphar.VerticesBuilder.GetValidateLevel": {"tf": 1}, "graphar.VerticesBuilder.AddVertex": {"tf": 1}, "graphar.VerticesBuilder.GetNum": {"tf": 1}, "graphar.VerticesBuilder.Dump": {"tf": 1}, "graphar.VerticesBuilder.Make": {"tf": 1}, "graphar.BuilderEdge": {"tf": 1}, "graphar.BuilderEdge.__init__": {"tf": 1}, "graphar.BuilderEdge.Empty": {"tf": 1}, "graphar.BuilderEdge.GetSource": {"tf": 1}, "graphar.BuilderEdge.GetDestination": {"tf": 1}, "graphar.BuilderEdge.AddProperty": {"tf": 1}, "graphar.BuilderEdge.GetProperty": {"tf": 1}, "graphar.BuilderEdge.GetProperties": {"tf": 1}, "graphar.BuilderEdge.ContainProperty": {"tf": 1}, "graphar.EdgesBuilder": {"tf": 1}, "graphar.EdgesBuilder.__init__": {"tf": 1}, "graphar.EdgesBuilder.SetValidateLevel": {"tf": 1}, "graphar.EdgesBuilder.SetWriterOptions": {"tf": 1}, "graphar.EdgesBuilder.GetWriterOptions": {"tf": 1}, "graphar.EdgesBuilder.GetValidateLevel": {"tf": 1}, "graphar.EdgesBuilder.Clear": {"tf": 1}, "graphar.EdgesBuilder.AddEdge": {"tf": 1}, "graphar.EdgesBuilder.GetNum": {"tf": 1}, "graphar.EdgesBuilder.Dump": {"tf": 1}, "graphar.EdgesBuilder.Make": {"tf": 1}}, "df": 187}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"graphar.GraphInfo": {"tf": 1}, "graphar.GraphInfo.__init__": {"tf": 1}, "graphar.GraphInfo.load": {"tf": 1}, "graphar.GraphInfo.add_vertex": {"tf": 1}, "graphar.GraphInfo.remove_vertex": {"tf": 1}, "graphar.GraphInfo.add_edge": {"tf": 1}, "graphar.GraphInfo.remove_edge": {"tf": 1}, "graphar.GraphInfo.get_name": {"tf": 1}, "graphar.GraphInfo.get_labels": {"tf": 1}, "graphar.GraphInfo.get_prefix": {"tf": 1}, "graphar.GraphInfo.version": {"tf": 1}, "graphar.GraphInfo.get_extra_info": {"tf": 1}, "graphar.GraphInfo.get_vertex_info": {"tf": 1}, "graphar.GraphInfo.get_edge_info": {"tf": 1}, "graphar.GraphInfo.get_vertex_info_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_index": {"tf": 1}, "graphar.GraphInfo.vertex_info_num": {"tf": 1}, "graphar.GraphInfo.edge_info_num": {"tf": 1}, "graphar.GraphInfo.get_vertex_info_by_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_by_index": {"tf": 1}, "graphar.GraphInfo.get_vertex_infos": {"tf": 1}, "graphar.GraphInfo.get_edge_infos": {"tf": 1}, "graphar.GraphInfo.save": {"tf": 1}, "graphar.GraphInfo.dump": {"tf": 1}, "graphar.GraphInfo.is_validated": {"tf": 1}}, "df": 25}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"graphar.VertexInfo.add_property_group": {"tf": 1}, "graphar.VertexInfo.remove_property_group": {"tf": 1}, "graphar.VertexInfo.property_group_num": {"tf": 1}, "graphar.VertexInfo.get_property_group": {"tf": 1}, "graphar.VertexInfo.get_property_group_by_index": {"tf": 1}, "graphar.VertexInfo.has_property_group": {"tf": 1}, "graphar.EdgeInfo.add_property_group": {"tf": 1}, "graphar.EdgeInfo.remove_property_group": {"tf": 1}, "graphar.EdgeInfo.has_property_group": {"tf": 1}, "graphar.EdgeInfo.property_group_num": {"tf": 1}, "graphar.EdgeInfo.get_property_group": {"tf": 1}, "graphar.EdgeInfo.get_property_group_by_index": {"tf": 1}, "graphar.EdgeInfo.get_property_group_path_prefix": {"tf": 1}}, "df": 13, "s": {"docs": {"graphar.VertexInfo.get_property_groups": {"tf": 1}, "graphar.EdgeInfo.get_property_groups": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"graphar.GraphInfo.get_name": {"tf": 1}, "graphar.GraphInfo.get_labels": {"tf": 1}, "graphar.GraphInfo.get_prefix": {"tf": 1}, "graphar.GraphInfo.get_extra_info": {"tf": 1}, "graphar.GraphInfo.get_vertex_info": {"tf": 1}, "graphar.GraphInfo.get_edge_info": {"tf": 1}, "graphar.GraphInfo.get_vertex_info_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_index": {"tf": 1}, "graphar.GraphInfo.get_vertex_info_by_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_by_index": {"tf": 1}, "graphar.GraphInfo.get_vertex_infos": {"tf": 1}, "graphar.GraphInfo.get_edge_infos": {"tf": 1}, "graphar.VertexInfo.get_type": {"tf": 1}, "graphar.VertexInfo.get_chunk_size": {"tf": 1}, "graphar.VertexInfo.get_prefix": {"tf": 1}, "graphar.VertexInfo.get_labels": {"tf": 1}, "graphar.VertexInfo.get_property_groups": {"tf": 1}, "graphar.VertexInfo.get_property_group": {"tf": 1}, "graphar.VertexInfo.get_property_group_by_index": {"tf": 1}, "graphar.VertexInfo.get_property_type": {"tf": 1}, "graphar.VertexInfo.get_property_cardinality": {"tf": 1}, "graphar.VertexInfo.get_file_path": {"tf": 1}, "graphar.VertexInfo.get_path_prefix": {"tf": 1}, "graphar.VertexInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_src_type": {"tf": 1}, "graphar.EdgeInfo.get_edge_type": {"tf": 1}, "graphar.EdgeInfo.get_dst_type": {"tf": 1}, "graphar.EdgeInfo.get_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_src_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_dst_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_prefix": {"tf": 1}, "graphar.EdgeInfo.get_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.get_property_groups": {"tf": 1}, "graphar.EdgeInfo.get_property_group": {"tf": 1}, "graphar.EdgeInfo.get_property_group_by_index": {"tf": 1}, "graphar.EdgeInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_edges_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_offset_file_path": {"tf": 1}, "graphar.EdgeInfo.get_offset_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_property_file_path": {"tf": 1}, "graphar.EdgeInfo.get_property_group_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_property_type": {"tf": 1}, "graphar.PropertyGroup.get_properties": {"tf": 1}, "graphar.PropertyGroup.get_file_type": {"tf": 1}, "graphar.PropertyGroup.get_prefix": {"tf": 1}, "graphar.AdjacentList.get_type": {"tf": 1}, "graphar.AdjacentList.get_file_type": {"tf": 1}, "graphar.AdjacentList.get_prefix": {"tf": 1}}, "df": 50, "i": {"docs": {}, "df": 0, "d": {"docs": {"graphar.BuilderVertex.GetId": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"graphar.BuilderVertex.GetProperty": {"tf": 1}, "graphar.BuilderEdge.GetProperty": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"graphar.BuilderVertex.GetProperties": {"tf": 1}, "graphar.BuilderEdge.GetProperties": {"tf": 1}}, "df": 2}}}}}}}}}}, "w": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"graphar.VerticesBuilder.GetWriterOptions": {"tf": 1}, "graphar.EdgesBuilder.GetWriterOptions": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"graphar.VerticesBuilder.GetValidateLevel": {"tf": 1}, "graphar.EdgesBuilder.GetValidateLevel": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"graphar.VerticesBuilder.GetNum": {"tf": 1}, "graphar.EdgesBuilder.GetNum": {"tf": 1}}, "df": 2}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"graphar.BuilderEdge.GetSource": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"graphar.BuilderEdge.GetDestination": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"graphar.GraphInfo.__init__": {"tf": 1}, "graphar.VertexInfo.__init__": {"tf": 1}, "graphar.EdgeInfo.__init__": {"tf": 1}, "graphar.PropertyGroup.__init__": {"tf": 1}, "graphar.Property.__init__": {"tf": 1}, "graphar.DataType.__init__": {"tf": 1}, "graphar.AdjacentList.__init__": {"tf": 1}, "graphar.Vertex.__init__": {"tf": 1}, "graphar.Edge.__init__": {"tf": 1}, "graphar.VertexIter.__init__": {"tf": 1}, "graphar.VerticesCollection.__init__": {"tf": 1}, "graphar.EdgeIter.__init__": {"tf": 1}, "graphar.EdgesCollection.__init__": {"tf": 1}, "graphar.BuilderVertex.__init__": {"tf": 1}, "graphar.VerticesBuilder.__init__": {"tf": 1}, "graphar.BuilderEdge.__init__": {"tf": 1}, "graphar.EdgesBuilder.__init__": {"tf": 1}}, "df": 17}}, "f": {"docs": {}, "df": 0, "o": {"docs": {"graphar.GraphInfo.get_extra_info": {"tf": 1}, "graphar.GraphInfo.get_vertex_info": {"tf": 1}, "graphar.GraphInfo.get_edge_info": {"tf": 1}, "graphar.GraphInfo.get_vertex_info_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_index": {"tf": 1}, "graphar.GraphInfo.vertex_info_num": {"tf": 1}, "graphar.GraphInfo.edge_info_num": {"tf": 1}, "graphar.GraphInfo.get_vertex_info_by_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_by_index": {"tf": 1}}, "df": 9, "s": {"docs": {"graphar.GraphInfo.get_vertex_infos": {"tf": 1}, "graphar.GraphInfo.get_edge_infos": {"tf": 1}}, "df": 2}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"graphar.GraphInfo.get_vertex_info_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_index": {"tf": 1}, "graphar.GraphInfo.get_vertex_info_by_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_by_index": {"tf": 1}, "graphar.VertexInfo.get_property_group_by_index": {"tf": 1}, "graphar.EdgeInfo.get_property_group_by_index": {"tf": 1}}, "df": 6}}}}, "s": {"docs": {"graphar.GraphInfo.is_validated": {"tf": 1}, "graphar.VertexInfo.is_primary_key": {"tf": 1}, "graphar.VertexInfo.is_nullable_key": {"tf": 1}, "graphar.VertexInfo.is_validated": {"tf": 1}, "graphar.EdgeInfo.is_directed": {"tf": 1}, "graphar.EdgeInfo.is_primary_key": {"tf": 1}, "graphar.EdgeInfo.is_nullable_key": {"tf": 1}, "graphar.EdgeInfo.is_validated": {"tf": 1}, "graphar.PropertyGroup.is_validated": {"tf": 1}, "graphar.Property.is_primary": {"tf": 1}, "graphar.Property.is_nullable": {"tf": 1}, "graphar.AdjacentList.is_validated": {"tf": 1}}, "df": 12, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"graphar.Vertex.IsValid": {"tf": 1}, "graphar.Edge.IsValid": {"tf": 1}}, "df": 2}}}}}}, "d": {"docs": {"graphar.DataType.id": {"tf": 1}, "graphar.Vertex.id": {"tf": 1}, "graphar.VertexIter.id": {"tf": 1}}, "df": 3}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"graphar.GraphInfo.load": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"graphar.GraphInfo.get_labels": {"tf": 1}, "graphar.VertexInfo.get_labels": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"graphar.EdgeInfo.add_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.remove_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.has_adjacent_list_type": {"tf": 1}, "graphar.EdgeInfo.get_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_offset_file_path": {"tf": 1}}, "df": 7}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {"graphar.GraphInfo.add_vertex": {"tf": 1}, "graphar.GraphInfo.add_edge": {"tf": 1}, "graphar.VertexInfo.add_property_group": {"tf": 1}, "graphar.EdgeInfo.add_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.add_property_group": {"tf": 1}}, "df": 5, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"graphar.BuilderVertex.AddProperty": {"tf": 1}, "graphar.BuilderEdge.AddProperty": {"tf": 1}}, "df": 2}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"graphar.VerticesBuilder.AddVertex": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"graphar.EdgesBuilder.AddEdge": {"tf": 1}}, "df": 1}}}}}, "j": {"docs": {"graphar.EdgeInfo.get_adj_list_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_offset_file_path": {"tf": 1}}, "df": 3, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"graphar.EdgeInfo.add_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.remove_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.has_adjacent_list_type": {"tf": 1}, "graphar.EdgeInfo.get_adjacent_list": {"tf": 1}}, "df": 4, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"graphar.AdjacentList": {"tf": 1}, "graphar.AdjacentList.__init__": {"tf": 1}, "graphar.AdjacentList.get_type": {"tf": 1}, "graphar.AdjacentList.get_file_type": {"tf": 1}, "graphar.AdjacentList.get_prefix": {"tf": 1}, "graphar.AdjacentList.is_validated": {"tf": 1}}, "df": 6}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"graphar.GraphInfo.add_vertex": {"tf": 1}, "graphar.GraphInfo.remove_vertex": {"tf": 1}, "graphar.GraphInfo.get_vertex_info": {"tf": 1}, "graphar.GraphInfo.get_vertex_info_index": {"tf": 1}, "graphar.GraphInfo.vertex_info_num": {"tf": 1}, "graphar.GraphInfo.get_vertex_info_by_index": {"tf": 1}, "graphar.GraphInfo.get_vertex_infos": {"tf": 1}, "graphar.Vertex": {"tf": 1}, "graphar.Vertex.__init__": {"tf": 1}, "graphar.Vertex.id": {"tf": 1}, "graphar.Vertex.property": {"tf": 1}, "graphar.Vertex.IsValid": {"tf": 1}}, "df": 12, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"graphar.VertexInfo": {"tf": 1}, "graphar.VertexInfo.__init__": {"tf": 1}, "graphar.VertexInfo.add_property_group": {"tf": 1}, "graphar.VertexInfo.remove_property_group": {"tf": 1}, "graphar.VertexInfo.get_type": {"tf": 1}, "graphar.VertexInfo.get_chunk_size": {"tf": 1}, "graphar.VertexInfo.get_prefix": {"tf": 1}, "graphar.VertexInfo.version": {"tf": 1}, "graphar.VertexInfo.get_labels": {"tf": 1}, "graphar.VertexInfo.property_group_num": {"tf": 1}, "graphar.VertexInfo.get_property_groups": {"tf": 1}, "graphar.VertexInfo.get_property_group": {"tf": 1}, "graphar.VertexInfo.get_property_group_by_index": {"tf": 1}, "graphar.VertexInfo.get_property_type": {"tf": 1}, "graphar.VertexInfo.get_property_cardinality": {"tf": 1}, "graphar.VertexInfo.has_property": {"tf": 1}, "graphar.VertexInfo.save": {"tf": 1}, "graphar.VertexInfo.dump": {"tf": 1}, "graphar.VertexInfo.is_primary_key": {"tf": 1}, "graphar.VertexInfo.is_nullable_key": {"tf": 1}, "graphar.VertexInfo.has_property_group": {"tf": 1}, "graphar.VertexInfo.get_file_path": {"tf": 1}, "graphar.VertexInfo.get_path_prefix": {"tf": 1}, "graphar.VertexInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.VertexInfo.is_validated": {"tf": 1}}, "df": 25}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"graphar.VertexIter": {"tf": 1}, "graphar.VertexIter.__init__": {"tf": 1}, "graphar.VertexIter.id": {"tf": 1}, "graphar.VertexIter.property": {"tf": 1}}, "df": 4}}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"graphar.VertexInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_vertices_num_file_path": {"tf": 1}}, "df": 2, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"graphar.VerticesCollection": {"tf": 1}, "graphar.VerticesCollection.__init__": {"tf": 1}, "graphar.VerticesCollection.begin": {"tf": 1}, "graphar.VerticesCollection.end": {"tf": 1}, "graphar.VerticesCollection.find": {"tf": 1}, "graphar.VerticesCollection.size": {"tf": 1}, "graphar.VerticesCollection.Make": {"tf": 1}}, "df": 7}}}}}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"graphar.VerticesBuilder": {"tf": 1}, "graphar.VerticesBuilder.__init__": {"tf": 1}, "graphar.VerticesBuilder.Clear": {"tf": 1}, "graphar.VerticesBuilder.SetWriterOptions": {"tf": 1}, "graphar.VerticesBuilder.GetWriterOptions": {"tf": 1}, "graphar.VerticesBuilder.SetValidateLevel": {"tf": 1}, "graphar.VerticesBuilder.GetValidateLevel": {"tf": 1}, "graphar.VerticesBuilder.AddVertex": {"tf": 1}, "graphar.VerticesBuilder.GetNum": {"tf": 1}, "graphar.VerticesBuilder.Dump": {"tf": 1}, "graphar.VerticesBuilder.Make": {"tf": 1}}, "df": 11}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"graphar.GraphInfo.version": {"tf": 1}, "graphar.VertexInfo.version": {"tf": 1}, "graphar.EdgeInfo.version": {"tf": 1}}, "df": 3}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"graphar.GraphInfo.is_validated": {"tf": 1}, "graphar.VertexInfo.is_validated": {"tf": 1}, "graphar.EdgeInfo.is_validated": {"tf": 1}, "graphar.PropertyGroup.is_validated": {"tf": 1}, "graphar.AdjacentList.is_validated": {"tf": 1}}, "df": 5}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"graphar.GraphInfo.remove_vertex": {"tf": 1}, "graphar.GraphInfo.remove_edge": {"tf": 1}, "graphar.VertexInfo.remove_property_group": {"tf": 1}, "graphar.EdgeInfo.remove_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.remove_property_group": {"tf": 1}}, "df": 5}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"graphar.GraphInfo.add_edge": {"tf": 1}, "graphar.GraphInfo.remove_edge": {"tf": 1}, "graphar.GraphInfo.get_edge_info": {"tf": 1}, "graphar.GraphInfo.get_edge_info_index": {"tf": 1}, "graphar.GraphInfo.edge_info_num": {"tf": 1}, "graphar.GraphInfo.get_edge_info_by_index": {"tf": 1}, "graphar.GraphInfo.get_edge_infos": {"tf": 1}, "graphar.EdgeInfo.get_edge_type": {"tf": 1}, "graphar.Edge": {"tf": 1}, "graphar.Edge.__init__": {"tf": 1}, "graphar.Edge.source": {"tf": 1}, "graphar.Edge.destination": {"tf": 1}, "graphar.Edge.property": {"tf": 1}, "graphar.Edge.IsValid": {"tf": 1}}, "df": 14, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"graphar.EdgeInfo": {"tf": 1}, "graphar.EdgeInfo.__init__": {"tf": 1}, "graphar.EdgeInfo.add_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.remove_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.add_property_group": {"tf": 1}, "graphar.EdgeInfo.remove_property_group": {"tf": 1}, "graphar.EdgeInfo.get_src_type": {"tf": 1}, "graphar.EdgeInfo.get_edge_type": {"tf": 1}, "graphar.EdgeInfo.get_dst_type": {"tf": 1}, "graphar.EdgeInfo.get_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_src_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_dst_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_prefix": {"tf": 1}, "graphar.EdgeInfo.is_directed": {"tf": 1}, "graphar.EdgeInfo.version": {"tf": 1}, "graphar.EdgeInfo.has_adjacent_list_type": {"tf": 1}, "graphar.EdgeInfo.has_property": {"tf": 1}, "graphar.EdgeInfo.has_property_group": {"tf": 1}, "graphar.EdgeInfo.get_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.property_group_num": {"tf": 1}, "graphar.EdgeInfo.get_property_groups": {"tf": 1}, "graphar.EdgeInfo.get_property_group": {"tf": 1}, "graphar.EdgeInfo.get_property_group_by_index": {"tf": 1}, "graphar.EdgeInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_edges_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_offset_file_path": {"tf": 1}, "graphar.EdgeInfo.get_offset_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_property_file_path": {"tf": 1}, "graphar.EdgeInfo.get_property_group_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_property_type": {"tf": 1}, "graphar.EdgeInfo.is_primary_key": {"tf": 1}, "graphar.EdgeInfo.is_nullable_key": {"tf": 1}, "graphar.EdgeInfo.save": {"tf": 1}, "graphar.EdgeInfo.dump": {"tf": 1}, "graphar.EdgeInfo.is_validated": {"tf": 1}}, "df": 37}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"graphar.EdgeIter": {"tf": 1}, "graphar.EdgeIter.__init__": {"tf": 1}, "graphar.EdgeIter.source": {"tf": 1}, "graphar.EdgeIter.destination": {"tf": 1}, "graphar.EdgeIter.property": {"tf": 1}}, "df": 5}}}}, "s": {"docs": {"graphar.EdgeInfo.get_edges_num_file_path": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"graphar.EdgesCollection": {"tf": 1}, "graphar.EdgesCollection.__init__": {"tf": 1}, "graphar.EdgesCollection.begin": {"tf": 1}, "graphar.EdgesCollection.end": {"tf": 1}, "graphar.EdgesCollection.size": {"tf": 1}, "graphar.EdgesCollection.find_src": {"tf": 1}, "graphar.EdgesCollection.find_dst": {"tf": 1}, "graphar.EdgesCollection.Make": {"tf": 1}}, "df": 8}}}}}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"graphar.EdgesBuilder": {"tf": 1}, "graphar.EdgesBuilder.__init__": {"tf": 1}, "graphar.EdgesBuilder.SetValidateLevel": {"tf": 1}, "graphar.EdgesBuilder.SetWriterOptions": {"tf": 1}, "graphar.EdgesBuilder.GetWriterOptions": {"tf": 1}, "graphar.EdgesBuilder.GetValidateLevel": {"tf": 1}, "graphar.EdgesBuilder.Clear": {"tf": 1}, "graphar.EdgesBuilder.AddEdge": {"tf": 1}, "graphar.EdgesBuilder.GetNum": {"tf": 1}, "graphar.EdgesBuilder.Dump": {"tf": 1}, "graphar.EdgesBuilder.Make": {"tf": 1}}, "df": 11}}}}}}}}}}}, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {"graphar.GraphInfo.get_extra_info": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"graphar.VerticesCollection.end": {"tf": 1}, "graphar.EdgesCollection.end": {"tf": 1}}, "df": 2}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"graphar.BuilderVertex.Empty": {"tf": 1}, "graphar.BuilderEdge.Empty": {"tf": 1}}, "df": 2}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"graphar.GraphInfo.get_name": {"tf": 1}, "graphar.Property.name": {"tf": 1}, "graphar.DataType.to_type_name": {"tf": 1}}, "df": 3}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {"graphar.GraphInfo.vertex_info_num": {"tf": 1}, "graphar.GraphInfo.edge_info_num": {"tf": 1}, "graphar.VertexInfo.property_group_num": {"tf": 1}, "graphar.VertexInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.EdgeInfo.property_group_num": {"tf": 1}, "graphar.EdgeInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_edges_num_file_path": {"tf": 1}}, "df": 7}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"graphar.VertexInfo.is_nullable_key": {"tf": 1}, "graphar.EdgeInfo.is_nullable_key": {"tf": 1}, "graphar.Property.is_nullable": {"tf": 1}}, "df": 3}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"graphar.GraphInfo.get_prefix": {"tf": 1}, "graphar.VertexInfo.get_prefix": {"tf": 1}, "graphar.VertexInfo.get_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_prefix": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_offset_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_property_group_path_prefix": {"tf": 1}, "graphar.PropertyGroup.get_prefix": {"tf": 1}, "graphar.AdjacentList.get_prefix": {"tf": 1}}, "df": 9}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"graphar.VertexInfo.add_property_group": {"tf": 1}, "graphar.VertexInfo.remove_property_group": {"tf": 1}, "graphar.VertexInfo.property_group_num": {"tf": 1}, "graphar.VertexInfo.get_property_groups": {"tf": 1}, "graphar.VertexInfo.get_property_group": {"tf": 1}, "graphar.VertexInfo.get_property_group_by_index": {"tf": 1}, "graphar.VertexInfo.get_property_type": {"tf": 1}, "graphar.VertexInfo.get_property_cardinality": {"tf": 1}, "graphar.VertexInfo.has_property": {"tf": 1}, "graphar.VertexInfo.has_property_group": {"tf": 1}, "graphar.EdgeInfo.add_property_group": {"tf": 1}, "graphar.EdgeInfo.remove_property_group": {"tf": 1}, "graphar.EdgeInfo.has_property": {"tf": 1}, "graphar.EdgeInfo.has_property_group": {"tf": 1}, "graphar.EdgeInfo.property_group_num": {"tf": 1}, "graphar.EdgeInfo.get_property_groups": {"tf": 1}, "graphar.EdgeInfo.get_property_group": {"tf": 1}, "graphar.EdgeInfo.get_property_group_by_index": {"tf": 1}, "graphar.EdgeInfo.get_property_file_path": {"tf": 1}, "graphar.EdgeInfo.get_property_group_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_property_type": {"tf": 1}, "graphar.PropertyGroup.has_property": {"tf": 1}, "graphar.Property": {"tf": 1}, "graphar.Property.__init__": {"tf": 1}, "graphar.Property.name": {"tf": 1}, "graphar.Property.type": {"tf": 1}, "graphar.Property.is_primary": {"tf": 1}, "graphar.Property.is_nullable": {"tf": 1}, "graphar.Property.cardinality": {"tf": 1}, "graphar.Vertex.property": {"tf": 1}, "graphar.Edge.property": {"tf": 1}, "graphar.VertexIter.property": {"tf": 1}, "graphar.EdgeIter.property": {"tf": 1}}, "df": 33, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"graphar.PropertyGroup": {"tf": 1}, "graphar.PropertyGroup.__init__": {"tf": 1}, "graphar.PropertyGroup.get_properties": {"tf": 1}, "graphar.PropertyGroup.has_property": {"tf": 1}, "graphar.PropertyGroup.get_file_type": {"tf": 1}, "graphar.PropertyGroup.get_prefix": {"tf": 1}, "graphar.PropertyGroup.is_validated": {"tf": 1}}, "df": 7}}}}}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"graphar.PropertyGroup.get_properties": {"tf": 1}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"graphar.VertexInfo.is_primary_key": {"tf": 1}, "graphar.EdgeInfo.is_primary_key": {"tf": 1}, "graphar.Property.is_primary": {"tf": 1}}, "df": 3}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"graphar.VertexInfo.get_file_path": {"tf": 1}, "graphar.VertexInfo.get_path_prefix": {"tf": 1}, "graphar.VertexInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_edges_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_offset_file_path": {"tf": 1}, "graphar.EdgeInfo.get_offset_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_property_file_path": {"tf": 1}, "graphar.EdgeInfo.get_property_group_path_prefix": {"tf": 1}}, "df": 11}}}}, "b": {"docs": {}, "df": 0, "y": {"docs": {"graphar.GraphInfo.get_vertex_info_by_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_by_index": {"tf": 1}, "graphar.VertexInfo.get_property_group_by_index": {"tf": 1}, "graphar.EdgeInfo.get_property_group_by_index": {"tf": 1}}, "df": 4}, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"graphar.VerticesCollection.begin": {"tf": 1}, "graphar.EdgesCollection.begin": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"graphar.BuilderVertex": {"tf": 1}, "graphar.BuilderVertex.__init__": {"tf": 1}, "graphar.BuilderVertex.GetId": {"tf": 1}, "graphar.BuilderVertex.SetId": {"tf": 1}, "graphar.BuilderVertex.Empty": {"tf": 1}, "graphar.BuilderVertex.AddProperty": {"tf": 1}, "graphar.BuilderVertex.GetProperty": {"tf": 1}, "graphar.BuilderVertex.GetProperties": {"tf": 1}, "graphar.BuilderVertex.ContainProperty": {"tf": 1}}, "df": 9}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"graphar.BuilderEdge": {"tf": 1}, "graphar.BuilderEdge.__init__": {"tf": 1}, "graphar.BuilderEdge.Empty": {"tf": 1}, "graphar.BuilderEdge.GetSource": {"tf": 1}, "graphar.BuilderEdge.GetDestination": {"tf": 1}, "graphar.BuilderEdge.AddProperty": {"tf": 1}, "graphar.BuilderEdge.GetProperty": {"tf": 1}, "graphar.BuilderEdge.GetProperties": {"tf": 1}, "graphar.BuilderEdge.ContainProperty": {"tf": 1}}, "df": 9}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"graphar.GraphInfo.save": {"tf": 1}, "graphar.VertexInfo.save": {"tf": 1}, "graphar.EdgeInfo.save": {"tf": 1}}, "df": 3}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"graphar.VertexInfo.get_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_src_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_dst_chunk_size": {"tf": 1}, "graphar.VerticesCollection.size": {"tf": 1}, "graphar.EdgesCollection.size": {"tf": 1}}, "df": 6}}}, "r": {"docs": {}, "df": 0, "c": {"docs": {"graphar.EdgeInfo.get_src_type": {"tf": 1}, "graphar.EdgeInfo.get_src_chunk_size": {"tf": 1}, "graphar.EdgesCollection.find_src": {"tf": 1}}, "df": 3}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"graphar.Edge.source": {"tf": 1}, "graphar.EdgeIter.source": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"graphar.BuilderVertex.SetId": {"tf": 1}}, "df": 1}}, "w": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"graphar.VerticesBuilder.SetWriterOptions": {"tf": 1}, "graphar.EdgesBuilder.SetWriterOptions": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"graphar.VerticesBuilder.SetValidateLevel": {"tf": 1}, "graphar.EdgesBuilder.SetValidateLevel": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {"graphar.GraphInfo.dump": {"tf": 1}, "graphar.VertexInfo.dump": {"tf": 1}, "graphar.EdgeInfo.dump": {"tf": 1}, "graphar.VerticesBuilder.Dump": {"tf": 1}, "graphar.EdgesBuilder.Dump": {"tf": 1}}, "df": 5}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"graphar.EdgeInfo.get_dst_type": {"tf": 1}, "graphar.EdgeInfo.get_dst_chunk_size": {"tf": 1}, "graphar.EdgesCollection.find_dst": {"tf": 1}}, "df": 3}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"graphar.EdgeInfo.is_directed": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"graphar.DataType": {"tf": 1}, "graphar.DataType.__init__": {"tf": 1}, "graphar.DataType.id": {"tf": 1}, "graphar.DataType.to_type_name": {"tf": 1}}, "df": 4}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"graphar.Edge.destination": {"tf": 1}, "graphar.EdgeIter.destination": {"tf": 1}}, "df": 2}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"graphar.VertexInfo.get_type": {"tf": 1}, "graphar.VertexInfo.get_property_type": {"tf": 1}, "graphar.EdgeInfo.get_src_type": {"tf": 1}, "graphar.EdgeInfo.get_edge_type": {"tf": 1}, "graphar.EdgeInfo.get_dst_type": {"tf": 1}, "graphar.EdgeInfo.has_adjacent_list_type": {"tf": 1}, "graphar.EdgeInfo.get_property_type": {"tf": 1}, "graphar.PropertyGroup.get_file_type": {"tf": 1}, "graphar.Property.type": {"tf": 1}, "graphar.DataType.to_type_name": {"tf": 1}, "graphar.AdjacentList.get_type": {"tf": 1}, "graphar.AdjacentList.get_file_type": {"tf": 1}}, "df": 12}}}, "o": {"docs": {"graphar.DataType.to_type_name": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {"graphar.VertexInfo.get_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_src_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_dst_chunk_size": {"tf": 1}}, "df": 4}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"graphar.VertexInfo.get_property_cardinality": {"tf": 1}, "graphar.Property.cardinality": {"tf": 1}}, "df": 2}}}}}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"graphar.BuilderVertex.ContainProperty": {"tf": 1}, "graphar.BuilderEdge.ContainProperty": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"graphar.VerticesBuilder.Clear": {"tf": 1}, "graphar.EdgesBuilder.Clear": {"tf": 1}}, "df": 2}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"graphar.VertexInfo.has_property": {"tf": 1}, "graphar.VertexInfo.has_property_group": {"tf": 1}, "graphar.EdgeInfo.has_adjacent_list_type": {"tf": 1}, "graphar.EdgeInfo.has_property": {"tf": 1}, "graphar.EdgeInfo.has_property_group": {"tf": 1}, "graphar.PropertyGroup.has_property": {"tf": 1}}, "df": 6}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"graphar.VertexInfo.is_primary_key": {"tf": 1}, "graphar.VertexInfo.is_nullable_key": {"tf": 1}, "graphar.EdgeInfo.is_primary_key": {"tf": 1}, "graphar.EdgeInfo.is_nullable_key": {"tf": 1}}, "df": 4}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"graphar.VertexInfo.get_file_path": {"tf": 1}, "graphar.VertexInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_edges_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_offset_file_path": {"tf": 1}, "graphar.EdgeInfo.get_property_file_path": {"tf": 1}, "graphar.PropertyGroup.get_file_type": {"tf": 1}, "graphar.AdjacentList.get_file_type": {"tf": 1}}, "df": 9}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"graphar.VerticesCollection.find": {"tf": 1}, "graphar.EdgesCollection.find_src": {"tf": 1}, "graphar.EdgesCollection.find_dst": {"tf": 1}}, "df": 3}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"graphar.EdgeInfo.get_adj_list_offset_file_path": {"tf": 1}, "graphar.EdgeInfo.get_offset_path_prefix": {"tf": 1}}, "df": 2}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {"graphar.VerticesCollection.Make": {"tf": 1}, "graphar.EdgesCollection.Make": {"tf": 1}, "graphar.VerticesBuilder.Make": {"tf": 1}, "graphar.EdgesBuilder.Make": {"tf": 1}}, "df": 4}}}}}}, "annotation": {"root": {"docs": {}, "df": 0}}, "default_value": {"root": {"docs": {}, "df": 0}}, "signature": {"root": {"docs": {"graphar.GraphInfo.__init__": {"tf": 2}, "graphar.GraphInfo.load": {"tf": 3.1622776601683795}, "graphar.GraphInfo.add_vertex": {"tf": 3.1622776601683795}, "graphar.GraphInfo.remove_vertex": {"tf": 3.1622776601683795}, "graphar.GraphInfo.add_edge": {"tf": 3.1622776601683795}, "graphar.GraphInfo.remove_edge": {"tf": 3.1622776601683795}, "graphar.GraphInfo.get_name": {"tf": 3.1622776601683795}, "graphar.GraphInfo.get_labels": {"tf": 3.1622776601683795}, "graphar.GraphInfo.get_prefix": {"tf": 3.1622776601683795}, "graphar.GraphInfo.version": {"tf": 3.1622776601683795}, "graphar.GraphInfo.get_extra_info": {"tf": 3.1622776601683795}, "graphar.GraphInfo.get_vertex_info": {"tf": 3.1622776601683795}, "graphar.GraphInfo.get_edge_info": {"tf": 3.1622776601683795}, "graphar.GraphInfo.get_vertex_info_index": {"tf": 3.1622776601683795}, "graphar.GraphInfo.get_edge_info_index": {"tf": 3.1622776601683795}, "graphar.GraphInfo.vertex_info_num": {"tf": 3.1622776601683795}, "graphar.GraphInfo.edge_info_num": {"tf": 3.1622776601683795}, "graphar.GraphInfo.get_vertex_info_by_index": {"tf": 3.1622776601683795}, "graphar.GraphInfo.get_edge_info_by_index": {"tf": 3.1622776601683795}, "graphar.GraphInfo.get_vertex_infos": {"tf": 3.1622776601683795}, "graphar.GraphInfo.get_edge_infos": {"tf": 3.1622776601683795}, "graphar.GraphInfo.save": {"tf": 3.1622776601683795}, "graphar.GraphInfo.dump": {"tf": 3.1622776601683795}, "graphar.GraphInfo.is_validated": {"tf": 3.1622776601683795}, "graphar.VertexInfo.__init__": {"tf": 2}, "graphar.VertexInfo.add_property_group": {"tf": 3.1622776601683795}, "graphar.VertexInfo.remove_property_group": {"tf": 3.1622776601683795}, "graphar.VertexInfo.get_type": {"tf": 3.1622776601683795}, "graphar.VertexInfo.get_chunk_size": {"tf": 3.1622776601683795}, "graphar.VertexInfo.get_prefix": {"tf": 3.1622776601683795}, "graphar.VertexInfo.version": {"tf": 3.1622776601683795}, "graphar.VertexInfo.get_labels": {"tf": 3.1622776601683795}, "graphar.VertexInfo.property_group_num": {"tf": 3.1622776601683795}, "graphar.VertexInfo.get_property_groups": {"tf": 3.1622776601683795}, "graphar.VertexInfo.get_property_group": {"tf": 3.1622776601683795}, "graphar.VertexInfo.get_property_group_by_index": {"tf": 3.1622776601683795}, "graphar.VertexInfo.get_property_type": {"tf": 3.1622776601683795}, "graphar.VertexInfo.get_property_cardinality": {"tf": 3.1622776601683795}, "graphar.VertexInfo.has_property": {"tf": 3.1622776601683795}, "graphar.VertexInfo.save": {"tf": 3.1622776601683795}, "graphar.VertexInfo.dump": {"tf": 3.1622776601683795}, "graphar.VertexInfo.is_primary_key": {"tf": 3.1622776601683795}, "graphar.VertexInfo.is_nullable_key": {"tf": 3.1622776601683795}, "graphar.VertexInfo.has_property_group": {"tf": 3.1622776601683795}, "graphar.VertexInfo.get_file_path": {"tf": 3.1622776601683795}, "graphar.VertexInfo.get_path_prefix": {"tf": 3.1622776601683795}, "graphar.VertexInfo.get_vertices_num_file_path": {"tf": 3.1622776601683795}, "graphar.VertexInfo.is_validated": {"tf": 3.1622776601683795}, "graphar.EdgeInfo.__init__": {"tf": 2}, "graphar.EdgeInfo.add_adjacent_list": {"tf": 3.1622776601683795}, "graphar.EdgeInfo.remove_adjacent_list": {"tf": 3.1622776601683795}, "graphar.EdgeInfo.add_property_group": {"tf": 3.1622776601683795}, "graphar.EdgeInfo.remove_property_group": {"tf": 3.1622776601683795}, "graphar.EdgeInfo.get_src_type": {"tf": 3.1622776601683795}, "graphar.EdgeInfo.get_edge_type": {"tf": 3.1622776601683795}, "graphar.EdgeInfo.get_dst_type": {"tf": 3.1622776601683795}, "graphar.EdgeInfo.get_chunk_size": {"tf": 3.1622776601683795}, "graphar.EdgeInfo.get_src_chunk_size": {"tf": 3.1622776601683795}, "graphar.EdgeInfo.get_dst_chunk_size": {"tf": 3.1622776601683795}, "graphar.EdgeInfo.get_prefix": {"tf": 3.1622776601683795}, "graphar.EdgeInfo.is_directed": {"tf": 3.1622776601683795}, "graphar.EdgeInfo.version": {"tf": 3.1622776601683795}, "graphar.EdgeInfo.has_adjacent_list_type": {"tf": 3.1622776601683795}, "graphar.EdgeInfo.has_property": {"tf": 3.1622776601683795}, "graphar.EdgeInfo.has_property_group": {"tf": 3.1622776601683795}, "graphar.EdgeInfo.get_adjacent_list": {"tf": 3.1622776601683795}, "graphar.EdgeInfo.property_group_num": {"tf": 3.1622776601683795}, "graphar.EdgeInfo.get_property_groups": {"tf": 3.1622776601683795}, "graphar.EdgeInfo.get_property_group": {"tf": 3.1622776601683795}, "graphar.EdgeInfo.get_property_group_by_index": {"tf": 3.1622776601683795}, "graphar.EdgeInfo.get_vertices_num_file_path": {"tf": 3.1622776601683795}, "graphar.EdgeInfo.get_edges_num_file_path": {"tf": 3.1622776601683795}, "graphar.EdgeInfo.get_adj_list_file_path": {"tf": 3.1622776601683795}, "graphar.EdgeInfo.get_adj_list_path_prefix": {"tf": 3.1622776601683795}, "graphar.EdgeInfo.get_adj_list_offset_file_path": {"tf": 3.1622776601683795}, "graphar.EdgeInfo.get_offset_path_prefix": {"tf": 3.1622776601683795}, "graphar.EdgeInfo.get_property_file_path": {"tf": 3.1622776601683795}, "graphar.EdgeInfo.get_property_group_path_prefix": {"tf": 3.1622776601683795}, "graphar.EdgeInfo.get_property_type": {"tf": 3.1622776601683795}, "graphar.EdgeInfo.is_primary_key": {"tf": 3.1622776601683795}, "graphar.EdgeInfo.is_nullable_key": {"tf": 3.1622776601683795}, "graphar.EdgeInfo.save": {"tf": 3.1622776601683795}, "graphar.EdgeInfo.dump": {"tf": 3.1622776601683795}, "graphar.EdgeInfo.is_validated": {"tf": 3.1622776601683795}, "graphar.PropertyGroup.__init__": {"tf": 2}, "graphar.PropertyGroup.get_properties": {"tf": 3.1622776601683795}, "graphar.PropertyGroup.has_property": {"tf": 3.1622776601683795}, "graphar.PropertyGroup.get_file_type": {"tf": 3.1622776601683795}, "graphar.PropertyGroup.get_prefix": {"tf": 3.1622776601683795}, "graphar.PropertyGroup.is_validated": {"tf": 3.1622776601683795}, "graphar.Property.__init__": {"tf": 2}, "graphar.DataType.__init__": {"tf": 2}, "graphar.DataType.id": {"tf": 3.1622776601683795}, "graphar.DataType.to_type_name": {"tf": 3.1622776601683795}, "graphar.AdjacentList.__init__": {"tf": 2}, "graphar.AdjacentList.get_type": {"tf": 3.1622776601683795}, "graphar.AdjacentList.get_file_type": {"tf": 3.1622776601683795}, "graphar.AdjacentList.get_prefix": {"tf": 3.1622776601683795}, "graphar.AdjacentList.is_validated": {"tf": 3.1622776601683795}, "graphar.Vertex.__init__": {"tf": 4}, "graphar.Vertex.id": {"tf": 3.1622776601683795}, "graphar.Vertex.property": {"tf": 3.1622776601683795}, "graphar.Vertex.IsValid": {"tf": 3.1622776601683795}, "graphar.Edge.__init__": {"tf": 4}, "graphar.Edge.source": {"tf": 3.1622776601683795}, "graphar.Edge.destination": {"tf": 3.1622776601683795}, "graphar.Edge.property": {"tf": 3.1622776601683795}, "graphar.Edge.IsValid": {"tf": 3.1622776601683795}, "graphar.VertexIter.__init__": {"tf": 4}, "graphar.VertexIter.id": {"tf": 3.1622776601683795}, "graphar.VertexIter.property": {"tf": 3.1622776601683795}, "graphar.VerticesCollection.__init__": {"tf": 4}, "graphar.VerticesCollection.begin": {"tf": 3.1622776601683795}, "graphar.VerticesCollection.end": {"tf": 3.1622776601683795}, "graphar.VerticesCollection.find": {"tf": 3.1622776601683795}, "graphar.VerticesCollection.size": {"tf": 3.1622776601683795}, "graphar.VerticesCollection.Make": {"tf": 3.1622776601683795}, "graphar.EdgeIter.__init__": {"tf": 4}, "graphar.EdgeIter.source": {"tf": 3.1622776601683795}, "graphar.EdgeIter.destination": {"tf": 3.1622776601683795}, "graphar.EdgeIter.property": {"tf": 3.1622776601683795}, "graphar.EdgesCollection.__init__": {"tf": 4}, "graphar.EdgesCollection.begin": {"tf": 3.1622776601683795}, "graphar.EdgesCollection.end": {"tf": 3.1622776601683795}, "graphar.EdgesCollection.size": {"tf": 3.1622776601683795}, "graphar.EdgesCollection.find_src": {"tf": 3.1622776601683795}, "graphar.EdgesCollection.find_dst": {"tf": 3.1622776601683795}, "graphar.EdgesCollection.Make": {"tf": 3.1622776601683795}, "graphar.BuilderVertex.__init__": {"tf": 2}, "graphar.BuilderVertex.GetId": {"tf": 3.1622776601683795}, "graphar.BuilderVertex.SetId": {"tf": 3.1622776601683795}, "graphar.BuilderVertex.Empty": {"tf": 3.1622776601683795}, "graphar.BuilderVertex.AddProperty": {"tf": 3.1622776601683795}, "graphar.BuilderVertex.GetProperty": {"tf": 3.1622776601683795}, "graphar.BuilderVertex.GetProperties": {"tf": 3.1622776601683795}, "graphar.BuilderVertex.ContainProperty": {"tf": 3.1622776601683795}, "graphar.VerticesBuilder.__init__": {"tf": 4}, "graphar.VerticesBuilder.Clear": {"tf": 3.1622776601683795}, "graphar.VerticesBuilder.SetWriterOptions": {"tf": 3.1622776601683795}, "graphar.VerticesBuilder.GetWriterOptions": {"tf": 3.1622776601683795}, "graphar.VerticesBuilder.SetValidateLevel": {"tf": 3.1622776601683795}, "graphar.VerticesBuilder.GetValidateLevel": {"tf": 3.1622776601683795}, "graphar.VerticesBuilder.AddVertex": {"tf": 3.1622776601683795}, "graphar.VerticesBuilder.GetNum": {"tf": 3.1622776601683795}, "graphar.VerticesBuilder.Dump": {"tf": 3.1622776601683795}, "graphar.VerticesBuilder.Make": {"tf": 3.1622776601683795}, "graphar.BuilderEdge.__init__": {"tf": 2}, "graphar.BuilderEdge.Empty": {"tf": 3.1622776601683795}, "graphar.BuilderEdge.GetSource": {"tf": 3.1622776601683795}, "graphar.BuilderEdge.GetDestination": {"tf": 3.1622776601683795}, "graphar.BuilderEdge.AddProperty": {"tf": 3.1622776601683795}, "graphar.BuilderEdge.GetProperty": {"tf": 3.1622776601683795}, "graphar.BuilderEdge.GetProperties": {"tf": 3.1622776601683795}, "graphar.BuilderEdge.ContainProperty": {"tf": 3.1622776601683795}, "graphar.EdgesBuilder.__init__": {"tf": 4}, "graphar.EdgesBuilder.SetValidateLevel": {"tf": 3.1622776601683795}, "graphar.EdgesBuilder.SetWriterOptions": {"tf": 3.1622776601683795}, "graphar.EdgesBuilder.GetWriterOptions": {"tf": 3.1622776601683795}, "graphar.EdgesBuilder.GetValidateLevel": {"tf": 3.1622776601683795}, "graphar.EdgesBuilder.Clear": {"tf": 3.1622776601683795}, "graphar.EdgesBuilder.AddEdge": {"tf": 3.1622776601683795}, "graphar.EdgesBuilder.GetNum": {"tf": 3.1622776601683795}, "graphar.EdgesBuilder.Dump": {"tf": 3.1622776601683795}, "graphar.EdgesBuilder.Make": {"tf": 3.1622776601683795}}, "df": 164, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"graphar.GraphInfo.load": {"tf": 1}, "graphar.GraphInfo.add_vertex": {"tf": 1}, "graphar.GraphInfo.remove_vertex": {"tf": 1}, "graphar.GraphInfo.add_edge": {"tf": 1}, "graphar.GraphInfo.remove_edge": {"tf": 1}, "graphar.GraphInfo.get_name": {"tf": 1}, "graphar.GraphInfo.get_labels": {"tf": 1}, "graphar.GraphInfo.get_prefix": {"tf": 1}, "graphar.GraphInfo.version": {"tf": 1}, "graphar.GraphInfo.get_extra_info": {"tf": 1}, "graphar.GraphInfo.get_vertex_info": {"tf": 1}, "graphar.GraphInfo.get_edge_info": {"tf": 1}, "graphar.GraphInfo.get_vertex_info_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_index": {"tf": 1}, "graphar.GraphInfo.vertex_info_num": {"tf": 1}, "graphar.GraphInfo.edge_info_num": {"tf": 1}, "graphar.GraphInfo.get_vertex_info_by_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_by_index": {"tf": 1}, "graphar.GraphInfo.get_vertex_infos": {"tf": 1}, "graphar.GraphInfo.get_edge_infos": {"tf": 1}, "graphar.GraphInfo.save": {"tf": 1}, "graphar.GraphInfo.dump": {"tf": 1}, "graphar.GraphInfo.is_validated": {"tf": 1}, "graphar.VertexInfo.add_property_group": {"tf": 1}, "graphar.VertexInfo.remove_property_group": {"tf": 1}, "graphar.VertexInfo.get_type": {"tf": 1}, "graphar.VertexInfo.get_chunk_size": {"tf": 1}, "graphar.VertexInfo.get_prefix": {"tf": 1}, "graphar.VertexInfo.version": {"tf": 1}, "graphar.VertexInfo.get_labels": {"tf": 1}, "graphar.VertexInfo.property_group_num": {"tf": 1}, "graphar.VertexInfo.get_property_groups": {"tf": 1}, "graphar.VertexInfo.get_property_group": {"tf": 1}, "graphar.VertexInfo.get_property_group_by_index": {"tf": 1}, "graphar.VertexInfo.get_property_type": {"tf": 1}, "graphar.VertexInfo.get_property_cardinality": {"tf": 1}, "graphar.VertexInfo.has_property": {"tf": 1}, "graphar.VertexInfo.save": {"tf": 1}, "graphar.VertexInfo.dump": {"tf": 1}, "graphar.VertexInfo.is_primary_key": {"tf": 1}, "graphar.VertexInfo.is_nullable_key": {"tf": 1}, "graphar.VertexInfo.has_property_group": {"tf": 1}, "graphar.VertexInfo.get_file_path": {"tf": 1}, "graphar.VertexInfo.get_path_prefix": {"tf": 1}, "graphar.VertexInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.VertexInfo.is_validated": {"tf": 1}, "graphar.EdgeInfo.add_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.remove_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.add_property_group": {"tf": 1}, "graphar.EdgeInfo.remove_property_group": {"tf": 1}, "graphar.EdgeInfo.get_src_type": {"tf": 1}, "graphar.EdgeInfo.get_edge_type": {"tf": 1}, "graphar.EdgeInfo.get_dst_type": {"tf": 1}, "graphar.EdgeInfo.get_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_src_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_dst_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_prefix": {"tf": 1}, "graphar.EdgeInfo.is_directed": {"tf": 1}, "graphar.EdgeInfo.version": {"tf": 1}, "graphar.EdgeInfo.has_adjacent_list_type": {"tf": 1}, "graphar.EdgeInfo.has_property": {"tf": 1}, "graphar.EdgeInfo.has_property_group": {"tf": 1}, "graphar.EdgeInfo.get_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.property_group_num": {"tf": 1}, "graphar.EdgeInfo.get_property_groups": {"tf": 1}, "graphar.EdgeInfo.get_property_group": {"tf": 1}, "graphar.EdgeInfo.get_property_group_by_index": {"tf": 1}, "graphar.EdgeInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_edges_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_offset_file_path": {"tf": 1}, "graphar.EdgeInfo.get_offset_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_property_file_path": {"tf": 1}, "graphar.EdgeInfo.get_property_group_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_property_type": {"tf": 1}, "graphar.EdgeInfo.is_primary_key": {"tf": 1}, "graphar.EdgeInfo.is_nullable_key": {"tf": 1}, "graphar.EdgeInfo.save": {"tf": 1}, "graphar.EdgeInfo.dump": {"tf": 1}, "graphar.EdgeInfo.is_validated": {"tf": 1}, "graphar.PropertyGroup.get_properties": {"tf": 1}, "graphar.PropertyGroup.has_property": {"tf": 1}, "graphar.PropertyGroup.get_file_type": {"tf": 1}, "graphar.PropertyGroup.get_prefix": {"tf": 1}, "graphar.PropertyGroup.is_validated": {"tf": 1}, "graphar.DataType.id": {"tf": 1}, "graphar.DataType.to_type_name": {"tf": 1}, "graphar.AdjacentList.get_type": {"tf": 1}, "graphar.AdjacentList.get_file_type": {"tf": 1}, "graphar.AdjacentList.get_prefix": {"tf": 1}, "graphar.AdjacentList.is_validated": {"tf": 1}, "graphar.Vertex.id": {"tf": 1}, "graphar.Vertex.property": {"tf": 1}, "graphar.Vertex.IsValid": {"tf": 1}, "graphar.Edge.source": {"tf": 1}, "graphar.Edge.destination": {"tf": 1}, "graphar.Edge.property": {"tf": 1}, "graphar.Edge.IsValid": {"tf": 1}, "graphar.VertexIter.id": {"tf": 1}, "graphar.VertexIter.property": {"tf": 1}, "graphar.VerticesCollection.begin": {"tf": 1}, "graphar.VerticesCollection.end": {"tf": 1}, "graphar.VerticesCollection.find": {"tf": 1}, "graphar.VerticesCollection.size": {"tf": 1}, "graphar.VerticesCollection.Make": {"tf": 1}, "graphar.EdgeIter.source": {"tf": 1}, "graphar.EdgeIter.destination": {"tf": 1}, "graphar.EdgeIter.property": {"tf": 1}, "graphar.EdgesCollection.begin": {"tf": 1}, "graphar.EdgesCollection.end": {"tf": 1}, "graphar.EdgesCollection.size": {"tf": 1}, "graphar.EdgesCollection.find_src": {"tf": 1}, "graphar.EdgesCollection.find_dst": {"tf": 1}, "graphar.EdgesCollection.Make": {"tf": 1}, "graphar.BuilderVertex.GetId": {"tf": 1}, "graphar.BuilderVertex.SetId": {"tf": 1}, "graphar.BuilderVertex.Empty": {"tf": 1}, "graphar.BuilderVertex.AddProperty": {"tf": 1}, "graphar.BuilderVertex.GetProperty": {"tf": 1}, "graphar.BuilderVertex.GetProperties": {"tf": 1}, "graphar.BuilderVertex.ContainProperty": {"tf": 1}, "graphar.VerticesBuilder.Clear": {"tf": 1}, "graphar.VerticesBuilder.SetWriterOptions": {"tf": 1}, "graphar.VerticesBuilder.GetWriterOptions": {"tf": 1}, "graphar.VerticesBuilder.SetValidateLevel": {"tf": 1}, "graphar.VerticesBuilder.GetValidateLevel": {"tf": 1}, "graphar.VerticesBuilder.AddVertex": {"tf": 1}, "graphar.VerticesBuilder.GetNum": {"tf": 1}, "graphar.VerticesBuilder.Dump": {"tf": 1}, "graphar.VerticesBuilder.Make": {"tf": 1}, "graphar.BuilderEdge.Empty": {"tf": 1}, "graphar.BuilderEdge.GetSource": {"tf": 1}, "graphar.BuilderEdge.GetDestination": {"tf": 1}, "graphar.BuilderEdge.AddProperty": {"tf": 1}, "graphar.BuilderEdge.GetProperty": {"tf": 1}, "graphar.BuilderEdge.GetProperties": {"tf": 1}, "graphar.BuilderEdge.ContainProperty": {"tf": 1}, "graphar.EdgesBuilder.SetValidateLevel": {"tf": 1}, "graphar.EdgesBuilder.SetWriterOptions": {"tf": 1}, "graphar.EdgesBuilder.GetWriterOptions": {"tf": 1}, "graphar.EdgesBuilder.GetValidateLevel": {"tf": 1}, "graphar.EdgesBuilder.Clear": {"tf": 1}, "graphar.EdgesBuilder.AddEdge": {"tf": 1}, "graphar.EdgesBuilder.GetNum": {"tf": 1}, "graphar.EdgesBuilder.Dump": {"tf": 1}, "graphar.EdgesBuilder.Make": {"tf": 1}}, "df": 147}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"graphar.Vertex.__init__": {"tf": 1}, "graphar.Edge.__init__": {"tf": 1}, "graphar.VertexIter.__init__": {"tf": 1}, "graphar.VerticesCollection.__init__": {"tf": 1}, "graphar.EdgeIter.__init__": {"tf": 1}, "graphar.EdgesCollection.__init__": {"tf": 1}, "graphar.VerticesBuilder.__init__": {"tf": 1}, "graphar.EdgesBuilder.__init__": {"tf": 1}}, "df": 8}}}}, "k": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"graphar.Vertex.__init__": {"tf": 1}, "graphar.Edge.__init__": {"tf": 1}, "graphar.VertexIter.__init__": {"tf": 1}, "graphar.VerticesCollection.__init__": {"tf": 1}, "graphar.EdgeIter.__init__": {"tf": 1}, "graphar.EdgesCollection.__init__": {"tf": 1}, "graphar.VerticesBuilder.__init__": {"tf": 1}, "graphar.EdgesBuilder.__init__": {"tf": 1}}, "df": 8}}}}}}}}, "bases": {"root": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"1": {"1": {"docs": {"graphar.GraphInfo": {"tf": 1.4142135623730951}, "graphar.VertexInfo": {"tf": 1.4142135623730951}, "graphar.EdgeInfo": {"tf": 1.4142135623730951}, "graphar.PropertyGroup": {"tf": 1.4142135623730951}, "graphar.Property": {"tf": 1.4142135623730951}, "graphar.DataType": {"tf": 1.4142135623730951}, "graphar.AdjacentList": {"tf": 1.4142135623730951}, "graphar.Vertex": {"tf": 1.4142135623730951}, "graphar.Edge": {"tf": 1.4142135623730951}, "graphar.VertexIter": {"tf": 1.4142135623730951}, "graphar.VerticesCollection": {"tf": 1.4142135623730951}, "graphar.EdgeIter": {"tf": 1.4142135623730951}, "graphar.EdgesCollection": {"tf": 1.4142135623730951}, "graphar.BuilderVertex": {"tf": 1.4142135623730951}, "graphar.VerticesBuilder": {"tf": 1.4142135623730951}, "graphar.BuilderEdge": {"tf": 1.4142135623730951}, "graphar.EdgesBuilder": {"tf": 1.4142135623730951}}, "df": 17}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"graphar.GraphInfo": {"tf": 1}, "graphar.VertexInfo": {"tf": 1}, "graphar.EdgeInfo": {"tf": 1}, "graphar.PropertyGroup": {"tf": 1}, "graphar.Property": {"tf": 1}, "graphar.DataType": {"tf": 1}, "graphar.AdjacentList": {"tf": 1}, "graphar.Vertex": {"tf": 1}, "graphar.Edge": {"tf": 1}, "graphar.VertexIter": {"tf": 1}, "graphar.VerticesCollection": {"tf": 1}, "graphar.EdgeIter": {"tf": 1}, "graphar.EdgesCollection": {"tf": 1}, "graphar.BuilderVertex": {"tf": 1}, "graphar.VerticesBuilder": {"tf": 1}, "graphar.BuilderEdge": {"tf": 1}, "graphar.EdgesBuilder": {"tf": 1}}, "df": 17}}}}}}}}, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"graphar.GraphInfo": {"tf": 1}, "graphar.VertexInfo": {"tf": 1}, "graphar.EdgeInfo": {"tf": 1}, "graphar.PropertyGroup": {"tf": 1}, "graphar.Property": {"tf": 1}, "graphar.DataType": {"tf": 1}, "graphar.AdjacentList": {"tf": 1}, "graphar.Vertex": {"tf": 1}, "graphar.Edge": {"tf": 1}, "graphar.VertexIter": {"tf": 1}, "graphar.VerticesCollection": {"tf": 1}, "graphar.EdgeIter": {"tf": 1}, "graphar.EdgesCollection": {"tf": 1}, "graphar.BuilderVertex": {"tf": 1}, "graphar.VerticesBuilder": {"tf": 1}, "graphar.BuilderEdge": {"tf": 1}, "graphar.EdgesBuilder": {"tf": 1}}, "df": 17}}}}}}}}, "doc": {"root": {"0": {"docs": {"graphar.VerticesBuilder.Make": {"tf": 1.7320508075688772}}, "df": 1}, "1": {"docs": {"graphar.VerticesBuilder.AddVertex": {"tf": 1}}, "df": 1}, "docs": {"graphar": {"tf": 1.7320508075688772}, "graphar.GraphInfo": {"tf": 1.7320508075688772}, "graphar.GraphInfo.__init__": {"tf": 2.6457513110645907}, "graphar.GraphInfo.load": {"tf": 4.358898943540674}, "graphar.GraphInfo.add_vertex": {"tf": 1.7320508075688772}, "graphar.GraphInfo.remove_vertex": {"tf": 1.7320508075688772}, "graphar.GraphInfo.add_edge": {"tf": 1.7320508075688772}, "graphar.GraphInfo.remove_edge": {"tf": 1.7320508075688772}, "graphar.GraphInfo.get_name": {"tf": 1.7320508075688772}, "graphar.GraphInfo.get_labels": {"tf": 1.7320508075688772}, "graphar.GraphInfo.get_prefix": {"tf": 1.7320508075688772}, "graphar.GraphInfo.version": {"tf": 1.7320508075688772}, "graphar.GraphInfo.get_extra_info": {"tf": 1.7320508075688772}, "graphar.GraphInfo.get_vertex_info": {"tf": 1.7320508075688772}, "graphar.GraphInfo.get_edge_info": {"tf": 1.7320508075688772}, "graphar.GraphInfo.get_vertex_info_index": {"tf": 1.7320508075688772}, "graphar.GraphInfo.get_edge_info_index": {"tf": 1.7320508075688772}, "graphar.GraphInfo.vertex_info_num": {"tf": 1.7320508075688772}, "graphar.GraphInfo.edge_info_num": {"tf": 1.7320508075688772}, "graphar.GraphInfo.get_vertex_info_by_index": {"tf": 1.7320508075688772}, "graphar.GraphInfo.get_edge_info_by_index": {"tf": 1.7320508075688772}, "graphar.GraphInfo.get_vertex_infos": {"tf": 1.7320508075688772}, "graphar.GraphInfo.get_edge_infos": {"tf": 1.7320508075688772}, "graphar.GraphInfo.save": {"tf": 1.7320508075688772}, "graphar.GraphInfo.dump": {"tf": 1.7320508075688772}, "graphar.GraphInfo.is_validated": {"tf": 1.7320508075688772}, "graphar.VertexInfo": {"tf": 1.7320508075688772}, "graphar.VertexInfo.__init__": {"tf": 2.23606797749979}, "graphar.VertexInfo.add_property_group": {"tf": 1.7320508075688772}, "graphar.VertexInfo.remove_property_group": {"tf": 1.7320508075688772}, "graphar.VertexInfo.get_type": {"tf": 1.7320508075688772}, "graphar.VertexInfo.get_chunk_size": {"tf": 1.7320508075688772}, "graphar.VertexInfo.get_prefix": {"tf": 1.7320508075688772}, "graphar.VertexInfo.version": {"tf": 1.7320508075688772}, "graphar.VertexInfo.get_labels": {"tf": 1.7320508075688772}, "graphar.VertexInfo.property_group_num": {"tf": 1.7320508075688772}, "graphar.VertexInfo.get_property_groups": {"tf": 1.7320508075688772}, "graphar.VertexInfo.get_property_group": {"tf": 1.7320508075688772}, "graphar.VertexInfo.get_property_group_by_index": {"tf": 1.7320508075688772}, "graphar.VertexInfo.get_property_type": {"tf": 1.7320508075688772}, "graphar.VertexInfo.get_property_cardinality": {"tf": 1.7320508075688772}, "graphar.VertexInfo.has_property": {"tf": 1.7320508075688772}, "graphar.VertexInfo.save": {"tf": 1.7320508075688772}, "graphar.VertexInfo.dump": {"tf": 1.7320508075688772}, "graphar.VertexInfo.is_primary_key": {"tf": 1.7320508075688772}, "graphar.VertexInfo.is_nullable_key": {"tf": 1.7320508075688772}, "graphar.VertexInfo.has_property_group": {"tf": 1.7320508075688772}, "graphar.VertexInfo.get_file_path": {"tf": 1.7320508075688772}, "graphar.VertexInfo.get_path_prefix": {"tf": 1.7320508075688772}, "graphar.VertexInfo.get_vertices_num_file_path": {"tf": 1.7320508075688772}, "graphar.VertexInfo.is_validated": {"tf": 1.7320508075688772}, "graphar.EdgeInfo": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.__init__": {"tf": 2}, "graphar.EdgeInfo.add_adjacent_list": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.remove_adjacent_list": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.add_property_group": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.remove_property_group": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.get_src_type": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.get_edge_type": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.get_dst_type": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.get_chunk_size": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.get_src_chunk_size": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.get_dst_chunk_size": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.get_prefix": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.is_directed": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.version": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.has_adjacent_list_type": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.has_property": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.has_property_group": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.get_adjacent_list": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.property_group_num": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.get_property_groups": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.get_property_group": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.get_property_group_by_index": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.get_vertices_num_file_path": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.get_edges_num_file_path": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.get_adj_list_file_path": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.get_adj_list_path_prefix": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.get_adj_list_offset_file_path": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.get_offset_path_prefix": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.get_property_file_path": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.get_property_group_path_prefix": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.get_property_type": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.is_primary_key": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.is_nullable_key": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.save": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.dump": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.is_validated": {"tf": 1.7320508075688772}, "graphar.PropertyGroup": {"tf": 1.7320508075688772}, "graphar.PropertyGroup.__init__": {"tf": 2}, "graphar.PropertyGroup.get_properties": {"tf": 1.7320508075688772}, "graphar.PropertyGroup.has_property": {"tf": 1.7320508075688772}, "graphar.PropertyGroup.get_file_type": {"tf": 1.7320508075688772}, "graphar.PropertyGroup.get_prefix": {"tf": 1.7320508075688772}, "graphar.PropertyGroup.is_validated": {"tf": 1.7320508075688772}, "graphar.Property": {"tf": 1.7320508075688772}, "graphar.Property.__init__": {"tf": 4.898979485566356}, "graphar.Property.name": {"tf": 2}, "graphar.Property.type": {"tf": 2}, "graphar.Property.is_primary": {"tf": 2}, "graphar.Property.is_nullable": {"tf": 2}, "graphar.Property.cardinality": {"tf": 2}, "graphar.DataType": {"tf": 1.7320508075688772}, "graphar.DataType.__init__": {"tf": 4.69041575982343}, "graphar.DataType.id": {"tf": 1.7320508075688772}, "graphar.DataType.to_type_name": {"tf": 1.7320508075688772}, "graphar.AdjacentList": {"tf": 1.7320508075688772}, "graphar.AdjacentList.__init__": {"tf": 2}, "graphar.AdjacentList.get_type": {"tf": 1.7320508075688772}, "graphar.AdjacentList.get_file_type": {"tf": 1.7320508075688772}, "graphar.AdjacentList.get_prefix": {"tf": 1.7320508075688772}, "graphar.AdjacentList.is_validated": {"tf": 1.7320508075688772}, "graphar.Vertex": {"tf": 1.7320508075688772}, "graphar.Vertex.__init__": {"tf": 1.7320508075688772}, "graphar.Vertex.id": {"tf": 1.7320508075688772}, "graphar.Vertex.property": {"tf": 1.7320508075688772}, "graphar.Vertex.IsValid": {"tf": 1.7320508075688772}, "graphar.Edge": {"tf": 1.7320508075688772}, "graphar.Edge.__init__": {"tf": 1.7320508075688772}, "graphar.Edge.source": {"tf": 1.7320508075688772}, "graphar.Edge.destination": {"tf": 1.7320508075688772}, "graphar.Edge.property": {"tf": 1.7320508075688772}, "graphar.Edge.IsValid": {"tf": 1.7320508075688772}, "graphar.VertexIter": {"tf": 1.7320508075688772}, "graphar.VertexIter.__init__": {"tf": 1.7320508075688772}, "graphar.VertexIter.id": {"tf": 1.7320508075688772}, "graphar.VertexIter.property": {"tf": 1.7320508075688772}, "graphar.VerticesCollection": {"tf": 1.7320508075688772}, "graphar.VerticesCollection.__init__": {"tf": 1.7320508075688772}, "graphar.VerticesCollection.begin": {"tf": 1.7320508075688772}, "graphar.VerticesCollection.end": {"tf": 1.7320508075688772}, "graphar.VerticesCollection.find": {"tf": 1.7320508075688772}, "graphar.VerticesCollection.size": {"tf": 1.7320508075688772}, "graphar.VerticesCollection.Make": {"tf": 1.7320508075688772}, "graphar.EdgeIter": {"tf": 1.7320508075688772}, "graphar.EdgeIter.__init__": {"tf": 1.7320508075688772}, "graphar.EdgeIter.source": {"tf": 1.7320508075688772}, "graphar.EdgeIter.destination": {"tf": 1.7320508075688772}, "graphar.EdgeIter.property": {"tf": 1.7320508075688772}, "graphar.EdgesCollection": {"tf": 1.7320508075688772}, "graphar.EdgesCollection.__init__": {"tf": 1.7320508075688772}, "graphar.EdgesCollection.begin": {"tf": 1.7320508075688772}, "graphar.EdgesCollection.end": {"tf": 1.7320508075688772}, "graphar.EdgesCollection.size": {"tf": 1.7320508075688772}, "graphar.EdgesCollection.find_src": {"tf": 1.7320508075688772}, "graphar.EdgesCollection.find_dst": {"tf": 1.7320508075688772}, "graphar.EdgesCollection.Make": {"tf": 1.7320508075688772}, "graphar.BuilderVertex": {"tf": 1.7320508075688772}, "graphar.BuilderVertex.__init__": {"tf": 4.69041575982343}, "graphar.BuilderVertex.GetId": {"tf": 1.7320508075688772}, "graphar.BuilderVertex.SetId": {"tf": 1.7320508075688772}, "graphar.BuilderVertex.Empty": {"tf": 1.7320508075688772}, "graphar.BuilderVertex.AddProperty": {"tf": 1.7320508075688772}, "graphar.BuilderVertex.GetProperty": {"tf": 1.7320508075688772}, "graphar.BuilderVertex.GetProperties": {"tf": 1.7320508075688772}, "graphar.BuilderVertex.ContainProperty": {"tf": 1.7320508075688772}, "graphar.VerticesBuilder": {"tf": 1.7320508075688772}, "graphar.VerticesBuilder.__init__": {"tf": 1.7320508075688772}, "graphar.VerticesBuilder.Clear": {"tf": 1.7320508075688772}, "graphar.VerticesBuilder.SetWriterOptions": {"tf": 1.7320508075688772}, "graphar.VerticesBuilder.GetWriterOptions": {"tf": 1.7320508075688772}, "graphar.VerticesBuilder.SetValidateLevel": {"tf": 1.7320508075688772}, "graphar.VerticesBuilder.GetValidateLevel": {"tf": 1.7320508075688772}, "graphar.VerticesBuilder.AddVertex": {"tf": 2.23606797749979}, "graphar.VerticesBuilder.GetNum": {"tf": 1.7320508075688772}, "graphar.VerticesBuilder.Dump": {"tf": 1.7320508075688772}, "graphar.VerticesBuilder.Make": {"tf": 5.291502622129181}, "graphar.BuilderEdge": {"tf": 1.7320508075688772}, "graphar.BuilderEdge.__init__": {"tf": 2}, "graphar.BuilderEdge.Empty": {"tf": 1.7320508075688772}, "graphar.BuilderEdge.GetSource": {"tf": 1.7320508075688772}, "graphar.BuilderEdge.GetDestination": {"tf": 1.7320508075688772}, "graphar.BuilderEdge.AddProperty": {"tf": 1.7320508075688772}, "graphar.BuilderEdge.GetProperty": {"tf": 1.7320508075688772}, "graphar.BuilderEdge.GetProperties": {"tf": 1.7320508075688772}, "graphar.BuilderEdge.ContainProperty": {"tf": 1.7320508075688772}, "graphar.EdgesBuilder": {"tf": 1.7320508075688772}, "graphar.EdgesBuilder.__init__": {"tf": 1.7320508075688772}, "graphar.EdgesBuilder.SetValidateLevel": {"tf": 1.7320508075688772}, "graphar.EdgesBuilder.SetWriterOptions": {"tf": 1.7320508075688772}, "graphar.EdgesBuilder.GetWriterOptions": {"tf": 1.7320508075688772}, "graphar.EdgesBuilder.GetValidateLevel": {"tf": 1.7320508075688772}, "graphar.EdgesBuilder.Clear": {"tf": 1.7320508075688772}, "graphar.EdgesBuilder.AddEdge": {"tf": 2.23606797749979}, "graphar.EdgesBuilder.GetNum": {"tf": 1.7320508075688772}, "graphar.EdgesBuilder.Dump": {"tf": 1.7320508075688772}, "graphar.EdgesBuilder.Make": {"tf": 4.795831523312719}}, "df": 187, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"graphar.GraphInfo.__init__": {"tf": 1}, "graphar.VertexInfo.__init__": {"tf": 1}, "graphar.EdgeInfo.__init__": {"tf": 1}, "graphar.PropertyGroup.__init__": {"tf": 1}, "graphar.Property.__init__": {"tf": 1.7320508075688772}, "graphar.DataType.__init__": {"tf": 1.7320508075688772}, "graphar.AdjacentList.__init__": {"tf": 1}, "graphar.BuilderVertex.__init__": {"tf": 1.7320508075688772}, "graphar.BuilderEdge.__init__": {"tf": 1}}, "df": 9}}, "f": {"docs": {}, "df": 0, "o": {"docs": {"graphar.GraphInfo.__init__": {"tf": 1}, "graphar.GraphInfo.get_extra_info": {"tf": 1}, "graphar.GraphInfo.get_vertex_info": {"tf": 1}, "graphar.GraphInfo.get_edge_info": {"tf": 1}, "graphar.GraphInfo.get_vertex_info_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_index": {"tf": 1}, "graphar.GraphInfo.vertex_info_num": {"tf": 1}, "graphar.GraphInfo.edge_info_num": {"tf": 1}, "graphar.GraphInfo.get_vertex_info_by_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_by_index": {"tf": 1}, "graphar.VerticesBuilder.Make": {"tf": 1.7320508075688772}, "graphar.EdgesBuilder.Make": {"tf": 1.4142135623730951}}, "df": 12, "s": {"docs": {"graphar.GraphInfo.__init__": {"tf": 1.4142135623730951}, "graphar.GraphInfo.get_vertex_infos": {"tf": 1}, "graphar.GraphInfo.get_edge_infos": {"tf": 1}}, "df": 3}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"graphar.GraphInfo.__init__": {"tf": 1}, "graphar.GraphInfo.version": {"tf": 1}, "graphar.VertexInfo.__init__": {"tf": 1}, "graphar.VertexInfo.version": {"tf": 1}, "graphar.EdgeInfo.__init__": {"tf": 1}, "graphar.EdgeInfo.version": {"tf": 1}}, "df": 6}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"graphar.GraphInfo.get_vertex_info_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_index": {"tf": 1}, "graphar.GraphInfo.get_vertex_info_by_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_by_index": {"tf": 1}, "graphar.VertexInfo.get_property_group_by_index": {"tf": 1}, "graphar.EdgeInfo.get_property_group_by_index": {"tf": 1}, "graphar.VerticesBuilder.AddVertex": {"tf": 1}, "graphar.VerticesBuilder.Make": {"tf": 1.7320508075688772}}, "df": 8}}}, "t": {"docs": {"graphar.GraphInfo.get_vertex_info_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_index": {"tf": 1}, "graphar.GraphInfo.vertex_info_num": {"tf": 1}, "graphar.GraphInfo.edge_info_num": {"tf": 1}, "graphar.VertexInfo.get_chunk_size": {"tf": 1}, "graphar.VertexInfo.property_group_num": {"tf": 1}, "graphar.EdgeInfo.get_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_src_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_dst_chunk_size": {"tf": 1}, "graphar.EdgeInfo.property_group_num": {"tf": 1}, "graphar.Vertex.id": {"tf": 1}, "graphar.Edge.source": {"tf": 1}, "graphar.Edge.destination": {"tf": 1}, "graphar.VertexIter.id": {"tf": 1}, "graphar.VerticesCollection.size": {"tf": 1}, "graphar.EdgeIter.source": {"tf": 1}, "graphar.EdgeIter.destination": {"tf": 1}, "graphar.EdgesCollection.size": {"tf": 1}, "graphar.BuilderVertex.GetId": {"tf": 1}, "graphar.VerticesBuilder.GetNum": {"tf": 1}, "graphar.BuilderEdge.GetSource": {"tf": 1}, "graphar.BuilderEdge.GetDestination": {"tf": 1}, "graphar.EdgesBuilder.GetNum": {"tf": 1}}, "df": 23}}, "s": {"docs": {"graphar.GraphInfo.is_validated": {"tf": 1}, "graphar.VertexInfo.is_primary_key": {"tf": 1}, "graphar.VertexInfo.is_nullable_key": {"tf": 1}, "graphar.VertexInfo.is_validated": {"tf": 1}, "graphar.EdgeInfo.is_directed": {"tf": 1}, "graphar.EdgeInfo.is_primary_key": {"tf": 1}, "graphar.EdgeInfo.is_nullable_key": {"tf": 1}, "graphar.EdgeInfo.is_validated": {"tf": 1}, "graphar.PropertyGroup.is_validated": {"tf": 1}, "graphar.Property.__init__": {"tf": 1.4142135623730951}, "graphar.AdjacentList.is_validated": {"tf": 1}}, "df": 11, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"graphar.Vertex.IsValid": {"tf": 1}, "graphar.Edge.IsValid": {"tf": 1}}, "df": 2}}}}}}, "d": {"docs": {"graphar.DataType.id": {"tf": 1}, "graphar.Vertex.id": {"tf": 1}, "graphar.VertexIter.id": {"tf": 1}}, "df": 3}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {"graphar.GraphInfo.__init__": {"tf": 1}, "graphar.GraphInfo.add_vertex": {"tf": 1}, "graphar.GraphInfo.remove_vertex": {"tf": 1}, "graphar.GraphInfo.add_edge": {"tf": 1}, "graphar.GraphInfo.remove_edge": {"tf": 1}, "graphar.GraphInfo.get_name": {"tf": 1}, "graphar.GraphInfo.get_labels": {"tf": 1}, "graphar.GraphInfo.get_prefix": {"tf": 1}, "graphar.GraphInfo.version": {"tf": 1}, "graphar.GraphInfo.get_extra_info": {"tf": 1}, "graphar.GraphInfo.get_vertex_info": {"tf": 1}, "graphar.GraphInfo.get_edge_info": {"tf": 1}, "graphar.GraphInfo.get_vertex_info_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_index": {"tf": 1}, "graphar.GraphInfo.vertex_info_num": {"tf": 1}, "graphar.GraphInfo.edge_info_num": {"tf": 1}, "graphar.GraphInfo.get_vertex_info_by_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_by_index": {"tf": 1}, "graphar.GraphInfo.get_vertex_infos": {"tf": 1}, "graphar.GraphInfo.get_edge_infos": {"tf": 1}, "graphar.GraphInfo.save": {"tf": 1}, "graphar.GraphInfo.dump": {"tf": 1}, "graphar.GraphInfo.is_validated": {"tf": 1}, "graphar.VertexInfo.__init__": {"tf": 1}, "graphar.VertexInfo.add_property_group": {"tf": 1}, "graphar.VertexInfo.remove_property_group": {"tf": 1}, "graphar.VertexInfo.get_type": {"tf": 1}, "graphar.VertexInfo.get_chunk_size": {"tf": 1}, "graphar.VertexInfo.get_prefix": {"tf": 1}, "graphar.VertexInfo.version": {"tf": 1}, "graphar.VertexInfo.get_labels": {"tf": 1}, "graphar.VertexInfo.property_group_num": {"tf": 1}, "graphar.VertexInfo.get_property_groups": {"tf": 1}, "graphar.VertexInfo.get_property_group": {"tf": 1}, "graphar.VertexInfo.get_property_group_by_index": {"tf": 1}, "graphar.VertexInfo.get_property_type": {"tf": 1}, "graphar.VertexInfo.get_property_cardinality": {"tf": 1}, "graphar.VertexInfo.has_property": {"tf": 1}, "graphar.VertexInfo.save": {"tf": 1}, "graphar.VertexInfo.dump": {"tf": 1}, "graphar.VertexInfo.is_primary_key": {"tf": 1}, "graphar.VertexInfo.is_nullable_key": {"tf": 1}, "graphar.VertexInfo.has_property_group": {"tf": 1}, "graphar.VertexInfo.get_file_path": {"tf": 1}, "graphar.VertexInfo.get_path_prefix": {"tf": 1}, "graphar.VertexInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.VertexInfo.is_validated": {"tf": 1}, "graphar.EdgeInfo.__init__": {"tf": 1}, "graphar.EdgeInfo.add_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.remove_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.add_property_group": {"tf": 1}, "graphar.EdgeInfo.remove_property_group": {"tf": 1}, "graphar.EdgeInfo.get_src_type": {"tf": 1}, "graphar.EdgeInfo.get_edge_type": {"tf": 1}, "graphar.EdgeInfo.get_dst_type": {"tf": 1}, "graphar.EdgeInfo.get_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_src_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_dst_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_prefix": {"tf": 1}, "graphar.EdgeInfo.is_directed": {"tf": 1}, "graphar.EdgeInfo.version": {"tf": 1}, "graphar.EdgeInfo.has_adjacent_list_type": {"tf": 1}, "graphar.EdgeInfo.has_property": {"tf": 1}, "graphar.EdgeInfo.has_property_group": {"tf": 1}, "graphar.EdgeInfo.get_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.property_group_num": {"tf": 1}, "graphar.EdgeInfo.get_property_groups": {"tf": 1}, "graphar.EdgeInfo.get_property_group": {"tf": 1}, "graphar.EdgeInfo.get_property_group_by_index": {"tf": 1}, "graphar.EdgeInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_edges_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_offset_file_path": {"tf": 1}, "graphar.EdgeInfo.get_offset_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_property_file_path": {"tf": 1}, "graphar.EdgeInfo.get_property_group_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_property_type": {"tf": 1}, "graphar.EdgeInfo.is_primary_key": {"tf": 1}, "graphar.EdgeInfo.is_nullable_key": {"tf": 1}, "graphar.EdgeInfo.save": {"tf": 1}, "graphar.EdgeInfo.dump": {"tf": 1}, "graphar.EdgeInfo.is_validated": {"tf": 1}, "graphar.PropertyGroup.__init__": {"tf": 1}, "graphar.PropertyGroup.get_properties": {"tf": 1}, "graphar.PropertyGroup.has_property": {"tf": 1}, "graphar.PropertyGroup.get_file_type": {"tf": 1}, "graphar.PropertyGroup.get_prefix": {"tf": 1}, "graphar.PropertyGroup.is_validated": {"tf": 1}, "graphar.Property.__init__": {"tf": 1.4142135623730951}, "graphar.Property.name": {"tf": 1}, "graphar.Property.type": {"tf": 1}, "graphar.Property.is_primary": {"tf": 1}, "graphar.Property.is_nullable": {"tf": 1}, "graphar.Property.cardinality": {"tf": 1}, "graphar.DataType.__init__": {"tf": 1.4142135623730951}, "graphar.DataType.id": {"tf": 1}, "graphar.DataType.to_type_name": {"tf": 1}, "graphar.AdjacentList.__init__": {"tf": 1}, "graphar.AdjacentList.get_type": {"tf": 1}, "graphar.AdjacentList.get_file_type": {"tf": 1}, "graphar.AdjacentList.get_prefix": {"tf": 1}, "graphar.AdjacentList.is_validated": {"tf": 1}, "graphar.Vertex.id": {"tf": 1}, "graphar.Vertex.property": {"tf": 1}, "graphar.Vertex.IsValid": {"tf": 1}, "graphar.Edge.source": {"tf": 1}, "graphar.Edge.destination": {"tf": 1}, "graphar.Edge.property": {"tf": 1}, "graphar.Edge.IsValid": {"tf": 1}, "graphar.VertexIter.id": {"tf": 1}, "graphar.VertexIter.property": {"tf": 1}, "graphar.VerticesCollection.begin": {"tf": 1}, "graphar.VerticesCollection.end": {"tf": 1}, "graphar.VerticesCollection.find": {"tf": 1}, "graphar.VerticesCollection.size": {"tf": 1}, "graphar.EdgeIter.source": {"tf": 1}, "graphar.EdgeIter.destination": {"tf": 1}, "graphar.EdgeIter.property": {"tf": 1}, "graphar.EdgesCollection.begin": {"tf": 1}, "graphar.EdgesCollection.end": {"tf": 1}, "graphar.EdgesCollection.size": {"tf": 1}, "graphar.EdgesCollection.find_src": {"tf": 1}, "graphar.EdgesCollection.find_dst": {"tf": 1}, "graphar.BuilderVertex.__init__": {"tf": 1.4142135623730951}, "graphar.BuilderVertex.GetId": {"tf": 1}, "graphar.BuilderVertex.SetId": {"tf": 1}, "graphar.BuilderVertex.Empty": {"tf": 1}, "graphar.BuilderVertex.AddProperty": {"tf": 1}, "graphar.BuilderVertex.GetProperty": {"tf": 1}, "graphar.BuilderVertex.GetProperties": {"tf": 1}, "graphar.BuilderVertex.ContainProperty": {"tf": 1}, "graphar.VerticesBuilder.Clear": {"tf": 1}, "graphar.VerticesBuilder.SetWriterOptions": {"tf": 1}, "graphar.VerticesBuilder.GetWriterOptions": {"tf": 1}, "graphar.VerticesBuilder.SetValidateLevel": {"tf": 1}, "graphar.VerticesBuilder.GetValidateLevel": {"tf": 1}, "graphar.VerticesBuilder.AddVertex": {"tf": 1}, "graphar.VerticesBuilder.GetNum": {"tf": 1}, "graphar.VerticesBuilder.Dump": {"tf": 1}, "graphar.BuilderEdge.__init__": {"tf": 1}, "graphar.BuilderEdge.Empty": {"tf": 1}, "graphar.BuilderEdge.GetSource": {"tf": 1}, "graphar.BuilderEdge.GetDestination": {"tf": 1}, "graphar.BuilderEdge.AddProperty": {"tf": 1}, "graphar.BuilderEdge.GetProperty": {"tf": 1}, "graphar.BuilderEdge.GetProperties": {"tf": 1}, "graphar.BuilderEdge.ContainProperty": {"tf": 1}, "graphar.EdgesBuilder.SetValidateLevel": {"tf": 1}, "graphar.EdgesBuilder.SetWriterOptions": {"tf": 1}, "graphar.EdgesBuilder.GetWriterOptions": {"tf": 1}, "graphar.EdgesBuilder.GetValidateLevel": {"tf": 1}, "graphar.EdgesBuilder.Clear": {"tf": 1}, "graphar.EdgesBuilder.AddEdge": {"tf": 1}, "graphar.EdgesBuilder.GetNum": {"tf": 1}, "graphar.EdgesBuilder.Dump": {"tf": 1}}, "df": 156}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"graphar.GraphInfo.__init__": {"tf": 1.4142135623730951}, "graphar.VertexInfo.__init__": {"tf": 1}, "graphar.EdgeInfo.__init__": {"tf": 1.4142135623730951}, "graphar.PropertyGroup.__init__": {"tf": 1}}, "df": 4}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"graphar.GraphInfo.__init__": {"tf": 1}, "graphar.VertexInfo.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"graphar.BuilderVertex.SetId": {"tf": 1}}, "df": 1}}, "w": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"graphar.VerticesBuilder.SetWriterOptions": {"tf": 1}, "graphar.EdgesBuilder.SetWriterOptions": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"graphar.VerticesBuilder.SetValidateLevel": {"tf": 1}, "graphar.EdgesBuilder.SetValidateLevel": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {"graphar.GraphInfo.__init__": {"tf": 1.7320508075688772}, "graphar.GraphInfo.load": {"tf": 1.7320508075688772}, "graphar.GraphInfo.get_name": {"tf": 1}, "graphar.GraphInfo.get_prefix": {"tf": 1}, "graphar.GraphInfo.get_extra_info": {"tf": 1}, "graphar.GraphInfo.get_vertex_info": {"tf": 1}, "graphar.GraphInfo.get_edge_info": {"tf": 1.7320508075688772}, "graphar.GraphInfo.get_vertex_info_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_index": {"tf": 1.7320508075688772}, "graphar.GraphInfo.save": {"tf": 1}, "graphar.GraphInfo.dump": {"tf": 1}, "graphar.VertexInfo.__init__": {"tf": 1.4142135623730951}, "graphar.VertexInfo.get_type": {"tf": 1}, "graphar.VertexInfo.get_prefix": {"tf": 1}, "graphar.VertexInfo.get_property_group": {"tf": 1}, "graphar.VertexInfo.get_property_type": {"tf": 1}, "graphar.VertexInfo.get_property_cardinality": {"tf": 1}, "graphar.VertexInfo.has_property": {"tf": 1}, "graphar.VertexInfo.save": {"tf": 1}, "graphar.VertexInfo.dump": {"tf": 1}, "graphar.VertexInfo.is_primary_key": {"tf": 1}, "graphar.VertexInfo.is_nullable_key": {"tf": 1}, "graphar.VertexInfo.get_file_path": {"tf": 1}, "graphar.VertexInfo.get_path_prefix": {"tf": 1}, "graphar.VertexInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.EdgeInfo.__init__": {"tf": 2}, "graphar.EdgeInfo.get_src_type": {"tf": 1}, "graphar.EdgeInfo.get_edge_type": {"tf": 1}, "graphar.EdgeInfo.get_dst_type": {"tf": 1}, "graphar.EdgeInfo.get_prefix": {"tf": 1}, "graphar.EdgeInfo.has_property": {"tf": 1}, "graphar.EdgeInfo.get_property_group": {"tf": 1}, "graphar.EdgeInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_edges_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_offset_file_path": {"tf": 1}, "graphar.EdgeInfo.get_offset_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_property_file_path": {"tf": 1}, "graphar.EdgeInfo.get_property_group_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_property_type": {"tf": 1}, "graphar.EdgeInfo.is_primary_key": {"tf": 1}, "graphar.EdgeInfo.is_nullable_key": {"tf": 1}, "graphar.EdgeInfo.save": {"tf": 1}, "graphar.EdgeInfo.dump": {"tf": 1}, "graphar.PropertyGroup.__init__": {"tf": 1}, "graphar.PropertyGroup.has_property": {"tf": 1}, "graphar.PropertyGroup.get_prefix": {"tf": 1}, "graphar.Property.__init__": {"tf": 1}, "graphar.Property.name": {"tf": 1}, "graphar.DataType.to_type_name": {"tf": 1}, "graphar.AdjacentList.__init__": {"tf": 1}, "graphar.AdjacentList.get_prefix": {"tf": 1}, "graphar.Vertex.property": {"tf": 1}, "graphar.Vertex.IsValid": {"tf": 1}, "graphar.Edge.property": {"tf": 1}, "graphar.Edge.IsValid": {"tf": 1}, "graphar.VertexIter.property": {"tf": 1}, "graphar.VerticesCollection.Make": {"tf": 1}, "graphar.EdgeIter.property": {"tf": 1}, "graphar.EdgesCollection.Make": {"tf": 1.7320508075688772}, "graphar.BuilderVertex.AddProperty": {"tf": 1}, "graphar.BuilderVertex.GetProperty": {"tf": 1}, "graphar.BuilderVertex.ContainProperty": {"tf": 1}, "graphar.VerticesBuilder.Make": {"tf": 1.7320508075688772}, "graphar.BuilderEdge.AddProperty": {"tf": 1}, "graphar.BuilderEdge.GetProperty": {"tf": 1}, "graphar.BuilderEdge.ContainProperty": {"tf": 1}, "graphar.EdgesBuilder.Make": {"tf": 2}}, "df": 69}, "d": {"docs": {}, "df": 0, ":": {"docs": {}, "df": 0, ":": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "y": {"docs": {"graphar.BuilderVertex.GetProperties": {"tf": 1}, "graphar.BuilderEdge.GetProperties": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"graphar.VerticesBuilder.Make": {"tf": 1.7320508075688772}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"graphar.GraphInfo.get_vertex_info_by_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_by_index": {"tf": 1}, "graphar.VertexInfo.__init__": {"tf": 1}, "graphar.VertexInfo.get_property_group_by_index": {"tf": 1}, "graphar.VertexInfo.get_file_path": {"tf": 1}, "graphar.EdgeInfo.__init__": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.get_property_group_by_index": {"tf": 1}, "graphar.EdgeInfo.get_edges_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_file_path": {"tf": 1.4142135623730951}, "graphar.EdgeInfo.get_adj_list_offset_file_path": {"tf": 1}, "graphar.EdgeInfo.get_property_file_path": {"tf": 1.4142135623730951}, "graphar.VerticesCollection.find": {"tf": 1}, "graphar.EdgesCollection.find_src": {"tf": 1}, "graphar.EdgesCollection.find_dst": {"tf": 1}, "graphar.BuilderVertex.__init__": {"tf": 1}, "graphar.BuilderVertex.SetId": {"tf": 1}, "graphar.VerticesBuilder.AddVertex": {"tf": 1}, "graphar.VerticesBuilder.Make": {"tf": 1.7320508075688772}, "graphar.BuilderEdge.__init__": {"tf": 1.4142135623730951}, "graphar.EdgesBuilder.Make": {"tf": 1.4142135623730951}}, "df": 20}}}}}}}}}}, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"graphar.GraphInfo.save": {"tf": 1}, "graphar.VertexInfo.save": {"tf": 1}, "graphar.EdgeInfo.save": {"tf": 1}}, "df": 3}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"graphar.VertexInfo.__init__": {"tf": 1}, "graphar.VertexInfo.get_chunk_size": {"tf": 1}, "graphar.EdgeInfo.__init__": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.get_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_src_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_dst_chunk_size": {"tf": 1}, "graphar.VerticesCollection.size": {"tf": 1}, "graphar.EdgesCollection.size": {"tf": 1}}, "df": 8}}}, "r": {"docs": {}, "df": 0, "c": {"docs": {"graphar.EdgeInfo.__init__": {"tf": 1.4142135623730951}, "graphar.EdgeInfo.get_src_type": {"tf": 1}, "graphar.EdgeInfo.get_src_chunk_size": {"tf": 1}, "graphar.EdgesCollection.find_src": {"tf": 1}, "graphar.EdgesBuilder.Make": {"tf": 1}}, "df": 5}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"graphar.Edge.source": {"tf": 1}, "graphar.EdgeIter.source": {"tf": 1}}, "df": 2}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "h": {"docs": {"graphar.GraphInfo.__init__": {"tf": 1}, "graphar.VerticesBuilder.Make": {"tf": 1}, "graphar.EdgesBuilder.Make": {"tf": 1}}, "df": 3, "a": {"docs": {}, "df": 0, "r": {"docs": {"graphar.GraphInfo.__init__": {"tf": 1.4142135623730951}, "graphar.GraphInfo.load": {"tf": 1.4142135623730951}, "graphar.GraphInfo.add_vertex": {"tf": 1.7320508075688772}, "graphar.GraphInfo.remove_vertex": {"tf": 1.7320508075688772}, "graphar.GraphInfo.add_edge": {"tf": 1.7320508075688772}, "graphar.GraphInfo.remove_edge": {"tf": 1.7320508075688772}, "graphar.GraphInfo.get_name": {"tf": 1}, "graphar.GraphInfo.get_labels": {"tf": 1}, "graphar.GraphInfo.get_prefix": {"tf": 1}, "graphar.GraphInfo.version": {"tf": 1.4142135623730951}, "graphar.GraphInfo.get_extra_info": {"tf": 1}, "graphar.GraphInfo.get_vertex_info": {"tf": 1.4142135623730951}, "graphar.GraphInfo.get_edge_info": {"tf": 1.4142135623730951}, "graphar.GraphInfo.get_vertex_info_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_index": {"tf": 1}, "graphar.GraphInfo.vertex_info_num": {"tf": 1}, "graphar.GraphInfo.edge_info_num": {"tf": 1}, "graphar.GraphInfo.get_vertex_info_by_index": {"tf": 1.4142135623730951}, "graphar.GraphInfo.get_edge_info_by_index": {"tf": 1.4142135623730951}, "graphar.GraphInfo.get_vertex_infos": {"tf": 1}, "graphar.GraphInfo.get_edge_infos": {"tf": 1}, "graphar.GraphInfo.save": {"tf": 1}, "graphar.GraphInfo.dump": {"tf": 1}, "graphar.GraphInfo.is_validated": {"tf": 1}, "graphar.VertexInfo.__init__": {"tf": 1.4142135623730951}, "graphar.VertexInfo.add_property_group": {"tf": 1.7320508075688772}, "graphar.VertexInfo.remove_property_group": {"tf": 1.7320508075688772}, "graphar.VertexInfo.get_type": {"tf": 1}, "graphar.VertexInfo.get_chunk_size": {"tf": 1}, "graphar.VertexInfo.get_prefix": {"tf": 1}, "graphar.VertexInfo.version": {"tf": 1.4142135623730951}, "graphar.VertexInfo.get_labels": {"tf": 1}, "graphar.VertexInfo.property_group_num": {"tf": 1}, "graphar.VertexInfo.get_property_groups": {"tf": 1}, "graphar.VertexInfo.get_property_group": {"tf": 1.4142135623730951}, "graphar.VertexInfo.get_property_group_by_index": {"tf": 1.4142135623730951}, "graphar.VertexInfo.get_property_type": {"tf": 1.4142135623730951}, "graphar.VertexInfo.get_property_cardinality": {"tf": 1.4142135623730951}, "graphar.VertexInfo.has_property": {"tf": 1}, "graphar.VertexInfo.save": {"tf": 1}, "graphar.VertexInfo.dump": {"tf": 1}, "graphar.VertexInfo.is_primary_key": {"tf": 1}, "graphar.VertexInfo.is_nullable_key": {"tf": 1}, "graphar.VertexInfo.has_property_group": {"tf": 1.4142135623730951}, "graphar.VertexInfo.get_file_path": {"tf": 1.4142135623730951}, "graphar.VertexInfo.get_path_prefix": {"tf": 1.4142135623730951}, "graphar.VertexInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.VertexInfo.is_validated": {"tf": 1}, "graphar.EdgeInfo.__init__": {"tf": 1.4142135623730951}, "graphar.EdgeInfo.add_adjacent_list": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.remove_adjacent_list": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.add_property_group": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.remove_property_group": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.get_src_type": {"tf": 1}, "graphar.EdgeInfo.get_edge_type": {"tf": 1}, "graphar.EdgeInfo.get_dst_type": {"tf": 1}, "graphar.EdgeInfo.get_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_src_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_dst_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_prefix": {"tf": 1}, "graphar.EdgeInfo.is_directed": {"tf": 1}, "graphar.EdgeInfo.version": {"tf": 1.4142135623730951}, "graphar.EdgeInfo.has_adjacent_list_type": {"tf": 1.4142135623730951}, "graphar.EdgeInfo.has_property": {"tf": 1}, "graphar.EdgeInfo.has_property_group": {"tf": 1.4142135623730951}, "graphar.EdgeInfo.get_adjacent_list": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.property_group_num": {"tf": 1}, "graphar.EdgeInfo.get_property_groups": {"tf": 1}, "graphar.EdgeInfo.get_property_group": {"tf": 1.4142135623730951}, "graphar.EdgeInfo.get_property_group_by_index": {"tf": 1.4142135623730951}, "graphar.EdgeInfo.get_vertices_num_file_path": {"tf": 1.4142135623730951}, "graphar.EdgeInfo.get_edges_num_file_path": {"tf": 1.4142135623730951}, "graphar.EdgeInfo.get_adj_list_file_path": {"tf": 1.4142135623730951}, "graphar.EdgeInfo.get_adj_list_path_prefix": {"tf": 1.4142135623730951}, "graphar.EdgeInfo.get_adj_list_offset_file_path": {"tf": 1.4142135623730951}, "graphar.EdgeInfo.get_offset_path_prefix": {"tf": 1.4142135623730951}, "graphar.EdgeInfo.get_property_file_path": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.get_property_group_path_prefix": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.get_property_type": {"tf": 1.4142135623730951}, "graphar.EdgeInfo.is_primary_key": {"tf": 1}, "graphar.EdgeInfo.is_nullable_key": {"tf": 1}, "graphar.EdgeInfo.save": {"tf": 1}, "graphar.EdgeInfo.dump": {"tf": 1}, "graphar.EdgeInfo.is_validated": {"tf": 1}, "graphar.PropertyGroup.__init__": {"tf": 1.4142135623730951}, "graphar.PropertyGroup.get_properties": {"tf": 1}, "graphar.PropertyGroup.has_property": {"tf": 1}, "graphar.PropertyGroup.get_file_type": {"tf": 1.4142135623730951}, "graphar.PropertyGroup.get_prefix": {"tf": 1}, "graphar.PropertyGroup.is_validated": {"tf": 1}, "graphar.Property.__init__": {"tf": 2}, "graphar.Property.name": {"tf": 1}, "graphar.Property.type": {"tf": 1.4142135623730951}, "graphar.Property.is_primary": {"tf": 1}, "graphar.Property.is_nullable": {"tf": 1}, "graphar.Property.cardinality": {"tf": 1.4142135623730951}, "graphar.DataType.__init__": {"tf": 1.7320508075688772}, "graphar.DataType.id": {"tf": 1.4142135623730951}, "graphar.DataType.to_type_name": {"tf": 1}, "graphar.AdjacentList.__init__": {"tf": 1.7320508075688772}, "graphar.AdjacentList.get_type": {"tf": 1.4142135623730951}, "graphar.AdjacentList.get_file_type": {"tf": 1.4142135623730951}, "graphar.AdjacentList.get_prefix": {"tf": 1}, "graphar.AdjacentList.is_validated": {"tf": 1}, "graphar.Vertex.id": {"tf": 1}, "graphar.Vertex.property": {"tf": 1}, "graphar.Vertex.IsValid": {"tf": 1}, "graphar.Edge.source": {"tf": 1}, "graphar.Edge.destination": {"tf": 1}, "graphar.Edge.property": {"tf": 1}, "graphar.Edge.IsValid": {"tf": 1}, "graphar.VertexIter.id": {"tf": 1}, "graphar.VertexIter.property": {"tf": 1}, "graphar.VerticesCollection.begin": {"tf": 1.4142135623730951}, "graphar.VerticesCollection.end": {"tf": 1.4142135623730951}, "graphar.VerticesCollection.find": {"tf": 1.4142135623730951}, "graphar.VerticesCollection.size": {"tf": 1}, "graphar.VerticesCollection.Make": {"tf": 1.4142135623730951}, "graphar.EdgeIter.source": {"tf": 1}, "graphar.EdgeIter.destination": {"tf": 1}, "graphar.EdgeIter.property": {"tf": 1}, "graphar.EdgesCollection.begin": {"tf": 1.4142135623730951}, "graphar.EdgesCollection.end": {"tf": 1.4142135623730951}, "graphar.EdgesCollection.size": {"tf": 1}, "graphar.EdgesCollection.find_src": {"tf": 1.7320508075688772}, "graphar.EdgesCollection.find_dst": {"tf": 1.7320508075688772}, "graphar.EdgesCollection.Make": {"tf": 1.7320508075688772}, "graphar.BuilderVertex.__init__": {"tf": 1.4142135623730951}, "graphar.BuilderVertex.GetId": {"tf": 1}, "graphar.BuilderVertex.SetId": {"tf": 1}, "graphar.BuilderVertex.Empty": {"tf": 1}, "graphar.BuilderVertex.AddProperty": {"tf": 1}, "graphar.BuilderVertex.GetProperty": {"tf": 1}, "graphar.BuilderVertex.GetProperties": {"tf": 1}, "graphar.BuilderVertex.ContainProperty": {"tf": 1}, "graphar.VerticesBuilder.Clear": {"tf": 1}, "graphar.VerticesBuilder.SetWriterOptions": {"tf": 1.4142135623730951}, "graphar.VerticesBuilder.GetWriterOptions": {"tf": 1.4142135623730951}, "graphar.VerticesBuilder.SetValidateLevel": {"tf": 1.4142135623730951}, "graphar.VerticesBuilder.GetValidateLevel": {"tf": 1.4142135623730951}, "graphar.VerticesBuilder.AddVertex": {"tf": 1.7320508075688772}, "graphar.VerticesBuilder.GetNum": {"tf": 1}, "graphar.VerticesBuilder.Dump": {"tf": 1}, "graphar.VerticesBuilder.Make": {"tf": 3.1622776601683795}, "graphar.BuilderEdge.__init__": {"tf": 1}, "graphar.BuilderEdge.Empty": {"tf": 1}, "graphar.BuilderEdge.GetSource": {"tf": 1}, "graphar.BuilderEdge.GetDestination": {"tf": 1}, "graphar.BuilderEdge.AddProperty": {"tf": 1}, "graphar.BuilderEdge.GetProperty": {"tf": 1}, "graphar.BuilderEdge.GetProperties": {"tf": 1}, "graphar.BuilderEdge.ContainProperty": {"tf": 1}, "graphar.EdgesBuilder.SetValidateLevel": {"tf": 1.4142135623730951}, "graphar.EdgesBuilder.SetWriterOptions": {"tf": 1.4142135623730951}, "graphar.EdgesBuilder.GetWriterOptions": {"tf": 1.4142135623730951}, "graphar.EdgesBuilder.GetValidateLevel": {"tf": 1.4142135623730951}, "graphar.EdgesBuilder.Clear": {"tf": 1}, "graphar.EdgesBuilder.AddEdge": {"tf": 1.7320508075688772}, "graphar.EdgesBuilder.GetNum": {"tf": 1}, "graphar.EdgesBuilder.Dump": {"tf": 1}, "graphar.EdgesBuilder.Make": {"tf": 3.1622776601683795}}, "df": 161}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"graphar.GraphInfo.__init__": {"tf": 1}, "graphar.GraphInfo.load": {"tf": 1.4142135623730951}, "graphar.GraphInfo.add_vertex": {"tf": 1.4142135623730951}, "graphar.GraphInfo.remove_vertex": {"tf": 1.4142135623730951}, "graphar.GraphInfo.add_edge": {"tf": 1.4142135623730951}, "graphar.GraphInfo.remove_edge": {"tf": 1.4142135623730951}, "graphar.GraphInfo.get_name": {"tf": 1}, "graphar.GraphInfo.get_labels": {"tf": 1}, "graphar.GraphInfo.get_prefix": {"tf": 1}, "graphar.GraphInfo.version": {"tf": 1}, "graphar.GraphInfo.get_extra_info": {"tf": 1}, "graphar.GraphInfo.get_vertex_info": {"tf": 1}, "graphar.GraphInfo.get_edge_info": {"tf": 1}, "graphar.GraphInfo.get_vertex_info_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_index": {"tf": 1}, "graphar.GraphInfo.vertex_info_num": {"tf": 1}, "graphar.GraphInfo.edge_info_num": {"tf": 1}, "graphar.GraphInfo.get_vertex_info_by_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_by_index": {"tf": 1}, "graphar.GraphInfo.get_vertex_infos": {"tf": 1}, "graphar.GraphInfo.get_edge_infos": {"tf": 1}, "graphar.GraphInfo.save": {"tf": 1}, "graphar.GraphInfo.dump": {"tf": 1}, "graphar.GraphInfo.is_validated": {"tf": 1}, "graphar.VerticesCollection.Make": {"tf": 1}, "graphar.EdgesCollection.Make": {"tf": 1}, "graphar.VerticesBuilder.Make": {"tf": 1}, "graphar.EdgesBuilder.Make": {"tf": 1}}, "df": 28}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"graphar.VertexInfo.add_property_group": {"tf": 1}, "graphar.VertexInfo.remove_property_group": {"tf": 1}, "graphar.VertexInfo.property_group_num": {"tf": 1}, "graphar.VertexInfo.get_property_group": {"tf": 1}, "graphar.VertexInfo.get_property_group_by_index": {"tf": 1}, "graphar.VertexInfo.has_property_group": {"tf": 1}, "graphar.EdgeInfo.add_property_group": {"tf": 1}, "graphar.EdgeInfo.remove_property_group": {"tf": 1}, "graphar.EdgeInfo.has_property_group": {"tf": 1}, "graphar.EdgeInfo.property_group_num": {"tf": 1}, "graphar.EdgeInfo.get_property_group": {"tf": 1}, "graphar.EdgeInfo.get_property_group_by_index": {"tf": 1}, "graphar.EdgeInfo.get_property_group_path_prefix": {"tf": 1}}, "df": 13, "s": {"docs": {"graphar.VertexInfo.__init__": {"tf": 1}, "graphar.VertexInfo.get_property_groups": {"tf": 1}, "graphar.EdgeInfo.__init__": {"tf": 1}, "graphar.EdgeInfo.get_property_groups": {"tf": 1}}, "df": 4}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"graphar.GraphInfo.get_name": {"tf": 1}, "graphar.GraphInfo.get_labels": {"tf": 1}, "graphar.GraphInfo.get_prefix": {"tf": 1}, "graphar.GraphInfo.get_extra_info": {"tf": 1}, "graphar.GraphInfo.get_vertex_info": {"tf": 1}, "graphar.GraphInfo.get_edge_info": {"tf": 1}, "graphar.GraphInfo.get_vertex_info_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_index": {"tf": 1}, "graphar.GraphInfo.get_vertex_info_by_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_by_index": {"tf": 1}, "graphar.GraphInfo.get_vertex_infos": {"tf": 1}, "graphar.GraphInfo.get_edge_infos": {"tf": 1}, "graphar.VertexInfo.get_type": {"tf": 1}, "graphar.VertexInfo.get_chunk_size": {"tf": 1}, "graphar.VertexInfo.get_prefix": {"tf": 1}, "graphar.VertexInfo.get_labels": {"tf": 1}, "graphar.VertexInfo.get_property_groups": {"tf": 1}, "graphar.VertexInfo.get_property_group": {"tf": 1}, "graphar.VertexInfo.get_property_group_by_index": {"tf": 1}, "graphar.VertexInfo.get_property_type": {"tf": 1}, "graphar.VertexInfo.get_property_cardinality": {"tf": 1}, "graphar.VertexInfo.get_file_path": {"tf": 1}, "graphar.VertexInfo.get_path_prefix": {"tf": 1}, "graphar.VertexInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_src_type": {"tf": 1}, "graphar.EdgeInfo.get_edge_type": {"tf": 1}, "graphar.EdgeInfo.get_dst_type": {"tf": 1}, "graphar.EdgeInfo.get_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_src_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_dst_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_prefix": {"tf": 1}, "graphar.EdgeInfo.get_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.get_property_groups": {"tf": 1}, "graphar.EdgeInfo.get_property_group": {"tf": 1}, "graphar.EdgeInfo.get_property_group_by_index": {"tf": 1}, "graphar.EdgeInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_edges_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_offset_file_path": {"tf": 1}, "graphar.EdgeInfo.get_offset_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_property_file_path": {"tf": 1}, "graphar.EdgeInfo.get_property_group_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_property_type": {"tf": 1}, "graphar.PropertyGroup.get_properties": {"tf": 1}, "graphar.PropertyGroup.get_file_type": {"tf": 1}, "graphar.PropertyGroup.get_prefix": {"tf": 1}, "graphar.AdjacentList.get_type": {"tf": 1}, "graphar.AdjacentList.get_file_type": {"tf": 1}, "graphar.AdjacentList.get_prefix": {"tf": 1}}, "df": 50, "i": {"docs": {}, "df": 0, "d": {"docs": {"graphar.BuilderVertex.GetId": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"graphar.BuilderVertex.GetProperty": {"tf": 1}, "graphar.BuilderEdge.GetProperty": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"graphar.BuilderVertex.GetProperties": {"tf": 1}, "graphar.BuilderEdge.GetProperties": {"tf": 1}}, "df": 2}}}}}}}}}}, "w": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"graphar.VerticesBuilder.GetWriterOptions": {"tf": 1}, "graphar.EdgesBuilder.GetWriterOptions": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"graphar.VerticesBuilder.GetValidateLevel": {"tf": 1}, "graphar.EdgesBuilder.GetValidateLevel": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"graphar.VerticesBuilder.GetNum": {"tf": 1}, "graphar.EdgesBuilder.GetNum": {"tf": 1}}, "df": 2}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"graphar.BuilderEdge.GetSource": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"graphar.BuilderEdge.GetDestination": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"graphar.GraphInfo.__init__": {"tf": 2}, "graphar.GraphInfo.load": {"tf": 1.4142135623730951}, "graphar.GraphInfo.add_vertex": {"tf": 1.7320508075688772}, "graphar.GraphInfo.remove_vertex": {"tf": 1.7320508075688772}, "graphar.GraphInfo.add_edge": {"tf": 1.7320508075688772}, "graphar.GraphInfo.remove_edge": {"tf": 1.7320508075688772}, "graphar.GraphInfo.get_name": {"tf": 1}, "graphar.GraphInfo.get_labels": {"tf": 1}, "graphar.GraphInfo.get_prefix": {"tf": 1}, "graphar.GraphInfo.version": {"tf": 1.4142135623730951}, "graphar.GraphInfo.get_extra_info": {"tf": 1}, "graphar.GraphInfo.get_vertex_info": {"tf": 1.4142135623730951}, "graphar.GraphInfo.get_edge_info": {"tf": 1.4142135623730951}, "graphar.GraphInfo.get_vertex_info_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_index": {"tf": 1}, "graphar.GraphInfo.vertex_info_num": {"tf": 1}, "graphar.GraphInfo.edge_info_num": {"tf": 1}, "graphar.GraphInfo.get_vertex_info_by_index": {"tf": 1.4142135623730951}, "graphar.GraphInfo.get_edge_info_by_index": {"tf": 1.4142135623730951}, "graphar.GraphInfo.get_vertex_infos": {"tf": 1.4142135623730951}, "graphar.GraphInfo.get_edge_infos": {"tf": 1.4142135623730951}, "graphar.GraphInfo.save": {"tf": 1}, "graphar.GraphInfo.dump": {"tf": 1}, "graphar.GraphInfo.is_validated": {"tf": 1}, "graphar.VertexInfo.__init__": {"tf": 1.7320508075688772}, "graphar.VertexInfo.add_property_group": {"tf": 1.7320508075688772}, "graphar.VertexInfo.remove_property_group": {"tf": 1.7320508075688772}, "graphar.VertexInfo.get_type": {"tf": 1}, "graphar.VertexInfo.get_chunk_size": {"tf": 1}, "graphar.VertexInfo.get_prefix": {"tf": 1}, "graphar.VertexInfo.version": {"tf": 1.4142135623730951}, "graphar.VertexInfo.get_labels": {"tf": 1}, "graphar.VertexInfo.property_group_num": {"tf": 1}, "graphar.VertexInfo.get_property_groups": {"tf": 1.4142135623730951}, "graphar.VertexInfo.get_property_group": {"tf": 1.4142135623730951}, "graphar.VertexInfo.get_property_group_by_index": {"tf": 1.4142135623730951}, "graphar.VertexInfo.get_property_type": {"tf": 1.4142135623730951}, "graphar.VertexInfo.get_property_cardinality": {"tf": 1.4142135623730951}, "graphar.VertexInfo.has_property": {"tf": 1}, "graphar.VertexInfo.save": {"tf": 1}, "graphar.VertexInfo.dump": {"tf": 1}, "graphar.VertexInfo.is_primary_key": {"tf": 1}, "graphar.VertexInfo.is_nullable_key": {"tf": 1}, "graphar.VertexInfo.has_property_group": {"tf": 1.4142135623730951}, "graphar.VertexInfo.get_file_path": {"tf": 1.4142135623730951}, "graphar.VertexInfo.get_path_prefix": {"tf": 1.4142135623730951}, "graphar.VertexInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.VertexInfo.is_validated": {"tf": 1}, "graphar.EdgeInfo.__init__": {"tf": 2}, "graphar.EdgeInfo.add_adjacent_list": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.remove_adjacent_list": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.add_property_group": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.remove_property_group": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.get_src_type": {"tf": 1}, "graphar.EdgeInfo.get_edge_type": {"tf": 1}, "graphar.EdgeInfo.get_dst_type": {"tf": 1}, "graphar.EdgeInfo.get_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_src_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_dst_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_prefix": {"tf": 1}, "graphar.EdgeInfo.is_directed": {"tf": 1}, "graphar.EdgeInfo.version": {"tf": 1.4142135623730951}, "graphar.EdgeInfo.has_adjacent_list_type": {"tf": 1.4142135623730951}, "graphar.EdgeInfo.has_property": {"tf": 1}, "graphar.EdgeInfo.has_property_group": {"tf": 1.4142135623730951}, "graphar.EdgeInfo.get_adjacent_list": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.property_group_num": {"tf": 1}, "graphar.EdgeInfo.get_property_groups": {"tf": 1.4142135623730951}, "graphar.EdgeInfo.get_property_group": {"tf": 1.4142135623730951}, "graphar.EdgeInfo.get_property_group_by_index": {"tf": 1.4142135623730951}, "graphar.EdgeInfo.get_vertices_num_file_path": {"tf": 1.4142135623730951}, "graphar.EdgeInfo.get_edges_num_file_path": {"tf": 1.4142135623730951}, "graphar.EdgeInfo.get_adj_list_file_path": {"tf": 1.4142135623730951}, "graphar.EdgeInfo.get_adj_list_path_prefix": {"tf": 1.4142135623730951}, "graphar.EdgeInfo.get_adj_list_offset_file_path": {"tf": 1.4142135623730951}, "graphar.EdgeInfo.get_offset_path_prefix": {"tf": 1.4142135623730951}, "graphar.EdgeInfo.get_property_file_path": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.get_property_group_path_prefix": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.get_property_type": {"tf": 1.4142135623730951}, "graphar.EdgeInfo.is_primary_key": {"tf": 1}, "graphar.EdgeInfo.is_nullable_key": {"tf": 1}, "graphar.EdgeInfo.save": {"tf": 1}, "graphar.EdgeInfo.dump": {"tf": 1}, "graphar.EdgeInfo.is_validated": {"tf": 1}, "graphar.PropertyGroup.__init__": {"tf": 1.7320508075688772}, "graphar.PropertyGroup.get_properties": {"tf": 1.4142135623730951}, "graphar.PropertyGroup.has_property": {"tf": 1}, "graphar.PropertyGroup.get_file_type": {"tf": 1.4142135623730951}, "graphar.PropertyGroup.get_prefix": {"tf": 1}, "graphar.PropertyGroup.is_validated": {"tf": 1}, "graphar.Property.__init__": {"tf": 2}, "graphar.Property.name": {"tf": 1}, "graphar.Property.type": {"tf": 1.4142135623730951}, "graphar.Property.is_primary": {"tf": 1}, "graphar.Property.is_nullable": {"tf": 1}, "graphar.Property.cardinality": {"tf": 1.4142135623730951}, "graphar.DataType.__init__": {"tf": 1.7320508075688772}, "graphar.DataType.id": {"tf": 1.4142135623730951}, "graphar.DataType.to_type_name": {"tf": 1}, "graphar.AdjacentList.__init__": {"tf": 1.7320508075688772}, "graphar.AdjacentList.get_type": {"tf": 1.4142135623730951}, "graphar.AdjacentList.get_file_type": {"tf": 1.4142135623730951}, "graphar.AdjacentList.get_prefix": {"tf": 1}, "graphar.AdjacentList.is_validated": {"tf": 1}, "graphar.Vertex.id": {"tf": 1}, "graphar.Vertex.property": {"tf": 1}, "graphar.Vertex.IsValid": {"tf": 1}, "graphar.Edge.source": {"tf": 1}, "graphar.Edge.destination": {"tf": 1}, "graphar.Edge.property": {"tf": 1}, "graphar.Edge.IsValid": {"tf": 1}, "graphar.VertexIter.id": {"tf": 1}, "graphar.VertexIter.property": {"tf": 1}, "graphar.VerticesCollection.begin": {"tf": 1.4142135623730951}, "graphar.VerticesCollection.end": {"tf": 1.4142135623730951}, "graphar.VerticesCollection.find": {"tf": 1.4142135623730951}, "graphar.VerticesCollection.size": {"tf": 1}, "graphar.VerticesCollection.Make": {"tf": 1.4142135623730951}, "graphar.EdgeIter.source": {"tf": 1}, "graphar.EdgeIter.destination": {"tf": 1}, "graphar.EdgeIter.property": {"tf": 1}, "graphar.EdgesCollection.begin": {"tf": 1.4142135623730951}, "graphar.EdgesCollection.end": {"tf": 1.4142135623730951}, "graphar.EdgesCollection.size": {"tf": 1}, "graphar.EdgesCollection.find_src": {"tf": 1.7320508075688772}, "graphar.EdgesCollection.find_dst": {"tf": 1.7320508075688772}, "graphar.EdgesCollection.Make": {"tf": 1.7320508075688772}, "graphar.BuilderVertex.__init__": {"tf": 1.4142135623730951}, "graphar.BuilderVertex.GetId": {"tf": 1}, "graphar.BuilderVertex.SetId": {"tf": 1}, "graphar.BuilderVertex.Empty": {"tf": 1}, "graphar.BuilderVertex.AddProperty": {"tf": 1}, "graphar.BuilderVertex.GetProperty": {"tf": 1}, "graphar.BuilderVertex.GetProperties": {"tf": 1}, "graphar.BuilderVertex.ContainProperty": {"tf": 1}, "graphar.VerticesBuilder.Clear": {"tf": 1}, "graphar.VerticesBuilder.SetWriterOptions": {"tf": 1.4142135623730951}, "graphar.VerticesBuilder.GetWriterOptions": {"tf": 1.4142135623730951}, "graphar.VerticesBuilder.SetValidateLevel": {"tf": 1.4142135623730951}, "graphar.VerticesBuilder.GetValidateLevel": {"tf": 1.4142135623730951}, "graphar.VerticesBuilder.AddVertex": {"tf": 1.7320508075688772}, "graphar.VerticesBuilder.GetNum": {"tf": 1}, "graphar.VerticesBuilder.Dump": {"tf": 1}, "graphar.VerticesBuilder.Make": {"tf": 3.1622776601683795}, "graphar.BuilderEdge.__init__": {"tf": 1}, "graphar.BuilderEdge.Empty": {"tf": 1}, "graphar.BuilderEdge.GetSource": {"tf": 1}, "graphar.BuilderEdge.GetDestination": {"tf": 1}, "graphar.BuilderEdge.AddProperty": {"tf": 1}, "graphar.BuilderEdge.GetProperty": {"tf": 1}, "graphar.BuilderEdge.GetProperties": {"tf": 1}, "graphar.BuilderEdge.ContainProperty": {"tf": 1}, "graphar.EdgesBuilder.SetValidateLevel": {"tf": 1.4142135623730951}, "graphar.EdgesBuilder.SetWriterOptions": {"tf": 1.4142135623730951}, "graphar.EdgesBuilder.GetWriterOptions": {"tf": 1.4142135623730951}, "graphar.EdgesBuilder.GetValidateLevel": {"tf": 1.4142135623730951}, "graphar.EdgesBuilder.Clear": {"tf": 1}, "graphar.EdgesBuilder.AddEdge": {"tf": 1.7320508075688772}, "graphar.EdgesBuilder.GetNum": {"tf": 1}, "graphar.EdgesBuilder.Dump": {"tf": 1}, "graphar.EdgesBuilder.Make": {"tf": 3.1622776601683795}}, "df": 161}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"graphar.GraphInfo.__init__": {"tf": 2}, "graphar.VertexInfo.__init__": {"tf": 1.4142135623730951}, "graphar.EdgeInfo.__init__": {"tf": 1.4142135623730951}, "graphar.PropertyGroup.__init__": {"tf": 1}}, "df": 4}}}}}}}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"graphar.BuilderVertex.ContainProperty": {"tf": 1}, "graphar.BuilderEdge.ContainProperty": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "h": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {"graphar.VertexInfo.__init__": {"tf": 1}, "graphar.VertexInfo.get_chunk_size": {"tf": 1}, "graphar.EdgeInfo.__init__": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.get_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_src_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_dst_chunk_size": {"tf": 1}}, "df": 6}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"graphar.VertexInfo.get_property_cardinality": {"tf": 1.4142135623730951}, "graphar.Property.__init__": {"tf": 1.4142135623730951}, "graphar.Property.cardinality": {"tf": 1}}, "df": 3}}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"graphar.VerticesBuilder.Clear": {"tf": 1}, "graphar.EdgesBuilder.Clear": {"tf": 1}}, "df": 2}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"graphar.GraphInfo.__init__": {"tf": 1}, "graphar.GraphInfo.get_name": {"tf": 1}, "graphar.Property.__init__": {"tf": 1}, "graphar.DataType.to_type_name": {"tf": 1}}, "df": 4}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"graphar.GraphInfo.__init__": {"tf": 1.4142135623730951}, "graphar.GraphInfo.save": {"tf": 1}, "graphar.VertexInfo.__init__": {"tf": 1.4142135623730951}, "graphar.VertexInfo.save": {"tf": 1}, "graphar.EdgeInfo.__init__": {"tf": 1.4142135623730951}, "graphar.EdgeInfo.save": {"tf": 1}, "graphar.PropertyGroup.__init__": {"tf": 1}, "graphar.Property.__init__": {"tf": 1.7320508075688772}, "graphar.DataType.__init__": {"tf": 1.4142135623730951}, "graphar.AdjacentList.__init__": {"tf": 1}, "graphar.BuilderVertex.__init__": {"tf": 1.4142135623730951}, "graphar.BuilderVertex.SetId": {"tf": 1}, "graphar.BuilderVertex.AddProperty": {"tf": 1}, "graphar.VerticesBuilder.Clear": {"tf": 1}, "graphar.VerticesBuilder.SetWriterOptions": {"tf": 1}, "graphar.VerticesBuilder.SetValidateLevel": {"tf": 1}, "graphar.VerticesBuilder.AddVertex": {"tf": 1}, "graphar.VerticesBuilder.Dump": {"tf": 1}, "graphar.VerticesBuilder.Make": {"tf": 1.4142135623730951}, "graphar.BuilderEdge.__init__": {"tf": 1}, "graphar.BuilderEdge.AddProperty": {"tf": 1}, "graphar.EdgesBuilder.SetValidateLevel": {"tf": 1}, "graphar.EdgesBuilder.SetWriterOptions": {"tf": 1}, "graphar.EdgesBuilder.Clear": {"tf": 1}, "graphar.EdgesBuilder.AddEdge": {"tf": 1}, "graphar.EdgesBuilder.Dump": {"tf": 1}, "graphar.EdgesBuilder.Make": {"tf": 1.4142135623730951}}, "df": 27}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {"graphar.GraphInfo.vertex_info_num": {"tf": 1}, "graphar.GraphInfo.edge_info_num": {"tf": 1}, "graphar.VertexInfo.property_group_num": {"tf": 1}, "graphar.VertexInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.EdgeInfo.property_group_num": {"tf": 1}, "graphar.EdgeInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_edges_num_file_path": {"tf": 1}, "graphar.EdgesBuilder.Make": {"tf": 1.4142135623730951}}, "df": 8}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"graphar.VertexInfo.is_nullable_key": {"tf": 1}, "graphar.EdgeInfo.is_nullable_key": {"tf": 1}, "graphar.Property.__init__": {"tf": 1}}, "df": 3}}}}}}}}, "v": {"docs": {"graphar.VerticesBuilder.AddVertex": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"graphar.GraphInfo.__init__": {"tf": 1}, "graphar.GraphInfo.add_vertex": {"tf": 1}, "graphar.GraphInfo.remove_vertex": {"tf": 1}, "graphar.GraphInfo.get_vertex_info": {"tf": 1}, "graphar.GraphInfo.get_vertex_info_index": {"tf": 1}, "graphar.GraphInfo.vertex_info_num": {"tf": 1}, "graphar.GraphInfo.get_vertex_info_by_index": {"tf": 1}, "graphar.GraphInfo.get_vertex_infos": {"tf": 1}, "graphar.Vertex.id": {"tf": 1}, "graphar.Vertex.property": {"tf": 1}, "graphar.Vertex.IsValid": {"tf": 1}, "graphar.VerticesBuilder.Make": {"tf": 2.23606797749979}}, "df": 12, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"graphar.GraphInfo.__init__": {"tf": 1}, "graphar.GraphInfo.add_vertex": {"tf": 1}, "graphar.GraphInfo.remove_vertex": {"tf": 1}, "graphar.GraphInfo.get_vertex_info": {"tf": 1}, "graphar.GraphInfo.get_vertex_info_by_index": {"tf": 1}, "graphar.GraphInfo.get_vertex_infos": {"tf": 1}, "graphar.VertexInfo.__init__": {"tf": 1}, "graphar.VertexInfo.add_property_group": {"tf": 1.4142135623730951}, "graphar.VertexInfo.remove_property_group": {"tf": 1.4142135623730951}, "graphar.VertexInfo.get_type": {"tf": 1}, "graphar.VertexInfo.get_chunk_size": {"tf": 1}, "graphar.VertexInfo.get_prefix": {"tf": 1}, "graphar.VertexInfo.version": {"tf": 1}, "graphar.VertexInfo.get_labels": {"tf": 1}, "graphar.VertexInfo.property_group_num": {"tf": 1}, "graphar.VertexInfo.get_property_groups": {"tf": 1}, "graphar.VertexInfo.get_property_group": {"tf": 1}, "graphar.VertexInfo.get_property_group_by_index": {"tf": 1}, "graphar.VertexInfo.get_property_type": {"tf": 1}, "graphar.VertexInfo.get_property_cardinality": {"tf": 1}, "graphar.VertexInfo.has_property": {"tf": 1}, "graphar.VertexInfo.save": {"tf": 1}, "graphar.VertexInfo.dump": {"tf": 1}, "graphar.VertexInfo.is_primary_key": {"tf": 1}, "graphar.VertexInfo.is_nullable_key": {"tf": 1}, "graphar.VertexInfo.has_property_group": {"tf": 1}, "graphar.VertexInfo.get_file_path": {"tf": 1}, "graphar.VertexInfo.get_path_prefix": {"tf": 1}, "graphar.VertexInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.VertexInfo.is_validated": {"tf": 1}, "graphar.VerticesBuilder.Make": {"tf": 1.4142135623730951}}, "df": 31}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"graphar.VertexIter.id": {"tf": 1}, "graphar.VertexIter.property": {"tf": 1}, "graphar.VerticesCollection.begin": {"tf": 1}, "graphar.VerticesCollection.end": {"tf": 1}, "graphar.VerticesCollection.find": {"tf": 1}}, "df": 5}}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"graphar.VertexInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.EdgesBuilder.Make": {"tf": 1.4142135623730951}}, "df": 3, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"graphar.VerticesCollection.begin": {"tf": 1}, "graphar.VerticesCollection.end": {"tf": 1}, "graphar.VerticesCollection.find": {"tf": 1}, "graphar.VerticesCollection.size": {"tf": 1}, "graphar.VerticesCollection.Make": {"tf": 1}}, "df": 5}}}}}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"graphar.VerticesBuilder.Clear": {"tf": 1}, "graphar.VerticesBuilder.SetWriterOptions": {"tf": 1}, "graphar.VerticesBuilder.GetWriterOptions": {"tf": 1}, "graphar.VerticesBuilder.SetValidateLevel": {"tf": 1}, "graphar.VerticesBuilder.GetValidateLevel": {"tf": 1}, "graphar.VerticesBuilder.AddVertex": {"tf": 1}, "graphar.VerticesBuilder.GetNum": {"tf": 1}, "graphar.VerticesBuilder.Dump": {"tf": 1}, "graphar.VerticesBuilder.Make": {"tf": 1.7320508075688772}}, "df": 9}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"graphar.GraphInfo.__init__": {"tf": 1}, "graphar.GraphInfo.version": {"tf": 1}, "graphar.VertexInfo.__init__": {"tf": 1}, "graphar.VertexInfo.version": {"tf": 1}, "graphar.EdgeInfo.__init__": {"tf": 1}, "graphar.EdgeInfo.version": {"tf": 1}}, "df": 6}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"graphar.VerticesBuilder.AddVertex": {"tf": 1}, "graphar.VerticesBuilder.Make": {"tf": 1.4142135623730951}, "graphar.EdgesBuilder.AddEdge": {"tf": 1}, "graphar.EdgesBuilder.Make": {"tf": 1.4142135623730951}}, "df": 4, "d": {"docs": {"graphar.GraphInfo.is_validated": {"tf": 1}, "graphar.VertexInfo.is_validated": {"tf": 1}, "graphar.EdgeInfo.is_validated": {"tf": 1}, "graphar.PropertyGroup.is_validated": {"tf": 1}, "graphar.AdjacentList.is_validated": {"tf": 1}}, "df": 5}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"graphar.VerticesBuilder.SetValidateLevel": {"tf": 1}, "graphar.VerticesBuilder.GetValidateLevel": {"tf": 1}, "graphar.VerticesBuilder.AddVertex": {"tf": 1}, "graphar.VerticesBuilder.Make": {"tf": 1.4142135623730951}, "graphar.EdgesBuilder.SetValidateLevel": {"tf": 1}, "graphar.EdgesBuilder.GetValidateLevel": {"tf": 1}, "graphar.EdgesBuilder.AddEdge": {"tf": 1}, "graphar.EdgesBuilder.Make": {"tf": 1.4142135623730951}}, "df": 8}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "c": {"docs": {"graphar.GraphInfo.__init__": {"tf": 2}, "graphar.VertexInfo.__init__": {"tf": 1.4142135623730951}, "graphar.EdgeInfo.__init__": {"tf": 1.4142135623730951}, "graphar.PropertyGroup.__init__": {"tf": 1}}, "df": 4}}, "r": {"docs": {}, "df": 0, "g": {"0": {"docs": {"graphar.GraphInfo.load": {"tf": 1.4142135623730951}, "graphar.GraphInfo.add_vertex": {"tf": 1}, "graphar.GraphInfo.remove_vertex": {"tf": 1}, "graphar.GraphInfo.add_edge": {"tf": 1}, "graphar.GraphInfo.remove_edge": {"tf": 1}, "graphar.GraphInfo.get_vertex_info": {"tf": 1}, "graphar.GraphInfo.get_edge_info": {"tf": 1}, "graphar.GraphInfo.get_vertex_info_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_index": {"tf": 1}, "graphar.GraphInfo.get_vertex_info_by_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_by_index": {"tf": 1}, "graphar.GraphInfo.save": {"tf": 1}, "graphar.VertexInfo.add_property_group": {"tf": 1}, "graphar.VertexInfo.remove_property_group": {"tf": 1}, "graphar.VertexInfo.get_property_group": {"tf": 1}, "graphar.VertexInfo.get_property_group_by_index": {"tf": 1}, "graphar.VertexInfo.get_property_type": {"tf": 1}, "graphar.VertexInfo.get_property_cardinality": {"tf": 1}, "graphar.VertexInfo.has_property": {"tf": 1}, "graphar.VertexInfo.save": {"tf": 1}, "graphar.VertexInfo.is_primary_key": {"tf": 1}, "graphar.VertexInfo.is_nullable_key": {"tf": 1}, "graphar.VertexInfo.has_property_group": {"tf": 1}, "graphar.VertexInfo.get_file_path": {"tf": 1}, "graphar.VertexInfo.get_path_prefix": {"tf": 1}, "graphar.EdgeInfo.add_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.remove_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.add_property_group": {"tf": 1}, "graphar.EdgeInfo.remove_property_group": {"tf": 1}, "graphar.EdgeInfo.has_adjacent_list_type": {"tf": 1}, "graphar.EdgeInfo.has_property": {"tf": 1}, "graphar.EdgeInfo.has_property_group": {"tf": 1}, "graphar.EdgeInfo.get_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.get_property_group": {"tf": 1}, "graphar.EdgeInfo.get_property_group_by_index": {"tf": 1}, "graphar.EdgeInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_edges_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_offset_file_path": {"tf": 1}, "graphar.EdgeInfo.get_offset_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_property_file_path": {"tf": 1}, "graphar.EdgeInfo.get_property_group_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_property_type": {"tf": 1}, "graphar.EdgeInfo.is_primary_key": {"tf": 1}, "graphar.EdgeInfo.is_nullable_key": {"tf": 1}, "graphar.EdgeInfo.save": {"tf": 1}, "graphar.PropertyGroup.has_property": {"tf": 1}, "graphar.DataType.__init__": {"tf": 1}, "graphar.Vertex.property": {"tf": 1}, "graphar.Vertex.IsValid": {"tf": 1}, "graphar.Edge.property": {"tf": 1}, "graphar.Edge.IsValid": {"tf": 1}, "graphar.VertexIter.property": {"tf": 1}, "graphar.VerticesCollection.find": {"tf": 1}, "graphar.VerticesCollection.Make": {"tf": 1}, "graphar.EdgeIter.property": {"tf": 1}, "graphar.EdgesCollection.find_src": {"tf": 1}, "graphar.EdgesCollection.find_dst": {"tf": 1}, "graphar.EdgesCollection.Make": {"tf": 1}, "graphar.BuilderVertex.__init__": {"tf": 1}, "graphar.BuilderVertex.SetId": {"tf": 1}, "graphar.BuilderVertex.AddProperty": {"tf": 1}, "graphar.BuilderVertex.GetProperty": {"tf": 1}, "graphar.BuilderVertex.ContainProperty": {"tf": 1}, "graphar.VerticesBuilder.SetWriterOptions": {"tf": 1}, "graphar.VerticesBuilder.SetValidateLevel": {"tf": 1}, "graphar.BuilderEdge.__init__": {"tf": 1}, "graphar.BuilderEdge.AddProperty": {"tf": 1}, "graphar.BuilderEdge.GetProperty": {"tf": 1}, "graphar.BuilderEdge.ContainProperty": {"tf": 1}, "graphar.EdgesBuilder.SetValidateLevel": {"tf": 1}, "graphar.EdgesBuilder.SetWriterOptions": {"tf": 1}}, "df": 73}, "1": {"docs": {"graphar.GraphInfo.load": {"tf": 1}, "graphar.GraphInfo.get_edge_info": {"tf": 1}, "graphar.GraphInfo.get_edge_info_index": {"tf": 1}, "graphar.VertexInfo.get_file_path": {"tf": 1}, "graphar.EdgeInfo.get_edges_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_offset_file_path": {"tf": 1}, "graphar.EdgeInfo.get_property_file_path": {"tf": 1}, "graphar.EdgeInfo.get_property_group_path_prefix": {"tf": 1}, "graphar.VerticesCollection.Make": {"tf": 1}, "graphar.EdgesCollection.find_src": {"tf": 1}, "graphar.EdgesCollection.find_dst": {"tf": 1}, "graphar.EdgesCollection.Make": {"tf": 1}, "graphar.BuilderVertex.AddProperty": {"tf": 1}, "graphar.BuilderEdge.__init__": {"tf": 1}, "graphar.BuilderEdge.AddProperty": {"tf": 1}}, "df": 16}, "2": {"docs": {"graphar.GraphInfo.get_edge_info": {"tf": 1}, "graphar.GraphInfo.get_edge_info_index": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_file_path": {"tf": 1}, "graphar.EdgeInfo.get_property_file_path": {"tf": 1}, "graphar.EdgesCollection.Make": {"tf": 1}}, "df": 5}, "3": {"docs": {"graphar.EdgeInfo.get_property_file_path": {"tf": 1}, "graphar.EdgesCollection.Make": {"tf": 1}}, "df": 2}, "4": {"docs": {"graphar.EdgesCollection.Make": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "s": {"docs": {"graphar.GraphInfo.load": {"tf": 1}, "graphar.Property.__init__": {"tf": 1}, "graphar.DataType.__init__": {"tf": 1}, "graphar.BuilderVertex.__init__": {"tf": 1}, "graphar.VerticesBuilder.Make": {"tf": 1}, "graphar.EdgesBuilder.Make": {"tf": 1}}, "df": 6}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {"graphar.GraphInfo.add_vertex": {"tf": 1}, "graphar.GraphInfo.add_edge": {"tf": 1}, "graphar.VertexInfo.add_property_group": {"tf": 1}, "graphar.EdgeInfo.add_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.add_property_group": {"tf": 1}}, "df": 5, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"graphar.BuilderVertex.AddProperty": {"tf": 1}, "graphar.BuilderEdge.AddProperty": {"tf": 1}}, "df": 2}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"graphar.VerticesBuilder.AddVertex": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"graphar.EdgesBuilder.AddEdge": {"tf": 1}}, "df": 1}}}}}, "j": {"docs": {"graphar.EdgeInfo.get_adj_list_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_offset_file_path": {"tf": 1}, "graphar.EdgesBuilder.Make": {"tf": 1.4142135623730951}}, "df": 4, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"graphar.EdgeInfo.__init__": {"tf": 1}, "graphar.EdgeInfo.add_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.remove_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.has_adjacent_list_type": {"tf": 1}, "graphar.EdgeInfo.get_adjacent_list": {"tf": 1}}, "df": 5, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"graphar.EdgeInfo.__init__": {"tf": 1}, "graphar.EdgeInfo.add_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.remove_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.get_adjacent_list": {"tf": 1}, "graphar.AdjacentList.__init__": {"tf": 1}, "graphar.AdjacentList.get_type": {"tf": 1}, "graphar.AdjacentList.get_file_type": {"tf": 1}, "graphar.AdjacentList.get_prefix": {"tf": 1}, "graphar.AdjacentList.is_validated": {"tf": 1}}, "df": 9}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"graphar.EdgeInfo.has_adjacent_list_type": {"tf": 1}, "graphar.EdgeInfo.get_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_edges_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_offset_file_path": {"tf": 1}, "graphar.EdgeInfo.get_offset_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_property_file_path": {"tf": 1}, "graphar.EdgeInfo.get_property_group_path_prefix": {"tf": 1}, "graphar.AdjacentList.__init__": {"tf": 1}, "graphar.AdjacentList.get_type": {"tf": 1}, "graphar.EdgesCollection.Make": {"tf": 1}, "graphar.EdgesBuilder.Make": {"tf": 1.4142135623730951}}, "df": 14}}}}}}}}}}}, "e": {"docs": {"graphar.EdgesBuilder.AddEdge": {"tf": 1}}, "df": 1, "d": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"graphar.GraphInfo.__init__": {"tf": 1}, "graphar.GraphInfo.add_edge": {"tf": 1}, "graphar.GraphInfo.remove_edge": {"tf": 1}, "graphar.GraphInfo.get_edge_info": {"tf": 1}, "graphar.GraphInfo.get_edge_info_index": {"tf": 1}, "graphar.GraphInfo.edge_info_num": {"tf": 1}, "graphar.GraphInfo.get_edge_info_by_index": {"tf": 1}, "graphar.GraphInfo.get_edge_infos": {"tf": 1}, "graphar.EdgeInfo.__init__": {"tf": 1}, "graphar.EdgeInfo.get_edge_type": {"tf": 1}, "graphar.Edge.source": {"tf": 1}, "graphar.Edge.destination": {"tf": 1}, "graphar.Edge.property": {"tf": 1}, "graphar.Edge.IsValid": {"tf": 1}, "graphar.EdgesBuilder.Make": {"tf": 1.4142135623730951}}, "df": 15, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"graphar.GraphInfo.__init__": {"tf": 1}, "graphar.GraphInfo.add_edge": {"tf": 1}, "graphar.GraphInfo.remove_edge": {"tf": 1}, "graphar.GraphInfo.get_edge_info": {"tf": 1}, "graphar.GraphInfo.get_edge_info_by_index": {"tf": 1}, "graphar.GraphInfo.get_edge_infos": {"tf": 1}, "graphar.EdgeInfo.__init__": {"tf": 1}, "graphar.EdgeInfo.add_adjacent_list": {"tf": 1.4142135623730951}, "graphar.EdgeInfo.remove_adjacent_list": {"tf": 1.4142135623730951}, "graphar.EdgeInfo.add_property_group": {"tf": 1.4142135623730951}, "graphar.EdgeInfo.remove_property_group": {"tf": 1.4142135623730951}, "graphar.EdgeInfo.get_src_type": {"tf": 1}, "graphar.EdgeInfo.get_edge_type": {"tf": 1}, "graphar.EdgeInfo.get_dst_type": {"tf": 1}, "graphar.EdgeInfo.get_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_src_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_dst_chunk_size": {"tf": 1}, "graphar.EdgeInfo.get_prefix": {"tf": 1}, "graphar.EdgeInfo.is_directed": {"tf": 1}, "graphar.EdgeInfo.version": {"tf": 1}, "graphar.EdgeInfo.has_adjacent_list_type": {"tf": 1}, "graphar.EdgeInfo.has_property": {"tf": 1}, "graphar.EdgeInfo.has_property_group": {"tf": 1}, "graphar.EdgeInfo.get_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.property_group_num": {"tf": 1}, "graphar.EdgeInfo.get_property_groups": {"tf": 1}, "graphar.EdgeInfo.get_property_group": {"tf": 1}, "graphar.EdgeInfo.get_property_group_by_index": {"tf": 1}, "graphar.EdgeInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_edges_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_offset_file_path": {"tf": 1}, "graphar.EdgeInfo.get_offset_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_property_file_path": {"tf": 1}, "graphar.EdgeInfo.get_property_group_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_property_type": {"tf": 1}, "graphar.EdgeInfo.is_primary_key": {"tf": 1}, "graphar.EdgeInfo.is_nullable_key": {"tf": 1}, "graphar.EdgeInfo.save": {"tf": 1}, "graphar.EdgeInfo.dump": {"tf": 1}, "graphar.EdgeInfo.is_validated": {"tf": 1}, "graphar.EdgesBuilder.Make": {"tf": 1}}, "df": 43}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"graphar.EdgeIter.source": {"tf": 1}, "graphar.EdgeIter.destination": {"tf": 1}, "graphar.EdgeIter.property": {"tf": 1}, "graphar.EdgesCollection.begin": {"tf": 1}, "graphar.EdgesCollection.end": {"tf": 1}, "graphar.EdgesCollection.find_src": {"tf": 1.4142135623730951}, "graphar.EdgesCollection.find_dst": {"tf": 1.4142135623730951}}, "df": 7}}}}, "s": {"docs": {"graphar.EdgeInfo.get_edges_num_file_path": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"graphar.EdgesCollection.begin": {"tf": 1}, "graphar.EdgesCollection.end": {"tf": 1}, "graphar.EdgesCollection.size": {"tf": 1}, "graphar.EdgesCollection.find_src": {"tf": 1}, "graphar.EdgesCollection.find_dst": {"tf": 1}, "graphar.EdgesCollection.Make": {"tf": 1}}, "df": 6}}}}}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"graphar.EdgesBuilder.SetValidateLevel": {"tf": 1}, "graphar.EdgesBuilder.SetWriterOptions": {"tf": 1}, "graphar.EdgesBuilder.GetWriterOptions": {"tf": 1}, "graphar.EdgesBuilder.GetValidateLevel": {"tf": 1}, "graphar.EdgesBuilder.Clear": {"tf": 1}, "graphar.EdgesBuilder.AddEdge": {"tf": 1}, "graphar.EdgesBuilder.GetNum": {"tf": 1}, "graphar.EdgesBuilder.Dump": {"tf": 1}, "graphar.EdgesBuilder.Make": {"tf": 1.4142135623730951}}, "df": 9}}}}}}}}}}}, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {"graphar.GraphInfo.__init__": {"tf": 1}, "graphar.GraphInfo.get_extra_info": {"tf": 1}}, "df": 2}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"graphar.VerticesCollection.end": {"tf": 1}, "graphar.EdgesCollection.end": {"tf": 1}}, "df": 2}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"graphar.BuilderVertex.Empty": {"tf": 1}, "graphar.BuilderEdge.Empty": {"tf": 1}}, "df": 2}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"graphar.GraphInfo.__init__": {"tf": 1}, "graphar.GraphInfo.get_labels": {"tf": 1}, "graphar.VertexInfo.__init__": {"tf": 1}, "graphar.VertexInfo.get_labels": {"tf": 1}}, "df": 4}}}}}, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"graphar.GraphInfo.load": {"tf": 1.7320508075688772}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"graphar.EdgeInfo.add_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.remove_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.has_adjacent_list_type": {"tf": 1}, "graphar.EdgeInfo.get_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_offset_file_path": {"tf": 1}, "graphar.EdgesBuilder.Make": {"tf": 1.4142135623730951}}, "df": 8, "[": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"graphar.GraphInfo.get_labels": {"tf": 1}, "graphar.VertexInfo.get_labels": {"tf": 1}}, "df": 2}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"graphar.GraphInfo.get_vertex_infos": {"tf": 1}, "graphar.GraphInfo.get_edge_infos": {"tf": 1}, "graphar.VertexInfo.get_property_groups": {"tf": 1}, "graphar.EdgeInfo.get_property_groups": {"tf": 1}, "graphar.PropertyGroup.get_properties": {"tf": 1}}, "df": 5}}}}}}}}, "s": {"docs": {"graphar.EdgeInfo.__init__": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"graphar.VerticesBuilder.AddVertex": {"tf": 1}, "graphar.VerticesBuilder.Make": {"tf": 1.4142135623730951}, "graphar.EdgesBuilder.AddEdge": {"tf": 1}, "graphar.EdgesBuilder.Make": {"tf": 1.4142135623730951}}, "df": 4}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"graphar.GraphInfo.__init__": {"tf": 1}, "graphar.GraphInfo.get_prefix": {"tf": 1}, "graphar.VertexInfo.__init__": {"tf": 1}, "graphar.VertexInfo.get_prefix": {"tf": 1}, "graphar.VertexInfo.get_path_prefix": {"tf": 1}, "graphar.EdgeInfo.__init__": {"tf": 1}, "graphar.EdgeInfo.get_prefix": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_offset_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_property_group_path_prefix": {"tf": 1}, "graphar.PropertyGroup.__init__": {"tf": 1}, "graphar.PropertyGroup.get_prefix": {"tf": 1}, "graphar.AdjacentList.__init__": {"tf": 1}, "graphar.AdjacentList.get_prefix": {"tf": 1}, "graphar.VerticesBuilder.Make": {"tf": 1.4142135623730951}, "graphar.EdgesBuilder.Make": {"tf": 1}}, "df": 16}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"graphar.VertexInfo.__init__": {"tf": 1}, "graphar.VertexInfo.add_property_group": {"tf": 1}, "graphar.VertexInfo.remove_property_group": {"tf": 1}, "graphar.VertexInfo.property_group_num": {"tf": 1}, "graphar.VertexInfo.get_property_groups": {"tf": 1}, "graphar.VertexInfo.get_property_group": {"tf": 1}, "graphar.VertexInfo.get_property_group_by_index": {"tf": 1}, "graphar.VertexInfo.get_property_type": {"tf": 1}, "graphar.VertexInfo.get_property_cardinality": {"tf": 1}, "graphar.VertexInfo.has_property": {"tf": 1}, "graphar.VertexInfo.has_property_group": {"tf": 1}, "graphar.EdgeInfo.__init__": {"tf": 1}, "graphar.EdgeInfo.add_property_group": {"tf": 1}, "graphar.EdgeInfo.remove_property_group": {"tf": 1}, "graphar.EdgeInfo.has_property": {"tf": 1}, "graphar.EdgeInfo.has_property_group": {"tf": 1}, "graphar.EdgeInfo.property_group_num": {"tf": 1}, "graphar.EdgeInfo.get_property_groups": {"tf": 1}, "graphar.EdgeInfo.get_property_group": {"tf": 1}, "graphar.EdgeInfo.get_property_group_by_index": {"tf": 1}, "graphar.EdgeInfo.get_property_file_path": {"tf": 1}, "graphar.EdgeInfo.get_property_group_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_property_type": {"tf": 1}, "graphar.PropertyGroup.__init__": {"tf": 1}, "graphar.PropertyGroup.get_properties": {"tf": 1}, "graphar.PropertyGroup.has_property": {"tf": 1}, "graphar.Property.__init__": {"tf": 1.4142135623730951}, "graphar.Property.name": {"tf": 1}, "graphar.Property.type": {"tf": 1}, "graphar.Property.is_primary": {"tf": 1}, "graphar.Property.is_nullable": {"tf": 1}, "graphar.Property.cardinality": {"tf": 1}, "graphar.Vertex.property": {"tf": 1}, "graphar.Edge.property": {"tf": 1}, "graphar.VertexIter.property": {"tf": 1}, "graphar.EdgeIter.property": {"tf": 1}}, "df": 36, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"graphar.VertexInfo.__init__": {"tf": 1}, "graphar.VertexInfo.add_property_group": {"tf": 1}, "graphar.VertexInfo.remove_property_group": {"tf": 1}, "graphar.VertexInfo.get_property_groups": {"tf": 1}, "graphar.VertexInfo.get_property_group": {"tf": 1}, "graphar.VertexInfo.get_property_group_by_index": {"tf": 1}, "graphar.VertexInfo.has_property_group": {"tf": 1}, "graphar.VertexInfo.get_file_path": {"tf": 1}, "graphar.VertexInfo.get_path_prefix": {"tf": 1}, "graphar.EdgeInfo.__init__": {"tf": 1}, "graphar.EdgeInfo.add_property_group": {"tf": 1}, "graphar.EdgeInfo.remove_property_group": {"tf": 1}, "graphar.EdgeInfo.has_property_group": {"tf": 1}, "graphar.EdgeInfo.get_property_groups": {"tf": 1}, "graphar.EdgeInfo.get_property_group": {"tf": 1}, "graphar.EdgeInfo.get_property_group_by_index": {"tf": 1}, "graphar.EdgeInfo.get_property_file_path": {"tf": 1}, "graphar.EdgeInfo.get_property_group_path_prefix": {"tf": 1}, "graphar.PropertyGroup.__init__": {"tf": 1}, "graphar.PropertyGroup.get_properties": {"tf": 1}, "graphar.PropertyGroup.has_property": {"tf": 1}, "graphar.PropertyGroup.get_file_type": {"tf": 1}, "graphar.PropertyGroup.get_prefix": {"tf": 1}, "graphar.PropertyGroup.is_validated": {"tf": 1}}, "df": 24}}}}}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"graphar.PropertyGroup.__init__": {"tf": 1}, "graphar.PropertyGroup.get_properties": {"tf": 1}}, "df": 2}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"graphar.VertexInfo.is_primary_key": {"tf": 1}, "graphar.EdgeInfo.is_primary_key": {"tf": 1}, "graphar.Property.__init__": {"tf": 1}}, "df": 3}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"graphar.VertexInfo.get_file_path": {"tf": 1}, "graphar.VertexInfo.get_path_prefix": {"tf": 1}, "graphar.VertexInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_edges_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_offset_file_path": {"tf": 1}, "graphar.EdgeInfo.get_offset_path_prefix": {"tf": 1}, "graphar.EdgeInfo.get_property_file_path": {"tf": 1}, "graphar.EdgeInfo.get_property_group_path_prefix": {"tf": 1}}, "df": 11}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"graphar.GraphInfo.__init__": {"tf": 1}}, "df": 1}}}}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {"graphar.VerticesCollection.Make": {"tf": 1}, "graphar.EdgesCollection.Make": {"tf": 1}, "graphar.VerticesBuilder.Make": {"tf": 2}, "graphar.EdgesBuilder.Make": {"tf": 1.7320508075688772}}, "df": 4}}}}, "k": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"graphar.GraphInfo.load": {"tf": 1}, "graphar.Property.__init__": {"tf": 1}, "graphar.DataType.__init__": {"tf": 1}, "graphar.BuilderVertex.__init__": {"tf": 1}, "graphar.VerticesBuilder.Make": {"tf": 1}, "graphar.EdgesBuilder.Make": {"tf": 1}}, "df": 6}}}}}, "e": {"docs": {}, "df": 0, "y": {"docs": {"graphar.VertexInfo.is_primary_key": {"tf": 1}, "graphar.VertexInfo.is_nullable_key": {"tf": 1}, "graphar.EdgeInfo.is_primary_key": {"tf": 1}, "graphar.EdgeInfo.is_nullable_key": {"tf": 1}}, "df": 4}}}, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"graphar.GraphInfo.load": {"tf": 1}, "graphar.Property.__init__": {"tf": 1}, "graphar.DataType.__init__": {"tf": 1}, "graphar.BuilderVertex.__init__": {"tf": 1}, "graphar.VerticesBuilder.Make": {"tf": 1}, "graphar.EdgesBuilder.Make": {"tf": 1}}, "df": 6}}}}}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"graphar.EdgeInfo.get_adj_list_offset_file_path": {"tf": 1}, "graphar.EdgeInfo.get_offset_path_prefix": {"tf": 1}}, "df": 2}}}}}, "b": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"graphar.Vertex.property": {"tf": 1}, "graphar.Edge.property": {"tf": 1}, "graphar.VertexIter.property": {"tf": 1}, "graphar.EdgeIter.property": {"tf": 1}, "graphar.BuilderVertex.AddProperty": {"tf": 1}, "graphar.BuilderVertex.GetProperty": {"tf": 1}, "graphar.BuilderEdge.AddProperty": {"tf": 1}, "graphar.BuilderEdge.GetProperty": {"tf": 1}}, "df": 8}}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"graphar.VerticesBuilder.Make": {"tf": 1.4142135623730951}, "graphar.EdgesBuilder.Make": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"graphar.GraphInfo.load": {"tf": 1}, "graphar.Property.__init__": {"tf": 1}, "graphar.DataType.__init__": {"tf": 1}, "graphar.BuilderVertex.__init__": {"tf": 1}, "graphar.VerticesBuilder.Make": {"tf": 1}, "graphar.EdgesBuilder.Make": {"tf": 1}}, "df": 6}}}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"graphar.VertexInfo.get_file_path": {"tf": 1}, "graphar.VertexInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_vertices_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_edges_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_offset_file_path": {"tf": 1}, "graphar.EdgeInfo.get_property_file_path": {"tf": 1}, "graphar.PropertyGroup.__init__": {"tf": 1}, "graphar.PropertyGroup.get_file_type": {"tf": 1}, "graphar.AdjacentList.__init__": {"tf": 1}, "graphar.AdjacentList.get_file_type": {"tf": 1}}, "df": 11, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"graphar.PropertyGroup.__init__": {"tf": 1}, "graphar.PropertyGroup.get_file_type": {"tf": 1}, "graphar.AdjacentList.__init__": {"tf": 1}, "graphar.AdjacentList.get_file_type": {"tf": 1}}, "df": 4}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"graphar.VerticesCollection.find": {"tf": 1}, "graphar.EdgesCollection.find_src": {"tf": 1}, "graphar.EdgesCollection.find_dst": {"tf": 1}}, "df": 3}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"graphar.Property.__init__": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"graphar.GraphInfo.remove_vertex": {"tf": 1}, "graphar.GraphInfo.remove_edge": {"tf": 1}, "graphar.VertexInfo.remove_property_group": {"tf": 1}, "graphar.EdgeInfo.remove_adjacent_list": {"tf": 1}, "graphar.EdgeInfo.remove_property_group": {"tf": 1}}, "df": 5}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"graphar.GraphInfo.get_extra_info": {"tf": 1}, "graphar.BuilderVertex.GetProperties": {"tf": 1}, "graphar.BuilderEdge.GetProperties": {"tf": 1}}, "df": 3}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"graphar.EdgeInfo.__init__": {"tf": 1}, "graphar.EdgeInfo.is_directed": {"tf": 1}}, "df": 2}}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {"graphar.GraphInfo.dump": {"tf": 1}, "graphar.VertexInfo.dump": {"tf": 1}, "graphar.EdgeInfo.dump": {"tf": 1}, "graphar.VerticesBuilder.Dump": {"tf": 1}, "graphar.EdgesBuilder.Dump": {"tf": 1}}, "df": 5}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"graphar.VertexInfo.get_property_type": {"tf": 1}, "graphar.EdgeInfo.get_property_type": {"tf": 1}, "graphar.Property.__init__": {"tf": 1}, "graphar.Property.type": {"tf": 1}, "graphar.DataType.__init__": {"tf": 1.4142135623730951}, "graphar.DataType.id": {"tf": 1}, "graphar.DataType.to_type_name": {"tf": 1}}, "df": 7}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"graphar.EdgeInfo.__init__": {"tf": 1.4142135623730951}, "graphar.EdgeInfo.get_dst_type": {"tf": 1}, "graphar.EdgeInfo.get_dst_chunk_size": {"tf": 1}, "graphar.EdgesCollection.find_dst": {"tf": 1}, "graphar.EdgesBuilder.Make": {"tf": 1}}, "df": 5}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"graphar.Edge.destination": {"tf": 1}, "graphar.EdgeIter.destination": {"tf": 1}}, "df": 2}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "y": {"docs": {"graphar.GraphInfo.get_vertex_info_by_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_by_index": {"tf": 1}, "graphar.VertexInfo.get_property_group_by_index": {"tf": 1}, "graphar.EdgeInfo.get_property_group_by_index": {"tf": 1}}, "df": 4}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"graphar.GraphInfo.is_validated": {"tf": 1}, "graphar.VertexInfo.has_property": {"tf": 1}, "graphar.VertexInfo.is_primary_key": {"tf": 1}, "graphar.VertexInfo.is_nullable_key": {"tf": 1}, "graphar.VertexInfo.has_property_group": {"tf": 1}, "graphar.VertexInfo.is_validated": {"tf": 1}, "graphar.EdgeInfo.__init__": {"tf": 1}, "graphar.EdgeInfo.is_directed": {"tf": 1}, "graphar.EdgeInfo.has_adjacent_list_type": {"tf": 1}, "graphar.EdgeInfo.has_property": {"tf": 1}, "graphar.EdgeInfo.has_property_group": {"tf": 1}, "graphar.EdgeInfo.is_primary_key": {"tf": 1}, "graphar.EdgeInfo.is_nullable_key": {"tf": 1}, "graphar.EdgeInfo.is_validated": {"tf": 1}, "graphar.PropertyGroup.has_property": {"tf": 1}, "graphar.PropertyGroup.is_validated": {"tf": 1}, "graphar.Property.__init__": {"tf": 1.4142135623730951}, "graphar.Property.is_primary": {"tf": 1}, "graphar.Property.is_nullable": {"tf": 1}, "graphar.AdjacentList.is_validated": {"tf": 1}, "graphar.Vertex.IsValid": {"tf": 1}, "graphar.Edge.IsValid": {"tf": 1}, "graphar.BuilderVertex.Empty": {"tf": 1}, "graphar.BuilderVertex.ContainProperty": {"tf": 1}, "graphar.BuilderEdge.Empty": {"tf": 1}, "graphar.BuilderEdge.ContainProperty": {"tf": 1}}, "df": 26}}}, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"graphar.VerticesCollection.begin": {"tf": 1}, "graphar.EdgesCollection.begin": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"graphar.BuilderVertex.__init__": {"tf": 1.4142135623730951}, "graphar.BuilderVertex.GetId": {"tf": 1}, "graphar.BuilderVertex.SetId": {"tf": 1}, "graphar.BuilderVertex.Empty": {"tf": 1}, "graphar.BuilderVertex.AddProperty": {"tf": 1}, "graphar.BuilderVertex.GetProperty": {"tf": 1}, "graphar.BuilderVertex.GetProperties": {"tf": 1}, "graphar.BuilderVertex.ContainProperty": {"tf": 1}, "graphar.VerticesBuilder.AddVertex": {"tf": 1}}, "df": 9}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"graphar.BuilderEdge.__init__": {"tf": 1}, "graphar.BuilderEdge.Empty": {"tf": 1}, "graphar.BuilderEdge.GetSource": {"tf": 1}, "graphar.BuilderEdge.GetDestination": {"tf": 1}, "graphar.BuilderEdge.AddProperty": {"tf": 1}, "graphar.BuilderEdge.GetProperty": {"tf": 1}, "graphar.BuilderEdge.GetProperties": {"tf": 1}, "graphar.BuilderEdge.ContainProperty": {"tf": 1}, "graphar.EdgesBuilder.AddEdge": {"tf": 1}}, "df": 9}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"graphar.GraphInfo.get_vertex_info_by_index": {"tf": 1}, "graphar.GraphInfo.get_edge_info_by_index": {"tf": 1}, "graphar.VertexInfo.__init__": {"tf": 1}, "graphar.VertexInfo.get_property_group_by_index": {"tf": 1}, "graphar.VertexInfo.get_file_path": {"tf": 1}, "graphar.EdgeInfo.__init__": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.get_property_group_by_index": {"tf": 1}, "graphar.EdgeInfo.get_edges_num_file_path": {"tf": 1}, "graphar.EdgeInfo.get_adj_list_file_path": {"tf": 1.4142135623730951}, "graphar.EdgeInfo.get_adj_list_offset_file_path": {"tf": 1}, "graphar.EdgeInfo.get_property_file_path": {"tf": 1.4142135623730951}, "graphar.VerticesCollection.find": {"tf": 1}, "graphar.EdgesCollection.find_src": {"tf": 1}, "graphar.EdgesCollection.find_dst": {"tf": 1}, "graphar.BuilderVertex.__init__": {"tf": 1}, "graphar.BuilderVertex.SetId": {"tf": 1}, "graphar.VerticesBuilder.AddVertex": {"tf": 1}, "graphar.VerticesBuilder.Make": {"tf": 1.7320508075688772}, "graphar.BuilderEdge.__init__": {"tf": 1.4142135623730951}, "graphar.EdgesBuilder.Make": {"tf": 1.4142135623730951}}, "df": 20}}}, "e": {"docs": {"graphar.VertexInfo.__init__": {"tf": 1}, "graphar.VertexInfo.get_type": {"tf": 1}, "graphar.VertexInfo.get_property_type": {"tf": 1}, "graphar.EdgeInfo.__init__": {"tf": 1.7320508075688772}, "graphar.EdgeInfo.get_src_type": {"tf": 1}, "graphar.EdgeInfo.get_edge_type": {"tf": 1}, "graphar.EdgeInfo.get_dst_type": {"tf": 1}, "graphar.EdgeInfo.has_adjacent_list_type": {"tf": 1}, "graphar.EdgeInfo.get_property_type": {"tf": 1}, "graphar.PropertyGroup.__init__": {"tf": 1}, "graphar.PropertyGroup.get_file_type": {"tf": 1}, "graphar.Property.__init__": {"tf": 1}, "graphar.DataType.__init__": {"tf": 1}, "graphar.DataType.id": {"tf": 1}, "graphar.DataType.to_type_name": {"tf": 1}, "graphar.AdjacentList.__init__": {"tf": 1.4142135623730951}, "graphar.AdjacentList.get_type": {"tf": 1}, "graphar.AdjacentList.get_file_type": {"tf": 1}, "graphar.VerticesBuilder.Make": {"tf": 1}, "graphar.EdgesBuilder.Make": {"tf": 2.23606797749979}}, "df": 20}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"graphar.Property.__init__": {"tf": 1}}, "df": 1}}}, "o": {"docs": {"graphar.DataType.to_type_name": {"tf": 1}}, "df": 1}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"graphar.VertexInfo.has_property": {"tf": 1}, "graphar.VertexInfo.has_property_group": {"tf": 1}, "graphar.EdgeInfo.has_adjacent_list_type": {"tf": 1}, "graphar.EdgeInfo.has_property": {"tf": 1}, "graphar.EdgeInfo.has_property_group": {"tf": 1}, "graphar.PropertyGroup.has_property": {"tf": 1}}, "df": 6}}}, "w": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"graphar.VerticesBuilder.Make": {"tf": 1.4142135623730951}, "graphar.EdgesBuilder.Make": {"tf": 1.4142135623730951}}, "df": 2, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"graphar.VerticesBuilder.SetWriterOptions": {"tf": 1}, "graphar.VerticesBuilder.GetWriterOptions": {"tf": 1}, "graphar.VerticesBuilder.Make": {"tf": 1.4142135623730951}, "graphar.EdgesBuilder.SetWriterOptions": {"tf": 1}, "graphar.EdgesBuilder.GetWriterOptions": {"tf": 1}, "graphar.EdgesBuilder.Make": {"tf": 1.4142135623730951}}, "df": 6}}}}}}}}}}}}}}}}, "pipeline": ["trimmer"], "_isPrebuiltIndex": true};
// mirrored in build-search-index.js (part 1)
// Also split on html tags. this is a cheap heuristic, but good enough.
elasticlunr.tokenizer.setSeperator(/[\s\-.;&_'"=,()]+|<[^>]*>/);
let searchIndex;
if (docs._isPrebuiltIndex) {
console.info("using precompiled search index");
searchIndex = elasticlunr.Index.load(docs);
} else {
console.time("building search index");
// mirrored in build-search-index.js (part 2)
searchIndex = elasticlunr(function () {
this.pipeline.remove(elasticlunr.stemmer);
this.pipeline.remove(elasticlunr.stopWordFilter);
this.addField("qualname");
this.addField("fullname");
this.addField("annotation");
this.addField("default_value");
this.addField("signature");
this.addField("bases");
this.addField("doc");
this.setRef("fullname");
});
for (let doc of docs) {
searchIndex.addDoc(doc);
}
console.timeEnd("building search index");
}
return (term) => searchIndex.search(term, {
fields: {
qualname: {boost: 4},
fullname: {boost: 2},
annotation: {boost: 2},
default_value: {boost: 2},
signature: {boost: 2},
bases: {boost: 2},
doc: {boost: 1},
},
expand: true
});
})();