积分充值
 首页
前端开发
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文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部后端开发(21)Idris(21)

语言

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

格式

全部PDF文档 PDF(21)
 
本次搜索耗时 0.127 秒,为您找到相关结果约 21 个.
  • 全部
  • 后端开发
  • Idris
  • 全部
  • 英语
  • 中文(简体)
  • 全部
  • PDF文档 PDF
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 The Idris Tutorial Version 0.11

    syntax to Haskell. Natural numbers and lists, for example, can be declared as follows: data Nat = Z | S Nat -- Natural numbers -- (zero and successor) data List a = Nil | (::) a (List a) -- Polymorphic the standard library: -- Unary addition plus : Nat -> Nat -> Nat plus Z y = y plus (S k) y = S (plus k y) -- Unary multiplication mult : Nat -> Nat -> Nat mult Z y = Z mult (S k) y = plus y (mult k y) y) The standard arithmetic operators + and * are also overloaded for use by Nat, and are implemented using the above functions. Unlike Haskell, there is no restriction on whether types and function names
    0 码力 | 71 页 | 314.20 KB | 1 年前
    3
  • pdf文档 The Idris Tutorial Version 0.9.20.1

    syntax to Haskell. Natural numbers and lists, for example, can be declared as follows: data Nat = Z | S Nat -- Natural numbers -- (zero and successor) data List a = Nil | (::) a (List a) -- Polymorphic the standard library: -- Unary addition plus : Nat -> Nat -> Nat plus Z y = y plus (S k) y = S (plus k y) -- Unary multiplication mult : Nat -> Nat -> Nat mult Z y = Z mult (S k) y = plus y (mult k y) y) The standard arithmetic operators + and * are also overloaded for use by Nat, and are implemented using the above functions. Unlike Haskell, there is no restriction on whether types and function names
    0 码力 | 71 页 | 316.18 KB | 1 年前
    3
  • pdf文档 The Idris Tutorial Version 0.9.18

    syntax to Haskell. Natural numbers and lists, for example, can be declared as follows: data Nat = Z | S Nat -- Natural numbers -- (zero and successor) data List a = Nil | (::) a (List a) -- Polymorphic the standard library: -- Unary addition plus : Nat -> Nat -> Nat plus Z y = y plus (S k) y = S (plus k y) -- Unary multiplication mult : Nat -> Nat -> Nat mult Z y = Z mult (S k) y = plus y (mult k y) y) The standard arithmetic operators + and * are also overloaded for use by Nat, and are implemented using the above functions. Unlike Haskell, there is no restriction on whether types and function names
    0 码力 | 69 页 | 316.20 KB | 1 年前
    3
  • pdf文档 The Idris Tutorial Version 0.99

    e l l . Nat u r al n u m b e r s an d l i s t s , f or e x am p l e , c an b e d e c l ar e d as f ol l ow s : 5 C H A P T E R 1. T H E I D R I S T U T O R I A L v0. 99 data Nat = Z | S Nat -- Natural ar d l i b r ar y : -- Unary addition plus : Nat -> Nat -> Nat plus Z y = y plus (S k) y = S (plus k y) -- Unary multiplication mult : Nat -> Nat -> Nat mult Z y = Z mult (S k) y = plus y (mult k y) t an d ar d ar i t h m e t i c op e r at or s + an d * ar e al s o ov e r l oad e d f or u s e b y Nat, an d ar e i m p l e m e n t e d u s i n g t h e ab ov e f u n c t i on s . Un l i k e Has k e l l
    0 码力 | 182 页 | 1.04 MB | 1 年前
    3
  • pdf文档 Idris 语言文档 Version 1.3.1

    : String 1. 3. 2 数 数 数据 据 据类 类 类型 型 型 数据类型的声明方式和语法与 奈奡女 奫 奥 奬 奬 非常相似。例如,自然数和列表的声明如下: data Nat = Z | S Nat -- 自然数(零与后继) data List a = Nil | (::) a (List a) -- 多态列表 以上声明来自于标准库。一进制自然数要么为零(Z), 要么就是另一个自然数的后继(S 数定义如下,同样来自标准库: -- 一进制加法 plus : Nat -> Nat -> Nat plus Z y = y plus (S k) y = S (plus k y) -- 一进制乘法 mult : Nat -> Nat -> Nat mult Z y = Z mult (S k) y = plus y (mult k y) 标准算术运算符 + 和 * 同样根据 Nat 的需要进行了重载, 它们使用上面的函数来定义。和 ::) 以及类型构造器(Nat 和 List)均属同一命名空间。不过按照约定, 数据类型和 构造器的名字通常以大写字母开头。我们可以在 奉 奤 奲 奩 女 提示符中测试这些函数: Idris> plus (S (S Z)) (S (S Z)) 4 : Nat Idris> mult (S (S (S Z))) (plus (S (S Z)) (S (S Z))) 12 : Nat 注 注 注解 解
    0 码力 | 224 页 | 2.06 MB | 1 年前
    3
  • pdf文档 The Idris Tutorial Version 1.3.1

    m i l ar s y n t ax t o Has k e l l . Nat u r al n u m b e r s an d l i s t s , f or e x am p l e , c an b e d e c l ar e d as f ol l ow s : data Nat = Z | S Nat -- Natural numbers -- (zero and successor) ar d l i b r ar y : -- Unary addition plus : Nat -> Nat -> Nat plus Z y = y plus (S k) y = S (plus k y) -- Unary multiplication mult : Nat -> Nat -> Nat mult Z y = Z mult (S k) y = plus y (mult k y) t an d ar d ar i t h m e t i c op e r at or s + an d * ar e al s o ov e r l oad e d f or u s e b y Nat, an d ar e i m p l e m e n t e d u s i n g t h e ab ov e f u n c t i on s . Un l i k e Has k e l l
    0 码力 | 230 页 | 1.24 MB | 1 年前
    3
  • pdf文档 The Idris Tutorial Version 1.3.0

    m i l ar s y n t ax t o Has k e l l . Nat u r al n u m b e r s an d l i s t s , f or e x am p l e , c an b e d e c l ar e d as f ol l ow s : data Nat = Z | S Nat -- Natural numbers -- (zero and successor) ar d l i b r ar y : -- Unary addition plus : Nat -> Nat -> Nat plus Z y = y plus (S k) y = S (plus k y) -- Unary multiplication mult : Nat -> Nat -> Nat mult Z y = Z mult (S k) y = plus y (mult k y) t an d ar d ar i t h m e t i c op e r at or s + an d * ar e al s o ov e r l oad e d f or u s e b y Nat, an d ar e i m p l e m e n t e d u s i n g t h e ab ov e f u n c t i on s . Un l i k e Has k e l l
    0 码力 | 229 页 | 1.24 MB | 1 年前
    3
  • pdf文档 The Idris Tutorial Version 2.3.0

    m i l ar s y n t ax t o Has k e l l . Nat u r al n u m b e r s an d l i s t s , f or e x am p l e , c an b e d e c l ar e d as f ol l ow s : data Nat = Z | S Nat -- Natural numbers -- (zero and successor) ar d l i b r ar y : -- Unary addition plus : Nat -> Nat -> Nat plus Z y = y plus (S k) y = S (plus k y) -- Unary multiplication mult : Nat -> Nat -> Nat mult Z y = Z mult (S k) y = plus y (mult k y) t an d ar d ar i t h m e t i c op e r at or s + an d * ar e al s o ov e r l oad e d f or u s e b y Nat, an d ar e i m p l e m e n t e d u s i n g t h e ab ov e f u n c t i on s . Un l i k e Has k e l l
    0 码力 | 228 页 | 1.23 MB | 1 年前
    3
  • pdf文档 The Idris Tutorial Version 1.0.1

    m i l ar s y n t ax t o Has k e l l . Nat u r al n u m b e r s an d l i s t s , f or e x am p l e , c an b e d e c l ar e d as f ol l ow s : data Nat = Z | S Nat -- Natural numbers -- (zero and successor) ar d l i b r ar y : -- Unary addition plus : Nat -> Nat -> Nat plus Z y = y plus (S k) y = S (plus k y) -- Unary multiplication mult : Nat -> Nat -> Nat mult Z y = Z mult (S k) y = plus y (mult k y) t an d ar d ar i t h m e t i c op e r at or s + an d * ar e al s o ov e r l oad e d f or u s e b y Nat, an d ar e i m p l e m e n t e d u s i n g t h e ab ov e f u n c t i on s . Un l i k e Has k e l l
    0 码力 | 223 页 | 1.21 MB | 1 年前
    3
  • pdf文档 The Idris Tutorial Version 1.1.0

    m i l ar s y n t ax t o Has k e l l . Nat u r al n u m b e r s an d l i s t s , f or e x am p l e , c an b e d e c l ar e d as f ol l ow s : data Nat = Z | S Nat -- Natural numbers -- (zero and successor) ar d l i b r ar y : -- Unary addition plus : Nat -> Nat -> Nat plus Z y = y plus (S k) y = S (plus k y) -- Unary multiplication mult : Nat -> Nat -> Nat mult Z y = Z mult (S k) y = plus y (mult k y) t an d ar d ar i t h m e t i c op e r at or s + an d * ar e al s o ov e r l oad e d f or u s e b y Nat, an d ar e i m p l e m e n t e d u s i n g t h e ab ov e f u n c t i on s . Un l i k e Has k e l l
    0 码力 | 223 页 | 1.21 MB | 1 年前
    3
共 21 条
  • 1
  • 2
  • 3
前往
页
相关搜索词
TheIdrisTutorialVersion0.110.920.1180.99函数式编程语言HaskellOCaml1.32.31.01.1
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩