积分充值
 首页
前端开发
AngularDartElectronFlutterHTML/CSSJavaScriptReactSvelteTypeScriptVue.js构建工具
后端开发
.NetC#C++C语言DenoffmpegGoIdrisJavaJuliaKotlinLeanMakefilenimNode.jsPascalPHPPythonRISC-VRubyRustSwiftUML其它语言区块链开发测试微服务敏捷开发架构设计汇编语言
数据库
Apache DorisApache HBaseCassandraClickHouseFirebirdGreenplumMongoDBMySQLPieCloudDBPostgreSQLRedisSQLSQLiteTiDBVitess数据库中间件数据库工具数据库设计
系统运维
AndroidDevOpshttpdJenkinsLinuxPrometheusTraefikZabbix存储网络与安全
云计算&大数据
Apache APISIXApache FlinkApache KarafApache KyuubiApache OzonedaprDockerHadoopHarborIstioKubernetesOpenShiftPandasrancherRocketMQServerlessService MeshVirtualBoxVMWare云原生CNCF机器学习边缘计算
综合其他
BlenderGIMPKiCadKritaWeblate产品与服务人工智能亿图数据可视化版本控制笔试面试
文库资料
前端
AngularAnt DesignBabelBootstrapChart.jsCSS3EchartsElectronHighchartsHTML/CSSHTML5JavaScriptJerryScriptJestReactSassTypeScriptVue前端工具小程序
后端
.NETApacheC/C++C#CMakeCrystalDartDenoDjangoDubboErlangFastifyFlaskGinGoGoFrameGuzzleIrisJavaJuliaLispLLVMLuaMatplotlibMicronautnimNode.jsPerlPHPPythonQtRPCRubyRustR语言ScalaShellVlangwasmYewZephirZig算法
移动端
AndroidAPP工具FlutterFramework7HarmonyHippyIoniciOSkotlinNativeObject-CPWAReactSwiftuni-appWeex
数据库
ApacheArangoDBCassandraClickHouseCouchDBCrateDBDB2DocumentDBDorisDragonflyDBEdgeDBetcdFirebirdGaussDBGraphGreenPlumHStreamDBHugeGraphimmudbIndexedDBInfluxDBIoTDBKey-ValueKitDBLevelDBM3DBMatrixOneMilvusMongoDBMySQLNavicatNebulaNewSQLNoSQLOceanBaseOpenTSDBOracleOrientDBPostgreSQLPrestoDBQuestDBRedisRocksDBSequoiaDBServerSkytableSQLSQLiteTiDBTiKVTimescaleDBYugabyteDB关系型数据库数据库数据库ORM数据库中间件数据库工具时序数据库
云计算&大数据
ActiveMQAerakiAgentAlluxioAntreaApacheApache APISIXAPISIXBFEBitBookKeeperChaosChoerodonCiliumCloudStackConsulDaprDataEaseDC/OSDockerDrillDruidElasticJobElasticSearchEnvoyErdaFlinkFluentGrafanaHadoopHarborHelmHudiInLongKafkaKnativeKongKubeCubeKubeEdgeKubeflowKubeOperatorKubernetesKubeSphereKubeVelaKumaKylinLibcloudLinkerdLonghornMeiliSearchMeshNacosNATSOKDOpenOpenEBSOpenKruiseOpenPitrixOpenSearchOpenStackOpenTracingOzonePaddlePaddlePolicyPulsarPyTorchRainbondRancherRediSearchScikit-learnServerlessShardingSphereShenYuSparkStormSupersetXuperChainZadig云原生CNCF人工智能区块链数据挖掘机器学习深度学习算法工程边缘计算
UI&美工&设计
BlenderKritaSketchUI设计
网络&系统&运维
AnsibleApacheAWKCeleryCephCI/CDCurveDevOpsGoCDHAProxyIstioJenkinsJumpServerLinuxMacNginxOpenRestyPrometheusServertraefikTrafficUnixWindowsZabbixZipkin安全防护系统内核网络运维监控
综合其它
文章资讯
 上传文档  发布文章  登录账户
IT文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部后端开发(29)nim(29)

语言

全部英语(28)中文(简体)(1)

格式

全部PDF文档 PDF(27)其他文档 其他(2)
 
本次搜索耗时 0.170 秒,为您找到相关结果约 29 个.
  • 全部
  • 后端开发
  • nim
  • 全部
  • 英语
  • 中文(简体)
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Nim 2.0.2 中文手册

    base 编译指示修饰。 base 编译指示对于开发者来说也是⼀种提醒: 这个基⽅法 m 是推断⽅法 m 所能产⽣的所有效果的⼀个基础。 注意: ⽬前还不⽀持⽅法的编译期执⾏。 注意: 从 Nim 0.20 开始,泛型⽅法已被弃⽤。 多重⽅法 (Multi-methods) Note 从 Nim 0.20 开始,要启⽤多重⽅法,开发者必须在编译时显式添加 --multimethods:on 循环的执⾏⾄关重要。当程序执⾏到 yield 语句时,数据会绑定 到 for 循环变量,同时控制权也移交到循环体并继 续执⾏。迭代器的局部变量和执⾏状态在多次调⽤期间会⾃动保存。 例如: 编译器会⽣成如下代码,就像是开发者写的⼀样: 如果迭代器的 yield 语句产⽣的是元组,那么可以有多个循环变量,个数等于元组的元素数。 第 i 次循环变量的类型就是元组第 i 个元素的类型。换句话说,循环上下⽂⽀持隐式元组拆包。 i in toItr(recCountDown(6)): # 输出: 6 5 4 3 2 1 echo i 转换器 转换器和普通过程相似,但它增强了"隐式转换"类型的关系,参阅转换关系: 开发者可以显式调⽤转换器以提⾼代码的可读性。 请注意编译不⽀持隐式转换器的链式调⽤: 假设存在 A 类型到 B 类型和 B 类型到 C 类型的转换器,Nim 不提供从 A 转换为 C 类型的隐式转换。
    0 码力 | 127 页 | 7.05 MB | 1 年前
    3
  • mobi文档 Computer Programming with the Nim Programming Language

    the same size, the number of pads to create, and the pad number and name. That is pad x1 y1 x2 y2 r dx dy n num name The first five arguments are mandatory, while the rest are optional, with default values result += 1 var st: string var x1, y1, x2, y2, dx, dy: float var px2, py2: int # bool var n: int var number, name: string (st, x1, y1, px2, x2, py2, y2, dx, dy, n, number, name) = ("pad", NaN, NaN, 0, NaN $[sep]$f$[sep]$i$[s ep]$w$[sep]$w", st, x1, y1, px2, x2, py2, y2, dx, dy, n, number, name) jecho(res, st, x1, y1, px2, x2, py2, y2, dx, dy, n, number, name) # using the plus matcher, so the '+' is optional
    0 码力 | 865 页 | 7.45 MB | 1 年前
    3
  • epub文档 Computer Programming with the Nim Programming Language

    the same size, the number of pads to create, and the pad number and name. That is pad x1 y1 x2 y2 r dx dy n num name The first five arguments are mandatory, while the rest are optional, with default values result += 1 var st: string var x1, y1, x2, y2, dx, dy: float var px2, py2: int # bool var n: int var number, name: string (st, x1, y1, px2, x2, py2, y2, dx, dy, n, number, name) = ("pad", NaN, NaN, 0, NaN $[sep]$f$[sep]$i$[s ep]$w$[sep]$w", st, x1, y1, px2, x2, py2, y2, dx, dy, n, number, name) jecho(res, st, x1, y1, px2, x2, py2, y2, dx, dy, n, number, name) # using the plus matcher, so the '+' is optional
    0 码力 | 784 页 | 2.13 MB | 1 年前
    3
  • pdf文档 Computer Programming with the Nim Programming Language

    the same size, the number of pads to create, and the pad number and name. That is pad x1 y1 x2 y2 r dx dy n num name The first five arguments are mandatory, while the rest are optional, with default values result += 1 var st: string var x1, y1, x2, y2, dx, dy: float var px2, py2: int # bool var n: int var number, name: string (st, x1, y1, px2, x2, py2, y2, dx, dy, n, number, name) = ("pad", NaN, NaN, 0, NaN $[sep]$f$[sep]$f$[sep]$i$[sep]$w$[sep]$w", st, x1, y1, px2, x2, py2, y2, dx, dy, n, number, name) jecho(res, st, x1, y1, px2, x2, py2, y2, dx, dy, n, number, name) # using the plus matcher, so the '+' is optional
    0 码力 | 512 页 | 3.54 MB | 1 年前
    3
  • pdf文档 Computer Programming with the Nim Programming Language

    the same size, the number of pads to create, and the pad number and name. That is pad x1 y1 x2 y2 r dx dy n num name The first five arguments are mandatory, while the rest are optional, with default values result += 1 var st: string var x1, y1, x2, y2, dx, dy: float var px2, py2: int # bool var n: int var number, name: string (st, x1, y1, px2, x2, py2, y2, dx, dy, n, number, name) = ("pad", NaN, NaN, 0, NaN $[sep]$f$[sep]$f$[sep]$i$[sep]$w$[sep]$w", st, x1, y1, px2, x2, py2, y2, dx, dy, n, number, name) 248 jecho(res, st, x1, y1, px2, x2, py2, y2, dx, dy, n, number, name) # using the plus matcher, so the '+' is
    0 码力 | 508 页 | 3.50 MB | 1 年前
    3
  • pdf文档 Computer Programming with the Nim Programming Language

    the same size, the number of pads to create, and the pad number and name. That is pad x1 y1 x2 y2 r dx dy n num name The first five arguments are mandatory, while the rest are optional, with default values result += 1 var st: string var x1, y1, x2, y2, dx, dy: float var px2, py2: int # bool var n: int var number, name: string (st, x1, y1, px2, x2, py2, y2, dx, dy, n, number, name) = ("pad", NaN, NaN, 0, NaN $[sep]$f$[sep]$f$[sep]$i$[sep]$w$[sep]$w", st, x1, y1, px2, x2, py2, y2, dx, dy, n, number, name) jecho(res, st, x1, y1, px2, x2, py2, y2, dx, dy, n, number, name) # using the plus matcher, so the '+' is optional
    0 码力 | 512 页 | 3.53 MB | 1 年前
    3
  • pdf文档 Computer Programming with the Nim Programming Language

    the same size, the number of pads to create, and the pad number and name. That is pad x1 y1 x2 y2 r dx dy n num name The first five arguments are mandatory, while the rest are optional, with default values result += 1 var st: string var x1, y1, x2, y2, dx, dy: float var px2, py2: int # bool var n: int var number, name: string (st, x1, y1, px2, x2, py2, y2, dx, dy, n, number, name) = ("pad", NaN, NaN, 0, NaN $[sep]$f$[sep]$f$[sep]$i$[sep]$w$[sep]$w", st, x1, y1, px2, x2, py2, y2, dx, dy, n, number, name) 248 jecho(res, st, x1, y1, px2, x2, py2, y2, dx, dy, n, number, name) # using the plus matcher, so the '+' is
    0 码力 | 508 页 | 3.54 MB | 1 年前
    3
  • pdf文档 Computer Programming with the Nim Programming Language

    the same size, the number of pads to create, and the pad number and name. That is pad x1 y1 x2 y2 r dx dy n num name The first five arguments are mandatory, while the rest are optional, with default values result += 1 var st: string var x1, y1, x2, y2, dx, dy: float var px2, py2: int # bool var n: int var number, name: string (st, x1, y1, px2, x2, py2, y2, dx, dy, n, number, name) = ("pad", NaN, NaN, 0, NaN $[sep]$f$[sep]$f$[sep]$i$[sep]$w$[sep]$w", st, x1, y1, px2, x2, py2, y2, dx, dy, n, number, name) 248 jecho(res, st, x1, y1, px2, x2, py2, y2, dx, dy, n, number, name) # using the plus matcher, so the '+' is
    0 码力 | 508 页 | 3.50 MB | 1 年前
    3
  • pdf文档 Computer Programming with the Nim Programming Language

    the same size, the number of pads to create, and the pad number and name. That is pad x1 y1 x2 y2 r dx dy n num name The first five arguments are mandatory, while the rest are optional, with default values result += 1 var st: string var x1, y1, x2, y2, dx, dy: float var px2, py2: int # bool var n: int var number, name: string (st, x1, y1, px2, x2, py2, y2, dx, dy, n, number, name) = ("pad", NaN, NaN, 0, NaN $[sep]$f$[sep]$f$[sep]$i$[sep]$w$[sep]$w", st, x1, y1, px2, x2, py2, y2, dx, dy, n, number, name) 248 jecho(res, st, x1, y1, px2, x2, py2, y2, dx, dy, n, number, name) # using the plus matcher, so the '+' is
    0 码力 | 508 页 | 3.52 MB | 1 年前
    3
  • pdf文档 Computer Programming with the Nim Programming Language

    the same size, the number of pads to create, and the pad number and name. That is pad x1 y1 x2 y2 r dx dy n num name The first five arguments are mandatory, while the rest are optional, with default values result += 1 var st: string var x1, y1, x2, y2, dx, dy: float var px2, py2: int # bool var n: int var number, name: string (st, x1, y1, px2, x2, py2, y2, dx, dy, n, number, name) = ("pad", NaN, NaN, 0, NaN $[sep]$f$[sep]$f$[sep]$i$[sep]$w$[sep]$w", st, x1, y1, px2, x2, py2, y2, dx, dy, n, number, name) 248 jecho(res, st, x1, y1, px2, x2, py2, y2, dx, dy, n, number, name) # using the plus matcher, so the '+' is
    0 码力 | 508 页 | 3.53 MB | 1 年前
    3
共 29 条
  • 1
  • 2
  • 3
前往
页
相关搜索词
Nim2.0中文手册ComputerProgrammingwiththeLanguage
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩