During a delta transition each individual record type builds the entire next state of the type in memory while the current state is retained to answer requests. This means that the memory pool Hollow reserves needs to be large enough to compose an extra copy of the largest type. This is a...
TheactorNameis unlikely to be repeated often. In this case, if we reference a separate record type, we have to retain roughly the same number of unique character stringspluswe need to retain references to those records. In this case, we end up saving space by using an inlinedSTRINGfield ...
That’s right, we can create custom grouping logic using whatever code we want, as long as it results in an object of some type. To showcase this, let’s get and group all processes on my computer by: Whether or not the name starts with the same letter as the current weekday Whethe...
In the above formula,A2:A9="Oranges"returns an array of logical values: {FALSE, TRUE, FALSE, FALSE, FALSE, TRUE, FALSE, TRUE}. The formula only returns TRUE for the cells that contain the value “Oranges” in the range A2:A9 and for the cells that contain other values, it returns F...
The above formula checks if the text strings from A2 and B2 are an exact case-sensitive match. Then, it returns FALSE because the word “St” in A2 is in lowercase while in B2, it is capitalized. In case you want to get descriptive results, you need to use the IF function with the...