@ -1746,12 +1746,12 @@ db = connector.connect(host=<str>, user=<str>, password=<str>,
<real> = <mview>[<index>] <spanclass="hljs-comment"># Returns an int or a float.</span>
<real> = <mview>[<index>] <spanclass="hljs-comment"># Returns an int or a float.</span>
<mview> = <mview>[<slice>] <spanclass="hljs-comment"># Mview with rearranged elements.</span>
<mview> = <mview>[<slice>] <spanclass="hljs-comment"># Mview with rearranged elements.</span>
<mview> = <mview>.cast(<spanclass="hljs-string">'<typecode>'</span>) <spanclass="hljs-comment"># Casts memoryview to the new format.</span>
<mview> = <mview>.cast(<spanclass="hljs-string">'<typecode>'</span>) <spanclass="hljs-comment"># Casts memoryview to the new format.</span>
<bin_file>.write(<mview>) <spanclass="hljs-comment"># Appends mview to the binary file.</span>
<mview>.release() <spanclass="hljs-comment"># Releases the object's memory buffer.</span>
<mview>.release() <spanclass="hljs-comment"># Releases the object's memory buffer.</span>
</code></pre></div>
</code></pre></div>
<div><h3id="decode-2">Decode</h3><pre><codeclass="python language-python hljs"><bytes> = bytes(<mview>) <spanclass="hljs-comment"># Creates a new bytes object.</span>
<div><h3id="decode-2">Decode</h3><pre><codeclass="python language-python hljs"><bin_file>.write(<mview>) <spanclass="hljs-comment"># Appends mview to the binary file.</span>
<bytes> = bytes(<mview>) <spanclass="hljs-comment"># Creates a new bytes object.</span>
<bytes> = <bytes>.join(<coll_of_mviews>) <spanclass="hljs-comment"># Joins mviews using bytes object as sep.</span>
<bytes> = <bytes>.join(<coll_of_mviews>) <spanclass="hljs-comment"># Joins mviews using bytes object as sep.</span>
<list> = list(<mview>) <spanclass="hljs-comment"># Returns list of ints or floats.</span>
<list> = list(<mview>) <spanclass="hljs-comment"># Returns list of ints or floats.</span>