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

无数据

分类

全部后端开发(199)Julia(87)Python(31)nim(28)综合其他(23)Blender(23)Java(20)Spring(20)PyWebIO(19)Rust(10)

语言

全部英语(198)中文(繁体)(20)中文(简体)(8)日语(1)葡萄牙语(1)

格式

全部PDF文档 PDF(229)
 
本次搜索耗时 0.079 秒,为您找到相关结果约 229 个.
  • 全部
  • 后端开发
  • Julia
  • Python
  • nim
  • 综合其他
  • Blender
  • Java
  • Spring
  • PyWebIO
  • Rust
  • 全部
  • 英语
  • 中文(繁体)
  • 中文(简体)
  • 日语
  • 葡萄牙语
  • 全部
  • PDF文档 PDF
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 The Rust Programming Language,2nd Edition

    . . . . 324 7 III Thinking in Rust 329 1 Functional Language features in Rust: Iterators and Closures 331 1.1 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 332 1.2 . . . . . . . lifetimes where appropriate (Chapter 10) • Writing tests (Chapter 11) We’ll also briefly introduce closures, iterators, and trait objects, which Chapters 13 and 17 will cover in detail. Let’s create a new is an anonymous function we define and pass as an argument to unwrap_or_else. We’ll be covering closures in more detail in Chapter 13. What you need to know for now is that unwrap_or_ else will pass the
    0 码力 | 617 页 | 1.54 MB | 1 年前
    3
  • pdf文档 The Swift Programming Language (Swift 5.7) - Apps Dissected

    range that includes both values. PDF conversion courtesy of www.appsdissected.com Functions and Closures Use func to declare a function. Call a function by following its name with a list of arguments hasAnyMatches(list: numbers, condition: lessThanTen) Functions are actually a special case of closures: blocks of code that can be called later. The code in a closure has access to things like variables writing closures more concisely. When a closure’s type is already known, such as the callback for a delegate, you can omit the type of its parameters, its return type, or both. Single statement closures implicitly
    0 码力 | 1040 页 | 10.90 MB | 1 年前
    3
  • pdf文档 The Swift Programming Language

    omits its upper value, and use ... to make a range that includes both values. ​ Functions and Closures Use func to declare a function. Call a function by following its name with a list of arguments [20, 19, 7, 12] 13 hasAnyMatches(numbers, lessThanTen) Functions are actually a special case of closures. You can write a closure without a name by surrounding code with braces ({}). Use in to separate T Rewrite the closure to return zero for all odd numbers. You have several options for writing closures more concisely. When a closure’s type is already known, such as the callback for a delegate, you
    0 码力 | 525 页 | 4.68 MB | 1 年前
    3
  • pdf文档 The Expressiveness of Go

    mechanism Orthogonality again! Monday, October 18, 2010 Concurrency and closures 33 Goroutines, channels, stacks and closures Monday, October 18, 2010 The model 34 Go has native support for concurrent (axiomatic) - garbage collection (near axiomatic) To make it good, you need: - stack management - closures Monday, October 18, 2010 Stacks 38 Goroutines have "segmented stacks": go f() starts f() immediately } A common pattern, given channels as first-class values. Monday, October 18, 2010 Closures 40 Closures are just local functions func Compose(f, g func(x float) float) func(x
    0 码力 | 49 页 | 839.26 KB | 1 年前
    3
  • pdf文档 Leveraging a Functional Approach for More Testable and Maintainable ROS 2 Code

    std::vector const x = {1, 1, 1}; std::vector y; filter_timeseries(x, y); }Closures and Partial Applications int main() { // Create a multiplication function const auto multiply manipulate these captured variables throughout its lifetime ○ Essentially the lambda capture!Closures and Partial Applications int main() { // Create a multiplication function const auto multiply with a lesser number of argumentsClosures and Partial Applications ● Here is more code that shows closures and partial applications Path plan(Position const& start, Position const& goal, Map const& map)
    0 码力 | 200 页 | 1.77 MB | 6 月前
    3
  • pdf文档 The Way To Go - 2012

    .......................143 6.8 Closures (function literals) ....................................................................................147 6.9 Applying closures: a function returning another function function .....................................150 6.10 Debugging with closures .....................................................................................153 6.11 Timing a function ....... custom package .............................................357 13.5 An error-handling scheme with closures ..............................................................360 13.6 Starting an external command
    0 码力 | 629 页 | 4.85 MB | 1 年前
    3
  • pdf文档 Laravel 5.0 Documentation

    Pagination Links iv. Converting To JSON xviii. Queues i. Configuration ii. Basic Usage iii. Queueing Closures iv. Running The Queue Listener v. Daemon Queue Worker vi. Push Queues vii. Failed Jobs xix classes Laravel resolves via the service container. You may also type-hint dependencies on route Closures, filters, queue jobs, event listeners, and more. For examples of using the service container in the service container, including controllers, event listeners, filters, queue jobs, and even route Closures. So, to get an implementation of a contract, you can just "type-hint" the interface in the constructor
    0 码力 | 242 页 | 1.44 MB | 1 年前
    3
  • pdf文档 The Python Handbook

    arguments from the command line 30. Lambda Functions 31. Recursion 32. Nested Functions 33. Closures 34. Decorators 35. Docstrings 36. Introspection 37. Annotations 38. Exceptions 39. The with functionality that's local to a function, and not useful elsewhere. Also, because we can make use of closures (more on this later). Here is an example: def talk(phrase): def say(word): print(word) print(count) increment() count() This is useful especially with closures, as we'll see later. 33. Closures 75 If you return a nested function from a function, that nested function has
    0 码力 | 93 页 | 7.31 MB | 1 年前
    3
  • pdf文档 Nim - the first high performance language with full support for hot codereloading at runtime

    concepts discriminated unions strong typedefs (distinct type) - can has $ currency? coroutines & closures switch & pattern matching dynamic dispatch & multi-methods converters - explicit (for implicit conversions) newData(); // << call //... 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 28 Nim closures to C/C++ (resumable funcs) Nim closures to C/C++ (resumable funcs) iterator closure_iter*(): int {.closure.} = # a
    0 码力 | 63 页 | 2.91 MB | 1 年前
    3
  • pdf文档 Google's AngularJS Style Guide

    the AngularJS external webpage, and many external apps, are written in a style that freely uses closures, favors functional inheri- tance, and does not often use JavaScript types. Google follows a more not discussed further in this style guide. (But if you want further reading: Mar- tin Fowler on closures, much longer description, appendix A of the closure book has a good description of inheritance patterns
    0 码力 | 8 页 | 44.39 KB | 1 年前
    3
共 229 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 23
前往
页
相关搜索词
TheRustProgrammingLanguage2ndEditionSwift5.7AppsDissectedExpressivenessofGoLeveragingFunctionalApproachforMoreTestableandMaintainableROSCodeWayTo2012Laravel5.0DocumentationPythonHandbookNimthefirsthighperformancelanguagewithfullsupporthotcodereloadingatruntimeGoogleAngularJSStyleGuide
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩