-
Just take a look at the following bit of logic from `HTTPRequest` class:
```cpp
bool HTTPRequest::_handle_response(bool *ret_value) {
if (!client->has_response()) {
call_deferred("_r…
-
See #1695.
Experiment for string intern changes: #1698.
-
-
### Proposal Details
There are some common "mistakes" (or missed opportunities) that lead to increased heap size:
- reading in a large chunk of memory and then referencing just some bits of it via …
-
It looks like `intaglio` is listed as "no" here, but the crate has support for every string type in `std`. It is not, however, generic over the things being interned.
-
I didn't like lisp shouting at me all the time so I set in my .sbclrc `(setf *print-case* :downcase)`.
This causes a problem with dexador when it does: `(intern (format nil "~A-~A" :http-request name…
-
Rather than just 'identifier not found' (such as for trying to use an API from the old library that no longer exists), or 'syntax error' (such as for interpolated string changes), we could perhaps det…
-
It would be nice if `CBORDecoder` had an option to [intern](https://docs.python.org/3/library/sys.html#sys.intern) decoded strings, especially dict keys since they're the most likely to appear multipl…
-
### Context
In all programming languages, string is one of the key type and also one that causes the most controversies and performance issues. I think we need guidelines (NEP-3?) specifically dedi…
-
When we receive a Keyword, for example `:hello`, the simplest solution I imagine is to use a `&str` started with ":hello", this could differ from String type, but would require a lifetime. So my sugge…