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

无数据

分类

全部后端开发(93)C++(93)Conan(73)

语言

全部英语(92)英语(1)

格式

全部PDF文档 PDF(92)PPT文档 PPT(1)
 
本次搜索耗时 0.019 秒,为您找到相关结果约 93 个.
  • 全部
  • 后端开发
  • C++
  • Conan
  • 全部
  • 英语
  • 英语
  • 全部
  • PDF文档 PDF
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Secrets of C++ Scripting Bindings

    emptycrate.com/idocpp 1Copyright Jason Turner @le�icus emptycrate.com/idocpp Secrets of Scripting Bindings for C++ 2 . 1Copyright Jason Turner @le�icus emptycrate.com/idocpp Jason Turner C++ Weekly b1b7f77836 25 . 8Copyright Jason Turner @le�icus emptycrate.com/idocpp Secrets of Scripting Bindings for C++ 26 . 1Copyright Jason Turner @le�icus emptycrate.com/idocpp Jason Turner C++ Weekly
    0 码力 | 177 页 | 1.65 MB | 6 月前
    3
  • pdf文档 Writing Python Bindings for C++ Libraries: Easy-to-use Performance

    // error } }● Easy enough to return standard types (int, float, ...) ○ Let bindings library do the heavy lifting ● Can return python objects ○ boost::python::dict / boost::python::list Chose to write all code in Cython instead of C / C++ ● Benefits: ○ Easy interop, Cython writes the bindings for your helper functions ○ Easy syntax, code looks very similar to python ○ Can import C / C++
    0 码力 | 118 页 | 2.18 MB | 6 月前
    3
  • pdf文档 Reflection Based Libraries to Look Forward To

    Python, Java) Reflection in C++ as per P2996 Syntax and examples Reflection libraries! Python bindings ABI hashing (boost::abi_hash?) A duck-typed std::any (boost::virtual_any?) Alternatives ways 42Now let's do some actual library design Automatic python bindings Automatic type ABI hash A better std::any with duck typing 43Python bindings 44We have a C++ class that we’d like to expose to Python “expose” C++ objects in python A fan favorite, and one of the most common wishlist items 45Python bindings struct Item { int id; PyObject* getPyValue() const; }; struct Row { const auto& items()
    0 码力 | 118 页 | 14.33 MB | 6 月前
    3
  • pdf文档 Can't we just synthesize std::tuple_element from get?

    Can’t we just synthesize std::tuple_element from get? Jonathan Müller — @foonathanAdding structured bindings support to a custom tuple-like type template struct my_tuple { … }; Jonathan @foonathan Can’t we just synthesize std::tuple_element from get? CppCon 2024-09-18 1Adding structured bindings support to a custom tuple-like type template struct my_tuple { … }; template @foonathan Can’t we just synthesize std::tuple_element from get? CppCon 2024-09-18 1Adding structured bindings support to a custom tuple-like type template struct my_tuple { … }; template
    0 码力 | 31 页 | 282.80 KB | 6 月前
    3
  • pdf文档 GraphBLAS: Building a C++ Matrix API for Graph Algorithms

    version of C API spec. is 1.3 (2.0 arriving imminently!) - C offers great portability (Python, bindings, etc.), but has some disadvantages... GraphBLAS C API[DISTRIBUTION STATEMENT A] This material has version of C API spec. is 1.3 (2.0 arriving imminently!) - C offers great portability (Python, bindings, etc.), but has some disadvantages... GraphBLAS C API[DISTRIBUTION STATEMENT A] This material has version of C API spec. is 1.3 (2.0 arriving imminently!) - C offers great portability (Python, bindings, etc.), but has some disadvantages... GraphBLAS C API[DISTRIBUTION STATEMENT A] This material has
    0 码力 | 172 页 | 7.40 MB | 6 月前
    3
  • pdf文档 C++26 Preview

    new ranges, language features 4Outline of the talk I Language & Library debugging structured bindings Language Templates Misc Contracts Reflection 5Outline of the talk II Library: string processing control of a debugger P2546 Debugging Support P2810 is_debugger_present is_replaceable 13Structured Bindings 14use as conditions in if, while, for, and switch statements success evaluation prior to destructuring namingIsHard(mutex); std::lock_guard _(mutex); 3 4 16.1P0609 Attributes for Structured Bindings auto g() { [[maybe_unused]] auto h = f(); auto [a, b [[maybe_unused]], c] = f(); return
    0 码力 | 118 页 | 2.02 MB | 6 月前
    3
  • pdf文档 Modern C++ for Parallelism in High Performance Computing

    standard bindings to C and Fortran, so we start with a plain ‘C-style’ imple- mentation based on simple loops and linear vectors for floating point data storage. (2) OpenMP also has bindings to C++, where
    0 码力 | 3 页 | 91.16 KB | 6 月前
    3
  • pdf文档 Can You RVO?

    NRVO! 66Example 10 (continued) With NRVO! 67Example 11 - structured bindings NRVO! ? 68Example 11 - structured bindings With Instead, you could make two separate functions return a and b
    0 码力 | 84 页 | 9.98 MB | 6 月前
    3
  • pdf文档 Back to Basics: Lambda Expressions

    ] (auto var1, int var2) { return var1 + var2; } 42Lambda Expressions ● Structured Bindings ○ structured bindings make it easier to access elements of tuples, arrays, and other compound types auto [x
    0 码力 | 48 页 | 175.89 KB | 6 月前
    3
  • pdf文档 Structure and Interpretation of Computer Programs

    C++20 Concepts C++14 Function Deduced Return Type C++14 Generic Lambdas C++17 Structured Bindings C++17 CTADauto solution2(auto v) { using namespace std::ranges; nth_element(v, std::begin(v) + } C++20/23/xx Ranges C++23 Pipeline Operator C++14 Generic Lambdas C++17 Structured Bindings• SICP is an absolutely brilliant & timeless textbook • You will learn about the fundamentals of
    0 码力 | 136 页 | 7.35 MB | 6 月前
    3
共 93 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 10
前往
页
相关搜索词
SecretsofC++ScriptingBindingsWritingPythonforLibrariesEasytousePerformanceReflectionBasedLookForwardToCanwejustsynthesizestdtupleelementfromgetGraphBLASBuildingMatrixAPIGraphAlgorithms26PreviewModernParallelisminHighComputingYouRVOBackBasicsLambdaExpressionsStructureandInterpretationComputerPrograms
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩