AI-Chipmunk | 2021.2.1 Patch 2 <debuggerx@debuggerx Update yiiguxing.translation.xml

master
debuggerx 3 years ago
parent c42b1b0797
commit bf4b4b53a9

@ -6,6 +6,7 @@
<option name="newTranslationDialogY" value="447" />
<option name="pinTranslationDialog" value="true" />
<histories>
<item value="Saves item by [key] to a storage. Value should be json encodable (`json.encode()` is called under the hood). After item was set to storage, consecutive [getItem] will return `json` representation of this item if [toEncodable] is provided, it is called before setting item to storage otherwise `value.toJson()` is called" />
<item value="Makes a direct update of [value] adding it to the Stream useful when you make use of Rx for custom Types to referesh your UI. Sample: ``` class Person { String name, last; int age; Person({this.name, this.last, this.age}); @override String toString() =&gt; 'name last, age years old'; } final person = Person(name: 'John', last: 'Doe', age: 18).obs; person.value.name = 'Roi'; person.refresh(); print( person ); ```" />
<item value="change new onboarding conditions" />
<item value="判断条件" />
@ -55,12 +56,11 @@
<item value="The number of objects in this list. The valid indices for a list are `0` through `length - 1`. ```dart final numbers = &lt;int&gt;[1, 2, 3]; print(numbers.length); 3 ```" />
<item value="fix: error when mention by soul; unsupported param type when log mention event." />
<item value="fix: error when mention by soul." />
<item value="A type representing values that are either `Future&lt;T&gt;` or `T`. This class declaration is a public stand-in for an internal future-or-value generic type, which is not a class type. References to this class are resolved to the internal type. It is a compile-time error for any class to extend, mix in or implement `FutureOr`. Examples ```dart The `Future&lt;T&gt;.then` function takes a callback [f] that returns either an `S` or a `Future&lt;S&gt;`. Future&lt;S&gt; then&lt;S&gt;(FutureOr&lt;S&gt; f(T x), ...); `Completer&lt;T&gt;.complete` takes either a `T` or `Future&lt;T&gt;`. void complete(FutureOr&lt;T&gt; value); ``` Advanced The `FutureOr&lt;int&gt;` type is actually the &quot;type union&quot; of the types `int` and `Future&lt;int&gt;`. This type union is defined in such a way that `FutureOr&lt;Object&gt;` is both a super- and sub-type of `Object` (sub-type because `Object` is one of the types of the union, super-type because `Object` is a super-type of both of the types of the union). Together it means that `FutureOr&lt;Object&gt;` is equivalent to `Object`. As a corollary, `FutureOr&lt;Object&gt;` is equivalent to `FutureOr&lt;FutureOr&lt;Object&gt;&gt;`, `FutureOr&lt;Future&lt;Object&gt;&gt;` is equivalent to `Future&lt;Object&gt;`." />
</histories>
<option name="languageScores">
<map>
<entry key="CHINESE" value="300" />
<entry key="ENGLISH" value="301" />
<entry key="CHINESE" value="301" />
<entry key="ENGLISH" value="302" />
<entry key="GERMAN" value="1" />
<entry key="FRENCH" value="1" />
</map>

Loading…
Cancel
Save