书栈网 · BookStack 本次搜索耗时 0.008 秒,为您找到 179 个相关结果.
  • Recursion

    468 2020-09-03 《PonyLang Tutorial》
    Recursive functions in Pony can cause many problems. Every function call in a program adds a frame on the system call stack, which is bounded. If the stack grows too big it will o...
  • C FFI

    612 2020-09-03 《PonyLang Tutorial》
    Overview Calling C from Pony Linking to C Libraries C ABI Callbacks
  • 数据库

    DB API SQLAlchemy DjangoORM Pony ORM peewee
  • Operations with collections

    Operations with collections Attribute lifting Collection attribute parameters Collection attribute queries and other methods Operations with collections The attribute Person....
  • Expressions

    523 2020-09-03 《PonyLang Tutorial》
    Overview Literals Variables Operators Arithmetic Control Structures Methods Errors Equality in Pony Sugar Object Literals Partial Application
  • Overview

    393 2020-09-03 《PonyLang Tutorial》
    This chapter covers the various expressions that make up Pony. From variables to control structures and more.
  • Types

    455 2020-09-03 《PonyLang Tutorial》
    Overview The Pony Type System at a Glance Classes Primitives Actors Traits and Interfaces Structs Type Aliases Type Expressions
  • Overview

    Overview Overview Recently native JSON data type support has been added in all major database systems. JSON support introduces dynamic data structures commonly found in NoSQL da...
  • Overview

    Overview Overview Since Pony version 0.7.7 we add support of Array type for PostgreSQL, CockroachDB and SQLite. It implements PostgreSQL’s arrays. JSON type is more flexible, bu...
  • Aliasing

    483 2020-09-03 《PonyLang Tutorial》
    Aliasing and deny guarantees What counts as making an alias? Ephemeral types Alias types Aliasing means having more than one reference to the same object, within the same act...