⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 append_dense_tail.mal

📁 一个内存数据库的源代码这是服务器端还有客户端
💻 MAL
字号:
# create an empty [void,oid] BAT with dense taila := bat.new(:oid,:oid);bat.append(a,1@0);bat.delete(a,0@0);# create a non-empty [void,oid] BAT with non-dense tailb := bat.new(:oid,:oid);bat.append(b,0@0);bat.append(b,0@0);bat.append(b,0@0);# append the latter to the former bat.append(a,b);io.print(a);# check important propertiesf:= bat.new(:void,:str);bat.append(f,"hseqbase");bat.append(f,"hdense");bat.append(f,"tseqbase");bat.append(f,"tdense");fr:= bat.reverse(f);fm:= bat.mirror(fr);i:= bat.info(a);j:= algebra.join(fm,i);io.print(j);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -