Tutorial by Topics: ndk

-- Create simple index CREATE INDEX index_name ON table_name(column_name1 [, column_name2, ...]) -- Create unique index CREATE UNIQUE INDEX index_name ON table_name(column_name1 [, column_name2, ...] -- Drop index DROP INDEX index_name ON tbl_name [algorithm_option | lock_option] ....
map = %{} // creates an empty map map = %{:a => 1, :b => 2} // creates a non-empty map list = [] // creates an empty list list = [{:a, 1}, {:b, 2}] // creates a non-empty keyword list Elixir provides two associative data structures: maps and keyword lists. Maps are the Elixir key-...
Header: YAML format, used when the script is compile to define general parameter and metadata Parameterdefinitiontitlethe title of the documentauthorThe author of the documentdateThe date of the document: Can be "r format(Sys.time(), '%d %B, %Y')"authorThe author of the docu...
Well-designed classes encapsulate their functionality, hiding their implementation while providing a clean, documented interface. This allows redesign or change so long as the interface is unchanged. In a more complex scenario, multiple classes that rely on each others' implementation details may ...
What is the Android NDK? Android Native Development Kit (NDK) is a companion tool to Android SDK that allows portions of apps to be built in in C/C++. This is useful for: Sharing application components across platforms (Android, iOS, Linux, etc.) Improving performance for critical portions ...
The RAM can be divided into two parts. The kernel space and user space. The kernel runs in the kernel space, which no other programs can access. User programs have to run in user space. User space is a form of sand-boxing, where user programs can only access to memory that allocated to them so that ...

Page 1 of 1