Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/BayshoreNetworks/yextend
/ functions
Functions
382 in github.com/BayshoreNetworks/yextend
⨍
Functions
382
◇
Types & classes
87
Function
erase
libs/json.hpp:10595
Method
escape
escape "~"" to "~0" and "/" to "~1"
libs/json.hpp:7152
Method
escape_codepoint
libs/json.hpp:6429
Method
exc_extract_text_buffer
libs/pdf_parser.cpp:113
Method
exception
libs/json.hpp:215
Method
expect
! @throw parse_error.101 if expected token did not occur */
libs/json.hpp:3406
Method
extra_space
! @brief calculates the extra space to escape a JSON string @param[in] s the string to escape @param[in] ensure_ascii whether to escape
libs/json.hpp:6335
Method
flatten
libs/json.hpp:14516
Function
from_cbor
! @brief create a JSON value from an input in CBOR format Deserializes a given input @a i to a JSON value using the CBOR (Concise Binary
libs/json.hpp:13402
Method
from_json
libs/json.hpp:6858
Function
from_msgpack
! @brief create a JSON value from an input in MessagePack format Deserializes a given input @a i to a JSON value using the MessagePack se
libs/json.hpp:13489
Function
front
! @brief access the first element Returns a reference to the first element in the container. For a JSON container `c`, the expression `c.
libs/json.hpp:10484
Method
get
! @brief get next character from the input This function provides the interface to the used input adapter. It does not throw in case the
libs/json.hpp:5213
Function
get_allocator
! @brief returns the allocator associated with the container */
libs/json.hpp:7400
Method
get_cbor_array
libs/json.hpp:5372
Method
get_cbor_object
libs/json.hpp:5383
Method
get_cbor_string
! @brief reads a CBOR string This function first reads starting bytes to determine the expected string length and then copies this number
libs/json.hpp:5296
Method
get_character
libs/json.hpp:1519
Method
get_codepoint
! @brief get codepoint from 4 hex characters following `\u` For input "\u c1 c2 c3 c4" the codepoint is: (c1 * 0x1000) + (c2 * 0x0100)
libs/json.hpp:1766
Method
get_decimal_point
return the locale-dependent decimal point
libs/json.hpp:1740
Function
get_file_object_type
wrapper.cpp:78
Method
get_msgpack_array
libs/json.hpp:5478
Method
get_msgpack_object
libs/json.hpp:5489
Method
get_msgpack_string
! @brief reads a MessagePack string This function first reads starting bytes to determine the expected string length and then copies this
libs/json.hpp:5409
Method
get_number
libs/json.hpp:5232
Function
get_ptr
libs/json.hpp:9702
Function
get_ref
libs/json.hpp:9779
Function
get_ref_impl
libs/json.hpp:9477
Method
get_token
get next token from lexer
libs/json.hpp:3398
Method
has_embedded_files
libs/pdf_parser.cpp:143
Method
input_adapter
input adapter for input stream
libs/json.hpp:1552
Method
input_buffer_adapter
libs/json.hpp:1505
Method
input_stream_adapter
libs/json.hpp:1447
Function
insert
! @brief inserts element Inserts element @a val before iterator @a pos. @param[in] pos iterator before which the content will be inserte
libs/json.hpp:11857
Method
invalid_iterator
libs/json.hpp:352
Function
is_discarded
! @brief return whether value is discarded This function returns true if and only if the JSON value was discarded during parsing with a c
libs/json.hpp:9332
Method
is_empty
bayshore_content_scan.h:87
Function
is_encrypted
encrypted
libs/bayshore_file_type_detect.c:785
Function
is_primitive
! @brief return whether type is primitive This function returns true if and only if the JSON type is primitive (string, number, boolean,
libs/json.hpp:9053
Function
is_structured
! @brief return whether type is structured This function returns true if and only if the JSON type is structured (array or object).
libs/json.hpp:9080
Function
is_type_7zip
wrapper.cpp:97
Function
is_type_executable
wrapper.cpp:196
Function
is_type_html
wrapper.cpp:205
Function
is_type_image
wrapper.cpp:241
Function
is_type_matlab
wrapper.cpp:88
Function
is_type_office
wrapper.cpp:232
Function
is_type_pcap
wrapper.cpp:124
Function
is_type_php
wrapper.cpp:169
Function
is_type_rar
wrapper.cpp:178
Function
is_type_tar
wrapper.cpp:142
Function
is_type_unclassified
wrapper.cpp:133
Function
is_type_win_exe
wrapper.cpp:187
Function
is_type_xml
wrapper.cpp:151
Method
iter_impl
default constructor
libs/json.hpp:3651
Method
iteration_proxy
construct iteration proxy from a container
libs/json.hpp:4256
Method
iteration_proxy_internal
libs/json.hpp:4200
Function
iterator_wrapper
! @copydoc iterator_wrapper(reference) */
libs/json.hpp:11235
Method
j_get_string
libs/json.hpp:5272
Method
json_pointer
! @brief create JSON pointer Create a JSON pointer according to the syntax described in [Section 3 of RFC6901](https://tools.ietf.org/htm
libs/json.hpp:6920
Method
json_ref
libs/json.hpp:6774
Method
json_reverse_iterator
create reverse iterator from iterator
libs/json.hpp:4301
Function
json_value
default constructor (for null values)
libs/json.hpp:7991
Method
key
return key of the iterator
libs/json.hpp:4224
Method
key
return the key of an object iterator
libs/json.hpp:4362
Method
lexer
libs/json.hpp:1727
Method
little_endianess
! @brief determine system byte order @return true if and only if system's byte order is little endian @note from http://stackoverflow.co
libs/json.hpp:4550
Function
main
main.cpp:440
Function
max_size
! @brief returns the maximum possible number of elements Returns the maximum number of elements a JSON value is able to hold due to syste
libs/json.hpp:11433
Function
meta
! @brief returns version information on the library This function returns a JSON object with information about the library, including the
libs/json.hpp:7431
Method
name
libs/json.hpp:217
Method
next_byte_in_range
! @brief check if the next byte(s) are inside a given range Adds the current byte and, for each passed range, reads a new byte and checks
libs/json.hpp:1808
Function
operator "" _json
! @brief user-defined string literal for JSON values This operator implements a user-defined string literal for JSON objects. It can be used by addin
libs/json.hpp:14681
Function
operator "" _json_pointer
! @brief user-defined string literal for JSON pointer This operator implements a user-defined string literal for JSON Pointers. It can be used by add
libs/json.hpp:14699
Function
operator!=
! @brief comparison: not equal Compares two JSON values for inequality by calculating `not (lhs == rhs)`. @param[in] lhs first JSON val
libs/json.hpp:12470
Method
operator!=
! @brief comparison: not equal @pre The iterator is initialized; i.e. `m_object != nullptr`. */
libs/json.hpp:3972
Method
operator!=
inequality operator (needed for range-based for)
libs/json.hpp:4218
Method
operator()
libs/json.hpp:1357
Method
operator()
libs/json.hpp:1384
Method
operator()
! @brief return a hash value for a JSON object @since version 1.0.0 */
libs/json.hpp:14641
Method
operator()
! @brief compare two value_t enum values @since version 3.0.0 */
libs/json.hpp:14659
Method
operator*
! @brief return a reference to the value pointed to by the iterator @pre The iterator is initialized; i.e. `m_object != nullptr`. */
libs/json.hpp:3788
Method
operator+
libs/json.hpp:3520
Method
operator+
! @brief add to iterator @pre The iterator is initialized; i.e. `m_object != nullptr`. */
libs/json.hpp:4073
Method
operator++
libs/json.hpp:3543
Method
operator++
! @brief post-increment (it++) @pre The iterator is initialized; i.e. `m_object != nullptr`. */
libs/json.hpp:3859
Method
operator++
post-increment (it++)
libs/json.hpp:4308
Method
operator-
libs/json.hpp:3527
Method
operator-
! @brief subtract from iterator @pre The iterator is initialized; i.e. `m_object != nullptr`. */
libs/json.hpp:4095
Method
operator-
subtract from iterator
libs/json.hpp:4344
Method
operator--
libs/json.hpp:3556
Method
operator--
! @brief post-decrement (it--) @pre The iterator is initialized; i.e. `m_object != nullptr`. */
libs/json.hpp:3902
Method
operator--
post-decrement (it--)
libs/json.hpp:4320
Method
operator->
! @brief dereference the iterator @pre The iterator is initialized; i.e. `m_object != nullptr`. */
libs/json.hpp:3825
Method
operator->
libs/json.hpp:6817
Method
operator<
libs/json.hpp:3515
Method
operator<
! @brief comparison: smaller @pre The iterator is initialized; i.e. `m_object != nullptr`. */
libs/json.hpp:3981
Function
operator<=
! @brief comparison: less than or equal Compares whether one JSON value @a lhs is less than or equal to another JSON value by calculating
libs/json.hpp:12632
Method
operator<=
! @brief comparison: less than or equal @pre The iterator is initialized; i.e. `m_object != nullptr`. */
libs/json.hpp:4008
Function
operator==
libs/json.hpp:12436
Method
operator==
libs/json.hpp:3510
← previous
next →
201–300 of 382, ranked by callers