module fastdata.fast_dict_c

Short summary

module cpyquickhelper.fastdata.fast_dict_c

Fast dictionary using Python C API.

source on GitHub

Functions

function

truncated documentation

UnorderedMapRHStrInt64_Create

Creates a faster unordered map { (str, int): int }.nThis map is using robin_hood implementation. …

UnorderedMapRHStrInt64_Get_Fast

Inserts a value into a map { (str, int): int }

UnorderedMapRHStrInt64_Insert_Fast

Inserts a value into a map { (str, int): int }

UnorderedMapStrInt64_Create

Creates an unordered map { (str, int): int }.

UnorderedMapStrInt64_Get

Inserts a value into a map { (str, int): int }

UnorderedMapStrInt64_Get_Fast

Inserts a value into a map { (str, int): int }

UnorderedMapStrInt64_Insert

Inserts a value into a map { (str, int): int }

UnorderedMapStrInt64_Insert_Fast

Inserts a value into a map { (str, int): int }

Documentation

Fast dictionary using Python C API.

cpyquickhelper.fastdata.fast_dict_c.UnorderedMapRHStrInt64_Create()

Creates a faster unordered map { (str, int): int }.nThis map is using robin_hood implementation.

cpyquickhelper.fastdata.fast_dict_c.UnorderedMapRHStrInt64_Get_Fast()

Inserts a value into a map { (str, int): int }:param obj: unordered_map :param name: str :param key: int :param value: int :return: int

cpyquickhelper.fastdata.fast_dict_c.UnorderedMapRHStrInt64_Insert_Fast()

Inserts a value into a map { (str, int): int }:param obj: unordered_map :param name: str :param key: int :param value: int

cpyquickhelper.fastdata.fast_dict_c.UnorderedMapStrInt64_Create()

Creates an unordered map { (str, int): int }.

cpyquickhelper.fastdata.fast_dict_c.UnorderedMapStrInt64_Get()

Inserts a value into a map { (str, int): int }:param obj: unordered_map :param name: str :param key: int :param value: int :return: int

cpyquickhelper.fastdata.fast_dict_c.UnorderedMapStrInt64_Get_Fast()

Inserts a value into a map { (str, int): int }:param obj: unordered_map :param name: str :param key: int :param value: int :return: int

cpyquickhelper.fastdata.fast_dict_c.UnorderedMapStrInt64_Insert()

Inserts a value into a map { (str, int): int }:param obj: unordered_map :param name: str :param key: int :param value: int

cpyquickhelper.fastdata.fast_dict_c.UnorderedMapStrInt64_Insert_Fast()

Inserts a value into a map { (str, int): int }:param obj: unordered_map :param name: str :param key: int :param value: int