코딩Coding/Rust용어
-
pid(Process ID) / tid(Thread ID)코딩Coding/Rust용어 2023. 4. 14. 01:30
Type Definitions lldb_addr_t Storage for the value of an address. lldb_offset_t Storage for an offset between 2 addresses in memory. lldb_pid_t Storage for an OS process ID. lldb_tid_t Storage for an OS thread ID. lldb_user_id_t Storage for an OS user ID. https://endoli.github.io/lldb.rs/lldb/index.html lldb - Rust This crate provides a safe binding to the public API for LLDB, the debugger provi..
-
Rust용어] first첫번째 변수를 의미함, rest 첫번째를 뺀 나머지 변수들__split_first_mut() 할 때 나오는 용어코딩Coding/Rust용어 2022. 5. 29. 22:45
Returns the first and all the rest of the elements of the slice, or None if it is empty. first 첫 번째 변수를 의미한 rest 나머지 변수들을 의미함. split_first_mut() 할 때 나옴. 출처 : split_first_mut 검색하면 됨. https://doc.rust-lang.org/std/primitive.slice.html slice - Rust Rotates the slice in-place such that the first self.len() - k elements of the slice move to the end while the last k elements move to the front. After c..
-
rust용어]src = source / dest = destination코딩Coding/Rust용어 2022. 5. 29. 22:40
Copies count * size_of bytes from self to dest. The source and destination may overlap src = source dest = destination 출처 : https://doc.rust-lang.org/std/primitive.pointer.html pointer - Rust Returns None if the pointer is null, or else returns a shared reference to the value wrapped in Some. In contrast to as_ref, this does not require that the value has to be initialized. When calling this met..
-
Rust용어] Zero Sized Types (ZSTs)코딩Coding/Rust용어 2022. 5. 29. 21:47
https://doc.rust-lang.org/nomicon/exotic-sizes.html#dynamically-sized-types-dsts Exotically Sized Types - The Rustonomicon Most of the time, we expect types to have a statically known and positive size. This isn't always the case in Rust. Rust supports Dynamically Sized Types (DSTs): types without a statically known size or alignment. On the surface, this is a bit nonsensical: doc.rust-lang.org
-
Rust용어]ABI, Application Binary Interface (ABI)코딩Coding/Rust용어 2022. 5. 17. 01:12
https://doc.rust-lang.org/reference/abi.html Application Binary Interface - The Rust Reference This section documents features that affect the ABI of the compiled output of a crate. See extern functions for information on specifying the ABI for exporting functions. See external blocks for information on specifying the ABI for linking external librar doc.rust-lang.org
-
coding용어) aggregation코딩Coding/Rust용어 2022. 4. 5. 10:10
https://www.computerhope.com/jargon/a/aggregat.htm What is an Aggregate? Computer dictionary definition for what aggregate means including related links, information, and terms. www.computerhope.com https://en.m.wikipedia.org/wiki/Aggregation Aggregation - Wikipedia Look up aggregation in Wiktionary, the free dictionary.Aggregation may refer to: Business and economicsEdit Computer science and te..
-
Rust용어)Type Inference:(타입_추론)Hindley-Milner in Rust-Reddit코딩Coding/Rust용어 2022. 2. 7. 13:44
https://www.reddit.com/r/ProgrammingLanguages/comments/8nktyx/type_inference_hindleymilner_in_rust/?utm_source=share&utm_medium=ios_app&utm_name=iossmf Type Inference: Hindley-Milner in Rust Posted in r/ProgrammingLanguages by u/0b01 • 8 points and 6 comments www.reddit.com 타입 추론 알고리즘 논문 Complete and easy bidirectional typechecking for higher-rank polymorphism" ( https://research.cs.queensu.ca/h..