Wikifunctions
wikifunctionswiki
https://www.wikifunctions.org/wiki/Wikifunctions:Main_Page
MediaWiki 1.47.0-wmf.18
first-letter
Media
Special
Talk
User
User talk
Wikifunctions
Wikifunctions talk
File
File talk
MediaWiki
MediaWiki talk
Template
Template talk
Help
Help talk
Category
Category talk
TimedText
TimedText talk
Module
Module talk
Translations
Translations talk
Event
Event talk
Wikifunctions:How to create implementations
4
1180
307370
294473
2026-09-02T05:31:58Z
DMartin (WMF)
24
New subsection: Coming soon: Calling another Wikifunctions function
307370
wikitext
text/x-wiki
<languages/>
<translate>
<!--T:1-->
This page provides a more detailed guide to '''creating implementations''', beyond the overview at <tvar name="1">{{ll|Wikifunctions:Introduction}}</tvar>.
== Types of Implementations == <!--T:47-->
<!--T:48-->
In Wikifunctions, an '''implementation''' can take one of two main forms: '''code''' or '''composition'''. A code implementation directly expresses the function’s logic in any of the available programming languages (currently, Python3 or JavaScript). It’s most useful when the function’s behavior can’t easily be built from existing Wikifunctions, or when precise control over data processing is needed.
<!--T:49-->
A composition implementation, on the other hand, defines the function entirely by combining other existing functions, without writing code. Compositions are easier to understand, reuse, and translate into other languages automatically, but they depend on suitable building blocks already being available and often are less performant. In general, start by checking whether your goal can be achieved through composition; if it can’t, or if performance or fine-grained logic matters, choose a code implementation instead.
<!--T:50-->
There's a third type of implementation: '''built-ins'''. These are run by system-built code, and are not editable. Most likely all pre-defined functions will have a built-in implementation. In such cases, when opening the implementation page, you will see a message stating ''"<tvar name="1">{{int|wikilambda-implementation-selector-none}}</tvar>"''
== Practice Test-Driven Development == <!--T:51-->
<!--T:52-->
'''Test-Driven Development''', or '''TDD''', is a way of creating software where you write tests before you write the actual code. Tests are just a way of understanding what your function is supposed to do by listing examples and how they should work.
<!--T:53-->
In Wikifunctions, writing tests first offers significant benefits. If you are working on an implementation, you can run your code against the existing tests to check that it behaves as expected. This makes it easier to catch errors early before even publishing your implementation. Tests are also a powerful way to describe the function you need. By writing tests, '''you clearly communicate the expected behavior''', and the community can step in and help with the implementation, or create alternative implementations.
<!--T:54-->
Imagine you want to implement a Function that combines two strings with a space in between. A basic test for this might look like:
</translate>
<syntaxhighlight lang="prolog">
join_with_space( "Hello", "world" ) => "Hello world"
</syntaxhighlight>
<translate>
<!--T:55-->
Once you have defined the basic behavior, it's important to '''think about edge cases'''—situations where the inputs are such that you might need some special behavior.
<!--T:56-->
For example, what if your first string ends in a space, or your second string starts with a space? Should the function keep all existing spaces and add another one, or should it return a neatly spaced result with just a single space between the words?
Depending on your requirements, you should build a test for such a case. For example, a test for this edge case could be either one of these — but not both!:
</translate>
<syntaxhighlight lang="prolog">
join_with_space( "Hello ", " world") => "Hello world"
</syntaxhighlight>
<translate>
<!--T:57-->
or ...
</translate>
<syntaxhighlight lang="prolog">
join_with_space( "Hello ", " world") => "Hello world"
</syntaxhighlight>
<translate>
<!--T:58-->
Make sure that all possible special cases are covered by your tests, and once you have them, make sure that they are all connected to the Function by selecting them and clicking "Connect".
== Code implementations == <!--T:59-->
</translate>
[[File:Code implementation.png|thumb|alt=<translate><!--T:60--> Wikifunctions code editor initialized with a function template</translate>|<translate><!--T:61--> When adding a new code implementation, the function template is initialized with the function and argument names</translate>]]
<translate>
<!--T:62-->
When creating an implementation using code, the Wikifunctions UI will set up a code editor with the selected language activated for syntax highlighting and validation. When the function to implement and the programming language are selected, this editor will be set with the correct function template: '''do not remove or edit this'''! Keep your code inside this function signature: if you need auxiliary functions, you can simply declare them inside your top-level function declaration.
=== Using input types in your code === <!--T:63-->
<!--T:64-->
Wikifunctions types <tvar name="1">{{Z|Z6}}</tvar> and <tvar name="2">{{Z|Z40}}</tvar> can be used as if they were native types in both JavaScript and Python3. For example, a String input can be concatenated or a Boolean be directly used in a logical expression. To use other types in your code implementations, you will have to look deeper into the type, figure out if it has a conversion to a native equivalent, and treat it accordingly.
<!--T:65-->
For example, let's say we want to write some Python code that handles an input of type <tvar name="1">{{Z|Z20420}}</tvar>. In the page for this type, let's look at its "type converters to code" and search for a Python one. The converter <tvar name="2">{{Z|Z20424}}</tvar> will be applied to our date input before our code, so looking at "native type" we know that our input will be a Python ''dict'' and looking at the implementation we can see the keys we can expect:
</translate>
<syntaxhighlight lang="python3">
return {
'K1': year,
'K2': month,
'K3': day
}
</syntaxhighlight>
<translate>
<!--T:66-->
When a type doesn't have a converter, you'll have to access its parts directly using its keys. For example, let's assume that your function <tvar name="1"><code>Z30000</code></tvar> has one input <tvar name="2"><code>Z30000K1</code></tvar> of type <tvar name="3">{{Z|Z11}}</tvar>. This type has two keys: <tvar name="4"><code>Z11K1</code></tvar> for the language (itself an object of type <tvar name="5">{{Z|Z60}}</tvar>), and <tvar name="6"><code>Z11K2</code></tvar> for the string value. Similarly, the language object has a key <tvar name="7"><code>Z60K1</code></tvar> for the language code. So, to get a string with the language code and the text, you can write:
</translate>
<syntaxhighlight lang="javascript">
function Z30000( Z30000K1 ) {
// <translate nowrap><!--T:308--> e.g. "en: some text"</translate>
return Z30000K1.Z11K1.Z60K1 + ": " + Z30000K1.Z11K2;
}
</syntaxhighlight>
<translate>
<!--T:67-->
For a quick reference of the available type conversions visit [[<tvar name="1">Special:MyLanguage/Wikifunctions:Execution targets#Default type conversion</tvar>|the default type conversion table]].
=== Returning the right outputs === <!--T:68-->
<!--T:69-->
Similarly to the way you treat inputs, outputs need to match the type specified in the function definition. Some can be treated as simply as native types, so any string output will be converted into a Wikifunctions <tvar name="1">{{Z|Z6}}</tvar> object and any native boolean returned by your implementation will be converted into a Wikifunctions <tvar name="2">{{Z|Z40}}</tvar> object.
<!--T:70-->
Those types that have "type converters from code" will apply the appropriate function to the output, in order to build the required type. Following the example of <tvar name="1">{{Z|Z20420}}</tvar>, the <tvar name="2">{{Z|Z20443}}</tvar> will transform the output from your implementation–a dict with K1, K2 and K3 keys–into its correct ZObject representation.
<!--T:71-->
For types that don't have converters from code, you can carefully build and return the output objects. For example, imagine that our function <tvar name="1"><code>Z30000</code></tvar> takes two string inputs: language code and text, and should return a <tvar name="2">{{Z|Z11}}</tvar> object. You can do this in Python by using the <tvar name="3"><code>ZObject</code></tvar> constructor:
</translate>
<syntaxhighlight lang="python3">
def Z30000(Z30000K1, Z30000K2):
lang_object = ZObject(
{"Z1K1": "Z9", "Z9K1": "Z60"},
Z60K1 = Z30000K1
)
return ZObject(
{"Z1K1": "Z9", "Z9K1": "Z11"},
Z11K1 = lang_object,
Z11K2 = Z30000K2
)
</syntaxhighlight>
<translate>
<!--T:72-->
Or in JavaScript:
</translate>
<syntaxhighlight lang="javascript">
function Z30000( Z30000K1, Z30000K2 ) {
const langObject = new ZObject(
new Map( [ [ "Z60K1", Z30000K1 ] ] ),
{ "Z1K1": "Z9", "Z9K1": "Z60" }
);
const monolingualKeys = new Map( [
[ "Z11K1", langObject ],
[ "Z11K2", Z30000K2 ]
] );
return new ZObject(
monolingualKeys,
{ "Z1K1": "Z9", "Z9K1": "Z11" }
);
}
</syntaxhighlight>
<translate>
<!--T:73-->
You can learn more about the <tvar name="1"><code>ZObject</code></tvar> class and other useful constructors in <tvar name="2">{{ll|Wikifunctions:Execution_targets#Custom_and_non-built-in_type_conversion}}</tvar>
</translate>{{phab|T392750}}<translate>
<!--T:317-->
As of 2026-05, trying to return a list of lists may fail, so you're not able to implement such functions in code.
=== Code in Python === <!--T:74-->
<!--T:3-->
In this section, we give a concrete example on how to create an implementation in the form of Code in Python. Say we want to create an implementation for a Function which combines two input strings by putting a space between them, returning the result of that. Let’s assume the ZID of that function is Z30000.
<!--T:5-->
The implementation is defined using the ZID of the function. So are the arguments of the function. So in the case of the function Z30000 with its two arguments, the function template should look like this:
</translate>
<syntaxhighlight lang="python3">
def Z30000(Z30000K1, Z30000K2):
</syntaxhighlight>
<translate>
<!--T:75-->
As we described before, we know that the arguments (<tvar name="1"><code>Z30000K1</code></tvar> and <tvar name="2"><code>Z30000K2</code></tvar>) are Strings, so we can treat them as simply as we use native strings in Python. Also, the function should return a String. For our example, we simply return the two arguments concatenated with a space in between:
</translate>
<syntaxhighlight lang="python3">
def Z30000(Z30000K1, Z30000K2):
return Z30000K1 + " " + Z30000K2
</syntaxhighlight>
<translate>
<!--T:9-->
Since this is Python, do not forget to indent this line.
<!--T:76-->
If you have followed our advice to [[<tvar name="1">#Practice Test-Driven Development</tvar>|practice TDD]], you will already have a set of tests that you know should work. If that's the case, while building your implementation you can click on the circular arrow in the Tests panel, and see if your implementation passes all of them.
<!--T:11-->
Remember that the runtime has no state. Don’t assume values for global or static variables. If you have further questions about what you can and cannot do in Python, ask on <tvar name="1">[[Wikifunctions:Python implementations]]</tvar>.
=== Code in JavaScript === <!--T:77-->
<!--T:13-->
In this section, we give a concrete example on how to create an implementation in the form of Code in JavaScript. Say we want to create an implementation for a Function which combines two input strings by putting a space between them, returning the result of that. Let’s assume the ZID of that function is <tvar name="1"><code>Z30000</code></tvar>.
<!--T:15-->
The implementation is defined using the ZID of the function. So are the arguments of the function. So in the case of the function <tvar name="1"><code>Z30000</code></tvar> with its two arguments, the function template should look like this:
</translate>
<syntaxhighlight lang="javascript">
function Z30000( Z30000K1, Z30000K2 ) {
}
</syntaxhighlight>
<translate>
<!--T:78-->
We know that the arguments (<tvar name="1"><code>Z30000K1</code></tvar> and <tvar name="2"><code>Z30000K2</code></tvar>) are Strings, so we can treat them as native strings in JavaScript. Also, the function should return a String. To complete our function, you can then add a line concatenating the input strings, like this:
</translate>
<syntaxhighlight lang="javascript">
function Z30000( Z30000K1, Z30000K2 ) {
return Z30000K1 + " " + Z30000K2;
}
</syntaxhighlight>
<translate>
<!--T:79-->
If you have tests as recommended in the [[<tvar name="1">#Practice Test-Driven Development</tvar>|TDD]] section above, click on the circular arrow in the Tests panel and see if your implementation passes all of them.
<!--T:21-->
Remember that the runtime has no state. Don’t assume values for global or static variables. If you have further questions about what you can and cannot do in JavaScript, ask on <tvar name="1">[[Wikifunctions:JavaScript implementations]]</tvar>.
=== Coming soon: Calling another Wikifunctions function ===
September 1, 2026: This subsection previews a capability that is not yet available, but will be deployed soon.
A code implementation can call certain other Wikifunctions functions, receive the output of the call, and use that output in further processing. We refer to such calls as callbacks. At present, due to security and performance concerns, only the following built-in Wikidata fetch and search functions can be called in this way: {{Z|Z6820}}, {{Z|Z6821}}, {{Z|Z6822}}, {{Z|Z6824}}, {{Z|Z6825}}, {{Z|Z6826}}, {{Z|Z6830}}, and {{Z|Z6831}}. This capability is in an initial stage of deployment; we hope to allow calls to a broader range of functions in the future.
Let’s look at a JavaScript implementation containing a callback. This implementation fetches an item from Wikidata, extracts the label of that item in a given language, and returns the label. The item to fetch is given by argument <code>Z400K1</code>, and the language is given by <code>Z400K2</code>.
</translate>
<syntaxhighlight lang="javascript">
function Z400( Z400K1, Z400K2 ) {
const item = Wikifunctions.Call('Z6821', Z400K1);
for (const label of item.Z6001K2.Z12K1) {
if (label.Z11K1.Z60K1 === Z400K2.Z60K1) {
return label.Z11K2;
}}
return 'NOT FOUND';
}
</syntaxhighlight>
<translate>
A callback is made by calling <code>Wikifunctions.Call</code>, as shown in the example. The first argument to <code>Wikifunctions.Call</code> is always the ZID of the function to be called – in this case, {{Z|Z6821}}, which takes a single argument. Following that, the arguments to be passed to that function are listed, separated by commas. Here, that argument, <code>Z400K1</code>, is the same value that was passed to the function <code>Z400</code>. This is a common pattern of argument passing to callbacks, but their arguments can be built using the <code>ZObject</code> constructor (as explained above), or obtained in other ways.
The value of <code>Z400K1</code> would be an instance of {{Z|Z6091}}, containing the QID of the item to be fetched. Line 2 of the example calls <code>Z6821</code> to fetch that item from Wikidata and assigns the resulting ZObject to the const item. The remaining code iterates over the item’s labels until it finds the one matching the language given by <code>Z400K2</code>.
For the first example above, we have used <code>Z6821</code> for simplicity. However - unless an entire entity is needed by the implementation, it is strongly recommended to use <code>Z6820</code> to retrieve Wikidata items, which can be quite large. Although a call to <code>Z6820</code> is a bit more complex, its parameters allow for fetching selected portions of a Wikidata item, which can greatly improve performance, and avoid some errors, by reducing the network bandwidth and processing time that are needed. (<code>Z6820</code> can also be used in place of <code>Z6822</code>, <code>Z6824</code>, <code>Z6825</code>, and <code>Z6826</code>, to get similar bandwidth-reduction benefits.)
Just below we show how <code>Z6820</code> can be used, in <code>Wikifunctions.Call</code>, to implement the same behavior as above. Note that we use the second argument of <code>Z6820</code>, <code>[labelsPart]</code>, to say “Just return the item’s labels”, and we use its third argument, <code>[Z400K2]</code>, to say “Just return labels in the given language”. (This argument would also apply to aliases and descriptions, if they were included in the result.)
</translate>
<syntaxhighlight lang="javascript">
function Z400( Z400K1, Z400K2 ) {
const labelsPart = new ZObject(
new Map( [ ['Z6030K1', new ZReference('Z6033')] ] ),
{Z1K1: 'Z9', Z9K1: 'Z6030'}
);
const entities = Wikifunctions.Call(
'Z6820',
[Z400K1],
[labelsPart],
[Z400K2],
[]);
const item = entities.get(Z400K1.Z6091K1);
const labels = item.Z6001K2.Z12K1;
for (const label of labels) {
if (label.Z11K1.Z60K1 === Z400K2.Z60K1) {
return label.Z11K2;
}}
return 'NOT FOUND';
}
</syntaxhighlight>
<translate>
Other things to note:
* Even though code implementations are now able to fetch Wikidata entities, it is recommended that they not be written to return entire entities. This is because of current limitations on the size of the value returned from a code implementation. To fetch an entire entity, it’s better to call the fetch function from a composition.
* Only one callback can execute at a time. For security reasons, it is not possible to use the concurrency features of JavaScript or Python to execute multiple callbacks in parallel.
* There is currently a 3 MiB limit on the size of Wikidata content that can be returned to a code implementation, by a single callback.
== Compositions == <!--T:22-->
<!--T:23-->
In this section, we give a concrete example on how to create an implementation in the form of a composition. Say we want to create an implementation for a Function which combines two input strings by putting a space between them, returning the result of that. Let’s assume the ZID of that function is <tvar name="1"><code>Z30000</code></tvar>.
<!--T:24-->
It is usually a good idea to first think about how to combine existing functions in order to create the desired output. Sometimes this might be trivial, and you can just go ahead with composing functions, but in many cases it is worthwhile to note the desired composition down.
<!--T:25-->
For example, for the given Function, we could use the existing Function <tvar name="1">{{Z|Z10000}}</tvar>. That Function takes two strings and makes one string out of them. But we need to add a space in between. So we first concatenate a space to the end of the first string, and then concatenate the second string to the result of that first concatenation. So our composition could be noted down like this:
</translate>
<syntaxhighlight lang="prolog">
join_strings( join_strings( Z30000K1, " " ), Z30000K2 )
</syntaxhighlight>
<translate>
<!--T:80-->
There are multiple ways to write a composition: notice that the same thing could be accomplished with:
</translate>
<syntaxhighlight lang="prolog">
join_strings( Z30000K1, join_strings( " ", Z30000K2 ) )
</syntaxhighlight>
<translate>
<!--T:81-->
An alternative implementation could also use the existing Function <tvar name="1">{{Z|Z15175}}</tvar>, so your composition could be:
</translate>
<syntaxhighlight lang="prolog">
join_with_separator( Z30000K1, Z30000K2, " " )
</syntaxhighlight>
<translate>
<!--T:82-->
As you can see, there are multiple ways to accomplish this, so take your time and explore the existing functions available in the <tvar name="1">{{ll|Wikifunctions:Catalogue}}</tvar>.
<!--T:83-->
Let's try to create the second example, <tvar name="1"><code>join_strings(Z30000K1, join_strings(" ", Z30000K2))</code></tvar>.
<!--T:84-->
In order to create this:
</translate>
# <translate><!--T:85--> Start adding an implementation by clicking on the "+" button in the "Implementations" table from your Function page.</translate>
# <translate><!--T:86--> Make sure that the option "composition" under "Implementation" is selected.</translate>
# <translate><!--T:87--> Click on the "›" icon or click the "Select Function" link to expand the function details.</translate>
# <translate><!--T:88--> Under "function" search for the name of the outermost function you want to use, which in this example is "join two strings". Then, select the wanted function from the dropdown list.</translate>
# <translate><!--T:89--> You will see two new fields, one for each of the arguments needed for the selected function.</translate>
# <translate><!--T:90--> For the first argument, we want to select the first input to our function:</translate>
## <translate><!--T:91--> Next to "first string", click on the "…" button and select "Argument reference".</translate>
## <translate><!--T:92--> Under "key id" you can now select the first string of your function from the dropdown, which contains all available inputs.</translate>
# <translate><!--T:93--> For the second argument, we want to use the result of another call to "join two strings":</translate>
## <translate><!--T:94--> Next to "second string", click on the "…" button and select "Function call".</translate>
## <translate><!--T:95--> Under "function", search and select the function you want to call, which is again "join two strings".</translate>
## <translate><!--T:96--> For this inner function call, configure the "first string" by simply typing a white space in the text field, and configure the "second string" as you did for step 6: change it using the "…" button to "Argument reference", and then select the second argument in the dropdown.</translate>
<translate>
<!--T:97-->
Your composition is now complete!
<!--T:98-->
You can expand and collapse the details using the chevron buttons to see how it looks. If you already have Tests as recommended in the [[<tvar name="1">#Practice Test-Driven Development</tvar>|TDD]] section above, click on the circular arrow in the Tests panel and see if your implementation passes the tests. Once your composition passes the tests, go ahead and publish it.
</translate>
[[File:Composition implementation expanded.png|frame|center|alt=<translate><!--T:99--> A Wikifunctions composition implementation in its expanded view</translate>|<translate><!--T:100--> A Wikifunctions composition implementation in its expanded view</translate>]]
[[File:Composition implementation collapsed.png|frame|center|alt=<translate><!--T:101--> A Wikifunctions composition implementation in its collapsed view</translate>|<translate><!--T:102--> A Wikifunctions composition implementation in its collapsed view</translate>]]
<translate>
== Wikifunctions error handling == <!--T:103-->
<!--T:104-->
As a Wikifunctions function creator, you might want to warn the user calling your function when something goes wrong in the code, or when their inputs do not fit a certain criteria. For example, if your Function expects a string input to contain a name, you might want to check that the name is not empty and, if it is, show an error message that the person using your Function can understand.
<!--T:105-->
For this purpose, you can use <tvar name="1"><code>Wikifunctions.Error()</code></tvar> from your code implementations or the function <tvar name="2">{{Z|Z851}}</tvar> from your compositions.
<!--T:106-->
In this section you will learn:
</translate>
* <translate><!--T:107--> How to throw errors from both code and composition implementations,</translate>
* <translate><!--T:108--> how to write tests for error cases, and</translate>
* <translate><!--T:109--> how to catch and handle errors thrown by functions that you are using in your compositions.</translate>
<translate>
=== Throwing errors from code implementations === <!--T:110-->
<!--T:111-->
When writing code, both from JavaScript and Python, you can use <tvar name="1"><code>Wikifunctions.Error()</code></tvar> to end the execution with a wanted error.
<!--T:112-->
<tvar name="1"><code>Wikifunctions.Error()</code></tvar> has two parameters:
</translate>
# <translate><!--T:113--> Error type: a string containing the ZID of the error type you want to return.</translate>
# <translate><!--T:114--> Error arguments: a list of string arguments to build the error.</translate>
<translate>
<!--T:115-->
Let's go one by one:
==== Error type ==== <!--T:116-->
<!--T:117-->
An error type is an object that describes a kind of error that could happen in the system. There are a number of built-in error types but you can also build other error types that are more suited to your use case. When using errors, the best idea is to browse through the available error types, which can be explored in [[<tvar name="1">Special:ListObjectsByType/Z50</tvar>|this list]].
<!--T:118-->
If there are no errors that fit your case, create a new one by going to the create page, and selecting "Error type" in the type selector. Then, set the necessary fields:
</translate>
[[File:Error type.png|thumb|alt=<translate><!--T:119--> Error type creation in Wikifunctions</translate>|<translate><!--T:120--> To create new Error type (Z50), edit the label and add the necessary keys.</translate>]]
* <translate><!--T:121--> '''Label''' – This is the main title of the error, which should contain a short but descriptive message. Set the error label on the right-side box titled "About".</translate>
* <translate><!--T:122--> '''Keys''' – Keys contain additional information about what caused the error. For example, if an input had the wrong format, you might want to inform the user of what was the input content when raising the error. To use them in your implementations, keys should be strings. To create a key, click on the "[+]" icon below "keys", select "String" under "value type", and add a label that describes it appropriately, for example "current input". Once you have all the necessary keys, you can Publish your error type and keep the ID of the newly created object.</translate>
<translate>
==== Error arguments ==== <!--T:123-->
<!--T:124-->
Error arguments correspond to the keys of the Error type, and they should provide additional information to understand the error. Error arguments should always be Strings.
==== Using Wikifunctions.Error() ==== <!--T:125-->
<!--T:126-->
Say that you want an error to be thrown when either your first or your second input are empty. You have already created the error type, and the assigned ZID was <tvar name="1"><code>Z30005</code></tvar>. Your error type has two string keys:
</translate>
* <translate><!--T:127--> Input key: contains the key of the failing input</translate>
* <translate><!--T:128--> Input value: contains the current value of the failing input</translate>
<translate>
<!--T:129-->
To raise an error in your JavaScript implementation you should do something like this:
</translate>
<syntaxhighlight lang="javascript">
function Z30000( Z30000K1, Z30000K2 ) {
if ( trim( Z30000K1 ) === '' ) {
// <translate nowrap><!--T:309--> If the first input is empty, raise error <tvar name="1">Z30005</tvar></translate>
// <translate nowrap><!--T:310--> with two string args: [ first input key, first input value ]</translate>
Wikifunctions.Error( 'Z30005', [ "Z30000K1", Z30000K1 ] )
}
if ( trim( Z30000K2 ) === '' ) {
// <translate nowrap><!--T:311--> If the second input is empty, raise error <tvar name="1">Z30005</tvar></translate>
// <translate nowrap><!--T:312--> with two string args: [ second input key, second input value ]</translate>
Wikifunctions.Error( 'Z30005', [ "Z30000K2", Z30000K2 ] )
}
return Z30000K1 + " " + Z30000K2;
}
</syntaxhighlight>
<translate>
<!--T:130-->
To raise an error in your Python implementation you should do something like this:
</translate>
<syntaxhighlight lang="python3">
def Z30000(Z30000K1, Z30000K2):
if Z30000K1.strip() == "":
# <translate nowrap><!--T:313--> If the first input is empty, raise error <tvar name="1">Z30005</tvar></translate>
# <translate nowrap><!--T:314--> with two string args: [ first input key, first input value ]</translate>
Wikifunctions.Error("Z30005", ["Z30000K1", Z30000K1])
if Z30000K2.strip() == "":
# <translate nowrap><!--T:315--> If the second input is empty, raise error <tvar name="1">Z30005</tvar></translate>
# <translate nowrap><!--T:316--> with two string args: [ first input key, first input value ]</translate>
Wikifunctions.Error("Z30005", ["Z30000K2", Z30000K2])
return Z30000K1 + " " + Z30000K2
</syntaxhighlight>
<translate>
<!--T:131-->
Remember that calling <tvar name="1"><code>Wikifunctions.Error()</code></tvar> ends the execution!
=== Throwing errors from compositions === <!--T:132-->
<!--T:133-->
If you are creating a composition implementation, you can throw an error by calling the special function <tvar name="1">{{Z|Z851}}</tvar>.
==== Throw Error function (Z851) ==== <!--T:134-->
<!--T:135-->
The <tvar name="1">{{Z|Z851}}</tvar> function is similar to the <tvar name="2"><code>Wikifunctions.Error()</code></tvar> method and takes two arguments:
</translate>
* <translate><!--T:136--> '''Error type''' – A reference to the Error type you want to raise</translate>
* <translate><!--T:137--> '''Error parameters''' – A list with the arguments to create your Error, which should also be Strings.</translate>
<translate>
==== Using Throw Error ==== <!--T:138-->
<!--T:139-->
Say you want to modify your composition so that it first checks that the arguments are not empty, and raises an error when it finds an empty one. Then, if none of them are empty, it runs the original composition, which is:
</translate>
<syntaxhighlight lang="prolog">
join_with_separator( Z30000K1, Z30000K2, " " )
</syntaxhighlight>
<translate>
<!--T:140-->
To do this, you need to create conditional paths, for which you can use the <tvar name="1">{{Z|Z802}}</tvar> function. Think of it like this:
</translate>
* <translate><!--T:141--> If the first argument is empty, throw an error for the first argument</translate>
* <translate><!--T:142--> Else, proceed to check the second argument</translate>
* <translate><!--T:143--> If the second argument is empty, throw an error for the second argument</translate>
* <translate><!--T:144--> Else, proceed with the success path and return the joint strings with the space separator</translate>
<translate>
<!--T:145-->
Or in functional pseudo code:
</translate>
<syntaxhighlight lang="prolog">
if (
is_empty_string( Z30000K1 ),
throw_error( Z30005, [ "Z30000K1", Z30000K1 ] ),
if(
is_empty_string( Z30000K2 ),
throw_error( Z30005, [ "Z30000K2", Z30000K2 ] ),
join_with_separator( Z30000K1, Z30000K2, " " )
)
)
</syntaxhighlight>
<translate>
<!--T:146-->
Let's create this step by step:
</translate>
# <translate><!--T:147--> Start adding an implementation by clicking on the "+” button in the "Implementations" table from your Function page.</translate>
# <translate><!--T:148--> Make sure that the option "composition" under "Implementation" is selected.</translate>
# <translate><!--T:149--> Click on the "›” icon or click the "Select Function" link to expand the function details.</translate>
# <translate><!--T:150--> Under "function" search and select the outermost function you want to use, which in this case is "if".</translate>
# <translate><!--T:151--> Check the validity of the first argument:</translate>
## <translate><!--T:152--> Next to "condition", click on the "…" button and select "function call"</translate>
## <translate><!--T:153--> Under "function", search and select the function "is empty string"</translate>
## <translate><!--T:154--> Next to "input", click on the "…" button and select "argument reference"</translate>
## <translate><!--T:155--> Under "key id", select the first input (e.g. "first string")</translate>
## <translate><!--T:156--> You can now collapse the "condition" function call if you want, by clicking on the down-chevron next to "condition". You should see something like "f(x) is empty string( → first string )"</translate>
# <translate><!--T:157--> Throw error if the condition is true:</translate>
## <translate><!--T:158--> Next to "then", click on the "…" button and select "function call"</translate>
## <translate><!--T:159--> Under "function", search and select the function "Throw Error"</translate>
## <translate><!--T:160--> Under "error type", search and select your error type (you can directly input the error ID if you know it, e.g. Z30005)</translate>
## <translate><!--T:161--> Under "error parameters", add two items by clicking on the "+" button</translate>
## <translate><!--T:162--> For "Item 1" (offending argument key), set its type to "String" and write the argument identifier (e.g. "first input", or "Z30000K1")</translate>
## <translate><!--T:163--> For "Item 2" (offending argument value), click on the "…" next to "Item 2" and select "argument reference"</translate>
## <translate><!--T:164--> Under "key id", select the first input (e.g. "first string")</translate>
## <translate><!--T:165--> You can now collapse the "then" function call if you want, by clicking on the down-chevron next to "then". You should see something like "f(x) Throw Error( Input was the wrong format, Typed list( Object, "first input", → first string ) )"</translate>
# <translate><!--T:166--> Continue to check the second argument if the first was good:</translate>
## <translate><!--T:167--> Next to "else", click on the "…" button and select "function call"</translate>
## <translate><!--T:168--> Under "function", search and select the function "if"</translate>
## <translate><!--T:169--> Set up "condition" to check the validity of the second argument by following the same process as described in step 5.</translate>
## <translate><!--T:170--> Set up "then" to throw an error for the second argument by following the same process as described in step 6.</translate>
# <translate><!--T:171--> Finally, set up the success path:</translate>
## <translate><!--T:172--> Next to the nested "else", click on the "…" button and select "function call"</translate>
## <translate><!--T:173--> Under "function", search and select the successful function, which in this case can be "join strings with separator"</translate>
## <translate><!--T:174--> Next to "first string", click on the "…" button and set it to "argument reference", then select "first string"</translate>
## <translate><!--T:175--> Next to "second string", click on the "…" button and set it to "argument reference", then select "second string"</translate>
## <translate><!--T:176--> Under "separator" add a space into the text field</translate>
<translate>
<!--T:177-->
The resulting function call should look like this:
</translate>
[[File:Throw error expanded.png|frame|center|alt=<translate><!--T:178--> Wikifunctions composition using Throw Error function</translate>|<translate><!--T:179--> Wikifunctions composition using Throw Error function</translate>]]
[[File:Throw error collapsed.png|frame|center|alt=<translate><!--T:180--> Wikifunctions composition using Throw Error function, in its collapsed view</translate>|<translate><!--T:181--> Wikifunctions composition using Throw Error function, in its collapsed view</translate>]]
<translate>
=== Handling errors in compositions === <!--T:182-->
<!--T:183-->
While it is useful to allow functions to raise expected errors, it is crucial to be able to handle errors in your compositions in order to safely use these functions.
<!--T:184-->
Say you want to create a new function "full name of a person" – we will refer to it with the ZID <tvar name="1"><code>Z30010</code></tvar>. This function should return the full name of a person given a first and last names, but if any of the two fields are empty, it should return the text "Unknown" instead.
<!--T:185-->
You could create a composition using our example function "Join two strings with a space" or <tvar name="1"><code>Z30000</code></tvar> to generate the name. If any of the inputs are empty, you know that <tvar name="1"><code>Z30000</code></tvar> will throw an error of type <tvar name="2"><code>Z30005</code></tvar>. Using the function <tvar name="3">{{Z|Z850}}</tvar> as a wrapper, you can attempt the join operation and intercept a possible error to simply return "Unknown" whenever it occurs.
==== Try-Catch function (Z850) ==== <!--T:186-->
<!--T:187-->
The <tvar name="1">{{Z|Z850}}</tvar> function is built-in with ZID <tvar name="2"><code>Z850</code></tvar> and takes three arguments:
</translate>
* <translate><!--T:188--> '''Function call''' – The initial function call to run. If nothing goes wrong, the response will be the result of this function call.</translate>
* <translate><!--T:189--> '''Error type''' – An error type to catch in case it is thrown during the execution of the first function call.</translate>
* <translate><!--T:190--> '''Error handler''' – A function call that will be run in case the error specified above is caught during the execution of the initial function call. If that happens, the result of the error handler will be the value returned.</translate>
<translate>
==== Using Try-Catch ==== <!--T:191-->
<!--T:192-->
Once we have all the functions for our composition, we can craft it like this:
</translate>
<syntaxhighlight lang="prolog">
try_catch(
join_with_space( Z30010K1, Z30010K2 ),
Z30005,
echo( "Unknown" )
)
</syntaxhighlight>
<translate>
<!--T:193-->
This means that:
</translate>
* <translate><!--T:194--> The "Join two strings with a space" function will be tried with the two inputs and, if everything goes well, the output of this function will be returned</translate>
* <translate><!--T:195--> If any of the inputs are blank, "Join two strings with a space" with raise an error of type <tvar name="1"><code>Z30005</code></tvar></translate>
* <translate><!--T:196--> Our <tvar name="1">{{Z|Z850}}</tvar> will then detect this error and run the <tvar name="2">{{Z|Z801}}</tvar> function to return "Unknown"</translate>
<translate>
<!--T:197-->
Let's create this step by step:
</translate>
# <translate><!--T:198--> Start adding an implementation by clicking on the "+" button in the "Implementations" table from your Function page.</translate>
# <translate><!--T:199--> Make sure that the option "composition" under "Implementation" is selected.</translate>
# <translate><!--T:200--> Click on the "›” icon or click the "Select Function" link to expand the function details.</translate>
# <translate><!--T:201--> Under "function" search and select the outermost function you want to use, which in this case is "Try-Catch".</translate>
# <translate><!--T:202--> Set the main function call:</translate>
## <translate><!--T:203--> Under the field where the "Try-Catch" function is selected, next to the "function call" key, click on the "…" button and select "function call"</translate>
## <translate><!--T:204--> Under "function" search and select the function "join two strings with space"</translate>
## <translate><!--T:205--> Next to "first string", click on the "…" button and select "argument reference", then select the "first name" argument from the dropdown.</translate>
## <translate><!--T:206--> Next to "second string", click on the "…" button and select "argument reference", then select the "second name" argument from the dropdown.</translate>
# <translate><!--T:207--> Select the error to catch:</translate>
## <translate><!--T:208--> Under "error type", search and select "bad string input" – you can search directly by its ZID <tvar name="1"><code>Z30005</code></tvar></translate>
# <translate><!--T:209--> Set the error handler function call:</translate>
## <translate><!--T:210--> Next to "error handler", click on the "…" button and select "function call"</translate>
## <translate><!--T:211--> Under "function", search and select the function "echo"</translate>
## <translate><!--T:212--> Under "input" and "type", search and select the type "String"</translate>
## <translate><!--T:213--> Now, under "input", type "Unknown" in the text field</translate>
<translate>
<!--T:214-->
The resulting function should look like this:
</translate>
[[File:Try catch expanded.png|frame|center|alt=<translate><!--T:215--> Wikifunctions composition using Try-catch function, in expanded mode</translate>|<translate><!--T:216--> Wikifunctions composition using Try-catch function, in expanded mode</translate>]]
[[File:Try catch collapsed.png|frame|center|alt=<translate><!--T:217--> Wikifunctions composition using Try-catch function, in collapsed mode</translate>|<translate><!--T:218--> Wikifunctions composition using Try-catch function, in collapsed mode</translate>]]
<translate>
=== Testing your failure use cases === <!--T:219-->
<!--T:220-->
As we introduced in the above section about [[<tvar name="1">#Practice Test-Driven Development</tvar>|practicing TDD]], it's important to test not only the most common paths, but also the possible edge cases. It is equally important to test failure behavior. In this section we will give you the tools necessary to test that your function fails with a given set of inputs, and that the error thrown is the expected one.
<!--T:221-->
To do that, you will need other two system functions:
==== Is error type (Z852) ==== <!--T:222-->
<!--T:223-->
The <tvar name="1">{{Z|Z852}}</tvar> function is built-in with ZID <tvar name="2"><code>Z852</code></tvar> and takes two arguments:
</translate>
* <translate><!--T:224--> '''Error''' – An <tvar name="1">{{Z|Z5}}</tvar> object, which can be thrown by a failing call. An error instance has a type and a value.</translate>
* <translate><!--T:225--> '''Error type''' – A reference to an <tvar name="1">{{Z|Z50}}</tvar> which will be compared to the type of the Error passed as a first argument. If that's the case, the function will return true.</translate>
<translate>
==== Get error thrown by function call (Z853) ==== <!--T:226-->
<!--T:227-->
The <tvar name="1">{{Z|Z853}}</tvar> function is built-in with ZID <tvar name="2"><code>Z853</code></tvar> and takes one argument:
</translate>
* <translate><!--T:228--> '''Function call''' – A function call which can either return a successful value of any type, or throw an error.</translate>
<translate>
<!--T:229-->
This function returns a <tvar name="1">{{Z|Z882}}</tvar> with a <tvar name="2">{{Z|Z40}}</tvar> in first place and an <tvar name="3">{{Z|Z1}}</tvar> in the second:
</translate>
* <translate><!--T:230--> If the Function call runs successfully and hence does not throw any error, the returned pair will contain False in the first place, and void in the second.</translate>
* <translate><!--T:231--> If the Function call throws an error, the returned pair will contain True in the first place, and the caught error in the second.</translate>
<translate>
<!--T:232-->
To use this function in your compositions, you might need to use the additional functions:
</translate>
* <translate><!--T:233--> <tvar name="1">{{Z|Z821}}</tvar>, and</translate>
* {{Z|Z822}}
<translate>
==== Testing errors ==== <!--T:234-->
<!--T:235-->
Say our target function, "Join two strings with a space" or <tvar name="1"><code>Z30000</code></tvar>, throws an error of type <tvar name="2"><code>Z30005</code></tvar> and we want to test this behavior. To do that we need to:
</translate>
* <translate><!--T:236--> Throw a failing function call</translate>
* <translate><!--T:237--> Get the error using the function <tvar name="1">{{Z|Z853}}</tvar></translate>
* <translate><!--T:238--> Check that the error is the right type with <tvar name="1">{{Z|Z852}}</tvar></translate>
<translate>
<!--T:239-->
Tests have two fields:
</translate>
* <translate><!--T:240--> '''Call''' – A function call that will produce an output with the inputs you want to test. This call will return a value.</translate>
* <translate><!--T:241--> '''Result validation''' – A function call that will validate that the value returned by the call above is the expected one. The first argument of this function call will be automatically assigned to take the return value of the first call.</translate>
<translate>
<!--T:242-->
For step-by-step instructions on how to create tests, see <tvar name="1">{{ll|Wikifunctions:Introduction#Create_tests}}</tvar>.
<!--T:243-->
In our example, we can structure it like this — but this is not the only way!
<!--T:244-->
The call, which will return an <tvar name="1">{{Z|Z5}}</tvar> object:
</translate>
<syntaxhighlight lang="prolog">
error = get_second_element_of_typed_list(
get_error_thrown_by(
join_strings_by_whitespace( "", "not empty" )
)
)
</syntaxhighlight>
<translate>
<!--T:245-->
And the result validation, which will take the <tvar name="1">{{Z|Z5}}</tvar> object as its first argument:
</translate>
<syntaxhighlight lang="prolog">
is_error_type( error, Z30005 )
</syntaxhighlight>
<translate>
<!--T:246-->
Let's do this step by step:
</translate>
# <translate><!--T:247--> Start adding a test by clicking on the "+" button in the "Tests" table from your Function page. The "call" and "result validation" fields already have some functions pre-set, but to test the errors we will need to change them.</translate>
# <translate><!--T:248--> First, let's set the call:</translate>
## <translate><!--T:249--> Under "call", click the "›" chevron button to expand the function call.</translate>
## <translate><!--T:250--> Under "function", edit the field and search and select the function "Get second element of a typed pair"</translate>
## <translate><!--T:251--> Once selected, next to "Typed pair", click on the "…" button and select "function call"</translate>
## <translate><!--T:252--> Under "function", search and select the function "Get error thrown by function call"</translate>
## <translate><!--T:253--> Next to "function call", click on the "…" button and select "function call"</translate>
## <translate><!--T:254--> Under "function", search and select the function "Join two strings with a space" (or by ZID <tvar name="1"><code>Z30000</code></tvar>)</translate>
## <translate><!--T:255--> Now set the inputs so that they cause a failure: at least one of them should be empty.</translate>
## <translate><!--T:256--> You can now collapse your "call" by clicking again on the down-chevron button if you want!</translate>
# <translate><!--T:257--> Next, let's set the result validation:</translate>
## <translate><!--T:258--> Under "result validation", click the "›" chevron button to expand the function call.</translate>
## <translate><!--T:259--> Under "function", edit the field and search and select the function "Is error type"</translate>
## <translate><!--T:260--> Now you will only be asked to configure the second argument. Under "error type", search and select your <tvar name="1"><code>Z30005</code></tvar> error type.</translate>
# <translate><!--T:261--> And you are done! You can now click the circular arrow in the "Implementations" box and you should see green checks.</translate>
<translate>
<!--T:262-->
If everything went right, you can now save your test. It should look like this:
</translate>
[[File:Get error expanded.png|frame|center|alt=<translate><!--T:263--> Testing a failure using Get error and Is error type functions, in expanded mode</translate>|<translate><!--T:264--> Testing a failure using Get error and Is error type functions, in expanded mode</translate>]]
[[File:Get error collapsed.png|frame|center|alt=<translate><!--T:265--> Testing a failure using Get error and Is error type functions, in collapsed mode</translate>|<translate><!--T:266--> Testing a failure using Get error and Is error type functions, in collapsed mode</translate>]]
<translate>
== Debugging your implementations == <!--T:267-->
<!--T:268-->
Sometimes things can go wrong. A function might behave differently than expected or a value might not look quite right. Sometimes implementations are really complex and, because they are run in a sandboxed environment, it can seem really difficult to debug. To help understand what's going on inside a function call, Wikifunctions includes a small set of debugging tools.
<!--T:269-->
These tools don't change the result of a function, but will add extra information to the returned metadata, which you can observe after running the function. You can use <tvar name="1"><code>Wikifunctions.Debug()</code></tvar> from your code implementations or the function <tvar name="2">{{Z|Z854}}</tvar> from your compositions.
<!--T:270-->
In this section you will learn:
</translate>
* <translate><!--T:271--> How to add debug messages from both code and composition implementations,</translate>
* <translate><!--T:272--> how to inspect the metadata manually or via the UI to inspect these logs.</translate>
<translate>
=== Debugging your code implementations === <!--T:273-->
<!--T:274-->
When writing code, both from JavaScript and Python3, you can use <tvar name="1"><code>Wikifunctions.Debug()</code></tvar> to add a message to your debugging log and continue the execution.
<!--T:275-->
<tvar name="1"><code>Wikifunctions.Debug()</code></tvar> has one parameter, which is generally expected to be a string. However, any other object passed as parameter will get directly converted into a string.
<!--T:276-->
If we want to add debug logs to our code implementations for our "Join two strings with a space" example function, we can do, in JavaScript:
</translate>
<syntaxhighlight lang="JavaScript">
function Z30000( Z30000K1, Z30000K2 ) {
if ( trim( Z30000K1 ) === '' ) {
Wikifunctions.Debug( `first input is empty "${ Z30000K1 }"` );
Wikifunctions.Error( 'Z30005', [ "Z30000K1", Z30000K1 ] )
}
if ( trim( Z30000K2 ) === '' ) {
Wikifunctions.Debug( `second input is empty "${ Z30000K2 }"` );
Wikifunctions.Error( 'Z30005', [ "Z30000K2", Z30000K2 ] )
}
Wikifunctions.Debug( "both inputs are fine" );
return Z30000K1 + " " + Z30000K2;
}
</syntaxhighlight>
<translate>
<!--T:277-->
And the same in your Python3 implementation will be:
</translate>
<syntaxhighlight lang="python3">
def Z30000(Z30000K1, Z30000K2):
if Z30000K1.strip() == "":
Wikifunctions.Debug( 'first input is empty "'+Z30000K1+'"' )
Wikifunctions.Error("Z30005", ["Z30000K1", Z30000K1])
if Z30000K2.strip() == "":
Wikifunctions.Debug( 'second input is empty "'+Z30000K2+'"' )
Wikifunctions.Error("Z30005", ["Z30000K2", Z30000K2])
Wikifunctions.Debug( 'both inputs are fine' )
return Z30000K1 + " " + Z30000K2
</syntaxhighlight>
<translate>
<!--T:278-->
This way, no matter what happens, we will be adding one message to your debugging logs:
</translate>
* <translate><!--T:279--> If the function call fails when checking on the first or second input, the result of the execution will be a failure, but it will contain one informative log about what branch caused the failure.</translate>
* <translate><!--T:280--> If the function call succeeds—because both inputs are valid—the function call will return the joined string, but the returned metadata will also contain a debug log.</translate>
<translate>
=== Debugging your compositions === <!--T:281-->
<!--T:282-->
To support debugging compositions, Wikifunctions provides the built-in function <tvar name="1">{{Z|Z854}}</tvar>. This function allows you to attach debug messages to the execution of any function call that generates the final output. The debug logs collected during the evaluation are returned as part of the execution metadata, under the <tvar name="2"><code>executorDebugLogs</code></tvar> key.
==== Add debug log to function call (Z854) ==== <!--T:283-->
<!--T:284-->
The <tvar name="1">{{Z|Z854}}</tvar> function is built-in with ZID <tvar name="2"><code>Z854</code></tvar> and takes two arguments:
</translate>
* <translate><!--T:285--> '''Function call''' – Any composition you want to execute.</translate>
* <translate><!--T:286--> '''Debug log''' – A string message that will be recorded if the given function call is evaluated.</translate>
<translate>
<!--T:287-->
When the wrapped function call runs, the provided message is added to the execution logs. If that function call is not executed, or its execution is not part of the final output, its debug log will not appear in the final result metadata.
<!--T:288-->
You will benefit from this built-in if you want to observe:
</translate>
* <translate><!--T:289--> Which branch of a conditional was executed, or</translate>
* <translate><!--T:290--> the order of evaluation in a composition.</translate>
<translate>
==== Using Add debug log to function call ==== <!--T:291-->
<!--T:292-->
Say that you want to add debug logs to our example function "Join two strings with a space" or <tvar name="1"><code>Z30000</code></tvar>, so that different messages are added to the different possible outcomes. You could use our debugging builtin like this:
</translate>
<syntaxhighlight lang="prolog">
if (
is_empty_string( Z30000K1 ),
add_debug_log( throw_error( Z30005, ... ), 'failed on first input' )
if(
is_empty_string( Z30000K2 ),
add_debug_log( throw_error( Z30005, ... ), 'failed on second input' ),
add_debug_log(
join_with_separator( Z30000K1, Z30000K2, " " ),
'both inputs are ok!'
)
)
)
</syntaxhighlight>
<translate>
<!--T:293-->
This way,
</translate>
* <translate><!--T:294--> when called with an empty first input, the function will return a failed response, and the metadata will contain an <tvar name="1"><code>executorDebugLogs</code></tvar> entry with the "failed on first input" log.</translate>
* <translate><!--T:295--> When called with an empty second input, the call will also fail, but the logged message will be "failed on second input"</translate>
* <translate><!--T:296--> When called with valid inputs, the function will return a successful response, and additionally the metadata will contain "both inputs are ok" in its <tvar name="1"><code>executorDebugLogs</code></tvar> key.</translate>
<translate>
<!--T:297-->
This is the way this composition would look:
</translate>
[[File:Add debug log expanded.png|frame|center|alt=<translate><!--T:298--> Composition implementation using Add debug logs to log all possible execution paths</translate>|<translate><!--T:299--> Composition implementation using Add debug logs to log all possible execution paths</translate>]]
<translate>
=== Accessing execution debug logs === <!--T:300-->
<!--T:301-->
Whether your execution logs are added via <tvar name="1"><code>Wikifunctions.Debug()</code></tvar> or via the <tvar name="2">{{Z|Z854}}</tvar> built-in function, they are returned as part of the response metadata. To see the logs, once you run your function, click on the "Details" button that appears at the bottom of the "Result" section.
<!--T:302-->
The error and debug information will appear at the top of the "Details" dialog.
<!--T:303-->
This is what you would see when running the composition from our previous example with valid and invalid inputs:
</translate>
{| class="wikitable"
| [[File:Execution logs success.png|frameless|center|alt=<translate><!--T:304--> Function metadata dialog for a successful execution with debug logs</translate>]]
| [[File:Execution logs failure.png|frameless|center|alt=<translate><!--T:305--> Function metadata dialog for a failed execution with debug logs</translate>]]
|-
| <translate><!--T:306--> Function metadata dialog for a successful execution: shows no errors, but displays the successful execution log: ''"both inputs are ok!"''</translate>
| <translate><!--T:307--> Function metadata dialog for a failed execution: shows the error information, and the additional execution log for the first failure branch: ''"failed on first input"''</translate>
|}
[[Category:How to create implementations| {{#translation:}}]]
by1j73qdv7xcdjg4m978je6ydb4s21e
307371
307370
2026-09-02T05:46:31Z
DMartin (WMF)
24
/* Coming soon: Calling another Wikifunctions function */ A few minor formatting adjustments
307371
wikitext
text/x-wiki
<languages/>
<translate>
<!--T:1-->
This page provides a more detailed guide to '''creating implementations''', beyond the overview at <tvar name="1">{{ll|Wikifunctions:Introduction}}</tvar>.
== Types of Implementations == <!--T:47-->
<!--T:48-->
In Wikifunctions, an '''implementation''' can take one of two main forms: '''code''' or '''composition'''. A code implementation directly expresses the function’s logic in any of the available programming languages (currently, Python3 or JavaScript). It’s most useful when the function’s behavior can’t easily be built from existing Wikifunctions, or when precise control over data processing is needed.
<!--T:49-->
A composition implementation, on the other hand, defines the function entirely by combining other existing functions, without writing code. Compositions are easier to understand, reuse, and translate into other languages automatically, but they depend on suitable building blocks already being available and often are less performant. In general, start by checking whether your goal can be achieved through composition; if it can’t, or if performance or fine-grained logic matters, choose a code implementation instead.
<!--T:50-->
There's a third type of implementation: '''built-ins'''. These are run by system-built code, and are not editable. Most likely all pre-defined functions will have a built-in implementation. In such cases, when opening the implementation page, you will see a message stating ''"<tvar name="1">{{int|wikilambda-implementation-selector-none}}</tvar>"''
== Practice Test-Driven Development == <!--T:51-->
<!--T:52-->
'''Test-Driven Development''', or '''TDD''', is a way of creating software where you write tests before you write the actual code. Tests are just a way of understanding what your function is supposed to do by listing examples and how they should work.
<!--T:53-->
In Wikifunctions, writing tests first offers significant benefits. If you are working on an implementation, you can run your code against the existing tests to check that it behaves as expected. This makes it easier to catch errors early before even publishing your implementation. Tests are also a powerful way to describe the function you need. By writing tests, '''you clearly communicate the expected behavior''', and the community can step in and help with the implementation, or create alternative implementations.
<!--T:54-->
Imagine you want to implement a Function that combines two strings with a space in between. A basic test for this might look like:
</translate>
<syntaxhighlight lang="prolog">
join_with_space( "Hello", "world" ) => "Hello world"
</syntaxhighlight>
<translate>
<!--T:55-->
Once you have defined the basic behavior, it's important to '''think about edge cases'''—situations where the inputs are such that you might need some special behavior.
<!--T:56-->
For example, what if your first string ends in a space, or your second string starts with a space? Should the function keep all existing spaces and add another one, or should it return a neatly spaced result with just a single space between the words?
Depending on your requirements, you should build a test for such a case. For example, a test for this edge case could be either one of these — but not both!:
</translate>
<syntaxhighlight lang="prolog">
join_with_space( "Hello ", " world") => "Hello world"
</syntaxhighlight>
<translate>
<!--T:57-->
or ...
</translate>
<syntaxhighlight lang="prolog">
join_with_space( "Hello ", " world") => "Hello world"
</syntaxhighlight>
<translate>
<!--T:58-->
Make sure that all possible special cases are covered by your tests, and once you have them, make sure that they are all connected to the Function by selecting them and clicking "Connect".
== Code implementations == <!--T:59-->
</translate>
[[File:Code implementation.png|thumb|alt=<translate><!--T:60--> Wikifunctions code editor initialized with a function template</translate>|<translate><!--T:61--> When adding a new code implementation, the function template is initialized with the function and argument names</translate>]]
<translate>
<!--T:62-->
When creating an implementation using code, the Wikifunctions UI will set up a code editor with the selected language activated for syntax highlighting and validation. When the function to implement and the programming language are selected, this editor will be set with the correct function template: '''do not remove or edit this'''! Keep your code inside this function signature: if you need auxiliary functions, you can simply declare them inside your top-level function declaration.
=== Using input types in your code === <!--T:63-->
<!--T:64-->
Wikifunctions types <tvar name="1">{{Z|Z6}}</tvar> and <tvar name="2">{{Z|Z40}}</tvar> can be used as if they were native types in both JavaScript and Python3. For example, a String input can be concatenated or a Boolean be directly used in a logical expression. To use other types in your code implementations, you will have to look deeper into the type, figure out if it has a conversion to a native equivalent, and treat it accordingly.
<!--T:65-->
For example, let's say we want to write some Python code that handles an input of type <tvar name="1">{{Z|Z20420}}</tvar>. In the page for this type, let's look at its "type converters to code" and search for a Python one. The converter <tvar name="2">{{Z|Z20424}}</tvar> will be applied to our date input before our code, so looking at "native type" we know that our input will be a Python ''dict'' and looking at the implementation we can see the keys we can expect:
</translate>
<syntaxhighlight lang="python3">
return {
'K1': year,
'K2': month,
'K3': day
}
</syntaxhighlight>
<translate>
<!--T:66-->
When a type doesn't have a converter, you'll have to access its parts directly using its keys. For example, let's assume that your function <tvar name="1"><code>Z30000</code></tvar> has one input <tvar name="2"><code>Z30000K1</code></tvar> of type <tvar name="3">{{Z|Z11}}</tvar>. This type has two keys: <tvar name="4"><code>Z11K1</code></tvar> for the language (itself an object of type <tvar name="5">{{Z|Z60}}</tvar>), and <tvar name="6"><code>Z11K2</code></tvar> for the string value. Similarly, the language object has a key <tvar name="7"><code>Z60K1</code></tvar> for the language code. So, to get a string with the language code and the text, you can write:
</translate>
<syntaxhighlight lang="javascript">
function Z30000( Z30000K1 ) {
// <translate nowrap><!--T:308--> e.g. "en: some text"</translate>
return Z30000K1.Z11K1.Z60K1 + ": " + Z30000K1.Z11K2;
}
</syntaxhighlight>
<translate>
<!--T:67-->
For a quick reference of the available type conversions visit [[<tvar name="1">Special:MyLanguage/Wikifunctions:Execution targets#Default type conversion</tvar>|the default type conversion table]].
=== Returning the right outputs === <!--T:68-->
<!--T:69-->
Similarly to the way you treat inputs, outputs need to match the type specified in the function definition. Some can be treated as simply as native types, so any string output will be converted into a Wikifunctions <tvar name="1">{{Z|Z6}}</tvar> object and any native boolean returned by your implementation will be converted into a Wikifunctions <tvar name="2">{{Z|Z40}}</tvar> object.
<!--T:70-->
Those types that have "type converters from code" will apply the appropriate function to the output, in order to build the required type. Following the example of <tvar name="1">{{Z|Z20420}}</tvar>, the <tvar name="2">{{Z|Z20443}}</tvar> will transform the output from your implementation–a dict with K1, K2 and K3 keys–into its correct ZObject representation.
<!--T:71-->
For types that don't have converters from code, you can carefully build and return the output objects. For example, imagine that our function <tvar name="1"><code>Z30000</code></tvar> takes two string inputs: language code and text, and should return a <tvar name="2">{{Z|Z11}}</tvar> object. You can do this in Python by using the <tvar name="3"><code>ZObject</code></tvar> constructor:
</translate>
<syntaxhighlight lang="python3">
def Z30000(Z30000K1, Z30000K2):
lang_object = ZObject(
{"Z1K1": "Z9", "Z9K1": "Z60"},
Z60K1 = Z30000K1
)
return ZObject(
{"Z1K1": "Z9", "Z9K1": "Z11"},
Z11K1 = lang_object,
Z11K2 = Z30000K2
)
</syntaxhighlight>
<translate>
<!--T:72-->
Or in JavaScript:
</translate>
<syntaxhighlight lang="javascript">
function Z30000( Z30000K1, Z30000K2 ) {
const langObject = new ZObject(
new Map( [ [ "Z60K1", Z30000K1 ] ] ),
{ "Z1K1": "Z9", "Z9K1": "Z60" }
);
const monolingualKeys = new Map( [
[ "Z11K1", langObject ],
[ "Z11K2", Z30000K2 ]
] );
return new ZObject(
monolingualKeys,
{ "Z1K1": "Z9", "Z9K1": "Z11" }
);
}
</syntaxhighlight>
<translate>
<!--T:73-->
You can learn more about the <tvar name="1"><code>ZObject</code></tvar> class and other useful constructors in <tvar name="2">{{ll|Wikifunctions:Execution_targets#Custom_and_non-built-in_type_conversion}}</tvar>
</translate>{{phab|T392750}}<translate>
<!--T:317-->
As of 2026-05, trying to return a list of lists may fail, so you're not able to implement such functions in code.
=== Code in Python === <!--T:74-->
<!--T:3-->
In this section, we give a concrete example on how to create an implementation in the form of Code in Python. Say we want to create an implementation for a Function which combines two input strings by putting a space between them, returning the result of that. Let’s assume the ZID of that function is Z30000.
<!--T:5-->
The implementation is defined using the ZID of the function. So are the arguments of the function. So in the case of the function Z30000 with its two arguments, the function template should look like this:
</translate>
<syntaxhighlight lang="python3">
def Z30000(Z30000K1, Z30000K2):
</syntaxhighlight>
<translate>
<!--T:75-->
As we described before, we know that the arguments (<tvar name="1"><code>Z30000K1</code></tvar> and <tvar name="2"><code>Z30000K2</code></tvar>) are Strings, so we can treat them as simply as we use native strings in Python. Also, the function should return a String. For our example, we simply return the two arguments concatenated with a space in between:
</translate>
<syntaxhighlight lang="python3">
def Z30000(Z30000K1, Z30000K2):
return Z30000K1 + " " + Z30000K2
</syntaxhighlight>
<translate>
<!--T:9-->
Since this is Python, do not forget to indent this line.
<!--T:76-->
If you have followed our advice to [[<tvar name="1">#Practice Test-Driven Development</tvar>|practice TDD]], you will already have a set of tests that you know should work. If that's the case, while building your implementation you can click on the circular arrow in the Tests panel, and see if your implementation passes all of them.
<!--T:11-->
Remember that the runtime has no state. Don’t assume values for global or static variables. If you have further questions about what you can and cannot do in Python, ask on <tvar name="1">[[Wikifunctions:Python implementations]]</tvar>.
=== Code in JavaScript === <!--T:77-->
<!--T:13-->
In this section, we give a concrete example on how to create an implementation in the form of Code in JavaScript. Say we want to create an implementation for a Function which combines two input strings by putting a space between them, returning the result of that. Let’s assume the ZID of that function is <tvar name="1"><code>Z30000</code></tvar>.
<!--T:15-->
The implementation is defined using the ZID of the function. So are the arguments of the function. So in the case of the function <tvar name="1"><code>Z30000</code></tvar> with its two arguments, the function template should look like this:
</translate>
<syntaxhighlight lang="javascript">
function Z30000( Z30000K1, Z30000K2 ) {
}
</syntaxhighlight>
<translate>
<!--T:78-->
We know that the arguments (<tvar name="1"><code>Z30000K1</code></tvar> and <tvar name="2"><code>Z30000K2</code></tvar>) are Strings, so we can treat them as native strings in JavaScript. Also, the function should return a String. To complete our function, you can then add a line concatenating the input strings, like this:
</translate>
<syntaxhighlight lang="javascript">
function Z30000( Z30000K1, Z30000K2 ) {
return Z30000K1 + " " + Z30000K2;
}
</syntaxhighlight>
<translate>
<!--T:79-->
If you have tests as recommended in the [[<tvar name="1">#Practice Test-Driven Development</tvar>|TDD]] section above, click on the circular arrow in the Tests panel and see if your implementation passes all of them.
<!--T:21-->
Remember that the runtime has no state. Don’t assume values for global or static variables. If you have further questions about what you can and cannot do in JavaScript, ask on <tvar name="1">[[Wikifunctions:JavaScript implementations]]</tvar>.
=== Coming soon: Calling another Wikifunctions function ===
'''September 1, 2026: This subsection previews a capability that is not yet available, but will be deployed soon.'''
A code implementation can call certain other Wikifunctions functions, receive the output of the call, and use that output in further processing. We refer to such calls as callbacks. At present, due to security and performance concerns, only the following built-in Wikidata fetch and search functions can be called in this way: {{Z|Z6820}}, {{Z|Z6821}}, {{Z|Z6822}}, {{Z|Z6824}}, {{Z|Z6825}}, {{Z|Z6826}}, {{Z|Z6830}}, and {{Z|Z6831}}. This capability is in an initial stage of deployment; we hope to allow calls to a broader range of functions in the future.
Let’s look at a JavaScript implementation containing a callback. This implementation fetches an item from Wikidata, extracts the label of that item in a given language, and returns the label string. The item to fetch is given by argument <code>Z400K1</code>, and the language is given by <code>Z400K2</code>.
</translate>
<syntaxhighlight lang="javascript">
function Z400( Z400K1, Z400K2 ) {
const item = Wikifunctions.Call('Z6821', Z400K1);
for (const label of item.Z6001K2.Z12K1) {
if (label.Z11K1.Z60K1 === Z400K2.Z60K1) {
return label.Z11K2;
}}
return 'NOT FOUND';
}
</syntaxhighlight>
<translate>
A callback is made by calling <code>Wikifunctions.Call</code>, as shown in the example. The first argument to <code>Wikifunctions.Call</code> is always the ZID of the function to be called – in this case, {{Z|Z6821}}, which takes a single argument. Following that, the arguments to be passed to that function are listed, separated by commas. Here, that argument, <code>Z400K1</code>, is the same value that was passed to the function <code>Z400</code>. This is a common pattern of argument passing to callbacks, but their arguments can also be built using the <code>ZObject</code> constructor (as explained above), or obtained in other ways.
The value of <code>Z400K1</code> would be an instance of {{Z|Z6091}}, containing the QID of the item to be fetched. Line 2 of the example calls <code>Z6821</code> to fetch that item from Wikidata and assigns the resulting ZObject to the const <code>item</code>. The remaining code iterates over the item’s labels until it finds the one matching the language given by <code>Z400K2</code>.
For the first example above, we have used <code>Z6821</code> for simplicity. However - unless an entire entity is needed by the implementation, it is strongly recommended to use <code>Z6820</code> to retrieve Wikidata items, which can be quite large. Although a call to <code>Z6820</code> is a bit more complex, its parameters allow for fetching selected portions of a Wikidata item, which can greatly improve performance and avoid some errors, by reducing the network bandwidth and processing time that are needed. (<code>Z6820</code> can also be used in place of <code>Z6822</code>, <code>Z6824</code>, <code>Z6825</code>, and <code>Z6826</code>, to get similar bandwidth-reduction benefits.)
Just below we show how <code>Z6820</code> can be used, in <code>Wikifunctions.Call</code>, to implement the same behavior as above. Note that we use the second argument passed to <code>Z6820</code>, <code>[labelsPart]</code>, to say “Just return the item’s labels”, and we use the third argument, <code>[Z400K2]</code>, to say “Just return labels in the given language”. (This argument would also apply to aliases and descriptions, if they were included in the result.)
</translate>
<syntaxhighlight lang="javascript">
function Z400( Z400K1, Z400K2 ) {
const labelsPart = new ZObject(
new Map( [ ['Z6030K1', new ZReference('Z6033')] ] ),
{Z1K1: 'Z9', Z9K1: 'Z6030'}
);
const entities = Wikifunctions.Call(
'Z6820',
[Z400K1],
[labelsPart],
[Z400K2],
[]);
const item = entities.get(Z400K1.Z6091K1);
const labels = item.Z6001K2.Z12K1;
for (const label of labels) {
if (label.Z11K1.Z60K1 === Z400K2.Z60K1) {
return label.Z11K2;
}}
return 'NOT FOUND';
}
</syntaxhighlight>
<translate>
Other things to note:
* Even though code implementations are now able to fetch Wikidata entities, it is recommended that they not be written to return entire entities. This is because of current limitations on the size of the value returned from a code implementation. To fetch an entire entity, it’s better to call the fetch function from a composition.
* Only one callback can execute at a time. For security reasons, it is not possible to use the concurrency features of JavaScript or Python to execute multiple callbacks in parallel.
* There is currently a 3 MiB limit on the size of Wikidata content that can be returned to a code implementation, by a single callback.
== Compositions == <!--T:22-->
<!--T:23-->
In this section, we give a concrete example on how to create an implementation in the form of a composition. Say we want to create an implementation for a Function which combines two input strings by putting a space between them, returning the result of that. Let’s assume the ZID of that function is <tvar name="1"><code>Z30000</code></tvar>.
<!--T:24-->
It is usually a good idea to first think about how to combine existing functions in order to create the desired output. Sometimes this might be trivial, and you can just go ahead with composing functions, but in many cases it is worthwhile to note the desired composition down.
<!--T:25-->
For example, for the given Function, we could use the existing Function <tvar name="1">{{Z|Z10000}}</tvar>. That Function takes two strings and makes one string out of them. But we need to add a space in between. So we first concatenate a space to the end of the first string, and then concatenate the second string to the result of that first concatenation. So our composition could be noted down like this:
</translate>
<syntaxhighlight lang="prolog">
join_strings( join_strings( Z30000K1, " " ), Z30000K2 )
</syntaxhighlight>
<translate>
<!--T:80-->
There are multiple ways to write a composition: notice that the same thing could be accomplished with:
</translate>
<syntaxhighlight lang="prolog">
join_strings( Z30000K1, join_strings( " ", Z30000K2 ) )
</syntaxhighlight>
<translate>
<!--T:81-->
An alternative implementation could also use the existing Function <tvar name="1">{{Z|Z15175}}</tvar>, so your composition could be:
</translate>
<syntaxhighlight lang="prolog">
join_with_separator( Z30000K1, Z30000K2, " " )
</syntaxhighlight>
<translate>
<!--T:82-->
As you can see, there are multiple ways to accomplish this, so take your time and explore the existing functions available in the <tvar name="1">{{ll|Wikifunctions:Catalogue}}</tvar>.
<!--T:83-->
Let's try to create the second example, <tvar name="1"><code>join_strings(Z30000K1, join_strings(" ", Z30000K2))</code></tvar>.
<!--T:84-->
In order to create this:
</translate>
# <translate><!--T:85--> Start adding an implementation by clicking on the "+" button in the "Implementations" table from your Function page.</translate>
# <translate><!--T:86--> Make sure that the option "composition" under "Implementation" is selected.</translate>
# <translate><!--T:87--> Click on the "›" icon or click the "Select Function" link to expand the function details.</translate>
# <translate><!--T:88--> Under "function" search for the name of the outermost function you want to use, which in this example is "join two strings". Then, select the wanted function from the dropdown list.</translate>
# <translate><!--T:89--> You will see two new fields, one for each of the arguments needed for the selected function.</translate>
# <translate><!--T:90--> For the first argument, we want to select the first input to our function:</translate>
## <translate><!--T:91--> Next to "first string", click on the "…" button and select "Argument reference".</translate>
## <translate><!--T:92--> Under "key id" you can now select the first string of your function from the dropdown, which contains all available inputs.</translate>
# <translate><!--T:93--> For the second argument, we want to use the result of another call to "join two strings":</translate>
## <translate><!--T:94--> Next to "second string", click on the "…" button and select "Function call".</translate>
## <translate><!--T:95--> Under "function", search and select the function you want to call, which is again "join two strings".</translate>
## <translate><!--T:96--> For this inner function call, configure the "first string" by simply typing a white space in the text field, and configure the "second string" as you did for step 6: change it using the "…" button to "Argument reference", and then select the second argument in the dropdown.</translate>
<translate>
<!--T:97-->
Your composition is now complete!
<!--T:98-->
You can expand and collapse the details using the chevron buttons to see how it looks. If you already have Tests as recommended in the [[<tvar name="1">#Practice Test-Driven Development</tvar>|TDD]] section above, click on the circular arrow in the Tests panel and see if your implementation passes the tests. Once your composition passes the tests, go ahead and publish it.
</translate>
[[File:Composition implementation expanded.png|frame|center|alt=<translate><!--T:99--> A Wikifunctions composition implementation in its expanded view</translate>|<translate><!--T:100--> A Wikifunctions composition implementation in its expanded view</translate>]]
[[File:Composition implementation collapsed.png|frame|center|alt=<translate><!--T:101--> A Wikifunctions composition implementation in its collapsed view</translate>|<translate><!--T:102--> A Wikifunctions composition implementation in its collapsed view</translate>]]
<translate>
== Wikifunctions error handling == <!--T:103-->
<!--T:104-->
As a Wikifunctions function creator, you might want to warn the user calling your function when something goes wrong in the code, or when their inputs do not fit a certain criteria. For example, if your Function expects a string input to contain a name, you might want to check that the name is not empty and, if it is, show an error message that the person using your Function can understand.
<!--T:105-->
For this purpose, you can use <tvar name="1"><code>Wikifunctions.Error()</code></tvar> from your code implementations or the function <tvar name="2">{{Z|Z851}}</tvar> from your compositions.
<!--T:106-->
In this section you will learn:
</translate>
* <translate><!--T:107--> How to throw errors from both code and composition implementations,</translate>
* <translate><!--T:108--> how to write tests for error cases, and</translate>
* <translate><!--T:109--> how to catch and handle errors thrown by functions that you are using in your compositions.</translate>
<translate>
=== Throwing errors from code implementations === <!--T:110-->
<!--T:111-->
When writing code, both from JavaScript and Python, you can use <tvar name="1"><code>Wikifunctions.Error()</code></tvar> to end the execution with a wanted error.
<!--T:112-->
<tvar name="1"><code>Wikifunctions.Error()</code></tvar> has two parameters:
</translate>
# <translate><!--T:113--> Error type: a string containing the ZID of the error type you want to return.</translate>
# <translate><!--T:114--> Error arguments: a list of string arguments to build the error.</translate>
<translate>
<!--T:115-->
Let's go one by one:
==== Error type ==== <!--T:116-->
<!--T:117-->
An error type is an object that describes a kind of error that could happen in the system. There are a number of built-in error types but you can also build other error types that are more suited to your use case. When using errors, the best idea is to browse through the available error types, which can be explored in [[<tvar name="1">Special:ListObjectsByType/Z50</tvar>|this list]].
<!--T:118-->
If there are no errors that fit your case, create a new one by going to the create page, and selecting "Error type" in the type selector. Then, set the necessary fields:
</translate>
[[File:Error type.png|thumb|alt=<translate><!--T:119--> Error type creation in Wikifunctions</translate>|<translate><!--T:120--> To create new Error type (Z50), edit the label and add the necessary keys.</translate>]]
* <translate><!--T:121--> '''Label''' – This is the main title of the error, which should contain a short but descriptive message. Set the error label on the right-side box titled "About".</translate>
* <translate><!--T:122--> '''Keys''' – Keys contain additional information about what caused the error. For example, if an input had the wrong format, you might want to inform the user of what was the input content when raising the error. To use them in your implementations, keys should be strings. To create a key, click on the "[+]" icon below "keys", select "String" under "value type", and add a label that describes it appropriately, for example "current input". Once you have all the necessary keys, you can Publish your error type and keep the ID of the newly created object.</translate>
<translate>
==== Error arguments ==== <!--T:123-->
<!--T:124-->
Error arguments correspond to the keys of the Error type, and they should provide additional information to understand the error. Error arguments should always be Strings.
==== Using Wikifunctions.Error() ==== <!--T:125-->
<!--T:126-->
Say that you want an error to be thrown when either your first or your second input are empty. You have already created the error type, and the assigned ZID was <tvar name="1"><code>Z30005</code></tvar>. Your error type has two string keys:
</translate>
* <translate><!--T:127--> Input key: contains the key of the failing input</translate>
* <translate><!--T:128--> Input value: contains the current value of the failing input</translate>
<translate>
<!--T:129-->
To raise an error in your JavaScript implementation you should do something like this:
</translate>
<syntaxhighlight lang="javascript">
function Z30000( Z30000K1, Z30000K2 ) {
if ( trim( Z30000K1 ) === '' ) {
// <translate nowrap><!--T:309--> If the first input is empty, raise error <tvar name="1">Z30005</tvar></translate>
// <translate nowrap><!--T:310--> with two string args: [ first input key, first input value ]</translate>
Wikifunctions.Error( 'Z30005', [ "Z30000K1", Z30000K1 ] )
}
if ( trim( Z30000K2 ) === '' ) {
// <translate nowrap><!--T:311--> If the second input is empty, raise error <tvar name="1">Z30005</tvar></translate>
// <translate nowrap><!--T:312--> with two string args: [ second input key, second input value ]</translate>
Wikifunctions.Error( 'Z30005', [ "Z30000K2", Z30000K2 ] )
}
return Z30000K1 + " " + Z30000K2;
}
</syntaxhighlight>
<translate>
<!--T:130-->
To raise an error in your Python implementation you should do something like this:
</translate>
<syntaxhighlight lang="python3">
def Z30000(Z30000K1, Z30000K2):
if Z30000K1.strip() == "":
# <translate nowrap><!--T:313--> If the first input is empty, raise error <tvar name="1">Z30005</tvar></translate>
# <translate nowrap><!--T:314--> with two string args: [ first input key, first input value ]</translate>
Wikifunctions.Error("Z30005", ["Z30000K1", Z30000K1])
if Z30000K2.strip() == "":
# <translate nowrap><!--T:315--> If the second input is empty, raise error <tvar name="1">Z30005</tvar></translate>
# <translate nowrap><!--T:316--> with two string args: [ first input key, first input value ]</translate>
Wikifunctions.Error("Z30005", ["Z30000K2", Z30000K2])
return Z30000K1 + " " + Z30000K2
</syntaxhighlight>
<translate>
<!--T:131-->
Remember that calling <tvar name="1"><code>Wikifunctions.Error()</code></tvar> ends the execution!
=== Throwing errors from compositions === <!--T:132-->
<!--T:133-->
If you are creating a composition implementation, you can throw an error by calling the special function <tvar name="1">{{Z|Z851}}</tvar>.
==== Throw Error function (Z851) ==== <!--T:134-->
<!--T:135-->
The <tvar name="1">{{Z|Z851}}</tvar> function is similar to the <tvar name="2"><code>Wikifunctions.Error()</code></tvar> method and takes two arguments:
</translate>
* <translate><!--T:136--> '''Error type''' – A reference to the Error type you want to raise</translate>
* <translate><!--T:137--> '''Error parameters''' – A list with the arguments to create your Error, which should also be Strings.</translate>
<translate>
==== Using Throw Error ==== <!--T:138-->
<!--T:139-->
Say you want to modify your composition so that it first checks that the arguments are not empty, and raises an error when it finds an empty one. Then, if none of them are empty, it runs the original composition, which is:
</translate>
<syntaxhighlight lang="prolog">
join_with_separator( Z30000K1, Z30000K2, " " )
</syntaxhighlight>
<translate>
<!--T:140-->
To do this, you need to create conditional paths, for which you can use the <tvar name="1">{{Z|Z802}}</tvar> function. Think of it like this:
</translate>
* <translate><!--T:141--> If the first argument is empty, throw an error for the first argument</translate>
* <translate><!--T:142--> Else, proceed to check the second argument</translate>
* <translate><!--T:143--> If the second argument is empty, throw an error for the second argument</translate>
* <translate><!--T:144--> Else, proceed with the success path and return the joint strings with the space separator</translate>
<translate>
<!--T:145-->
Or in functional pseudo code:
</translate>
<syntaxhighlight lang="prolog">
if (
is_empty_string( Z30000K1 ),
throw_error( Z30005, [ "Z30000K1", Z30000K1 ] ),
if(
is_empty_string( Z30000K2 ),
throw_error( Z30005, [ "Z30000K2", Z30000K2 ] ),
join_with_separator( Z30000K1, Z30000K2, " " )
)
)
</syntaxhighlight>
<translate>
<!--T:146-->
Let's create this step by step:
</translate>
# <translate><!--T:147--> Start adding an implementation by clicking on the "+” button in the "Implementations" table from your Function page.</translate>
# <translate><!--T:148--> Make sure that the option "composition" under "Implementation" is selected.</translate>
# <translate><!--T:149--> Click on the "›” icon or click the "Select Function" link to expand the function details.</translate>
# <translate><!--T:150--> Under "function" search and select the outermost function you want to use, which in this case is "if".</translate>
# <translate><!--T:151--> Check the validity of the first argument:</translate>
## <translate><!--T:152--> Next to "condition", click on the "…" button and select "function call"</translate>
## <translate><!--T:153--> Under "function", search and select the function "is empty string"</translate>
## <translate><!--T:154--> Next to "input", click on the "…" button and select "argument reference"</translate>
## <translate><!--T:155--> Under "key id", select the first input (e.g. "first string")</translate>
## <translate><!--T:156--> You can now collapse the "condition" function call if you want, by clicking on the down-chevron next to "condition". You should see something like "f(x) is empty string( → first string )"</translate>
# <translate><!--T:157--> Throw error if the condition is true:</translate>
## <translate><!--T:158--> Next to "then", click on the "…" button and select "function call"</translate>
## <translate><!--T:159--> Under "function", search and select the function "Throw Error"</translate>
## <translate><!--T:160--> Under "error type", search and select your error type (you can directly input the error ID if you know it, e.g. Z30005)</translate>
## <translate><!--T:161--> Under "error parameters", add two items by clicking on the "+" button</translate>
## <translate><!--T:162--> For "Item 1" (offending argument key), set its type to "String" and write the argument identifier (e.g. "first input", or "Z30000K1")</translate>
## <translate><!--T:163--> For "Item 2" (offending argument value), click on the "…" next to "Item 2" and select "argument reference"</translate>
## <translate><!--T:164--> Under "key id", select the first input (e.g. "first string")</translate>
## <translate><!--T:165--> You can now collapse the "then" function call if you want, by clicking on the down-chevron next to "then". You should see something like "f(x) Throw Error( Input was the wrong format, Typed list( Object, "first input", → first string ) )"</translate>
# <translate><!--T:166--> Continue to check the second argument if the first was good:</translate>
## <translate><!--T:167--> Next to "else", click on the "…" button and select "function call"</translate>
## <translate><!--T:168--> Under "function", search and select the function "if"</translate>
## <translate><!--T:169--> Set up "condition" to check the validity of the second argument by following the same process as described in step 5.</translate>
## <translate><!--T:170--> Set up "then" to throw an error for the second argument by following the same process as described in step 6.</translate>
# <translate><!--T:171--> Finally, set up the success path:</translate>
## <translate><!--T:172--> Next to the nested "else", click on the "…" button and select "function call"</translate>
## <translate><!--T:173--> Under "function", search and select the successful function, which in this case can be "join strings with separator"</translate>
## <translate><!--T:174--> Next to "first string", click on the "…" button and set it to "argument reference", then select "first string"</translate>
## <translate><!--T:175--> Next to "second string", click on the "…" button and set it to "argument reference", then select "second string"</translate>
## <translate><!--T:176--> Under "separator" add a space into the text field</translate>
<translate>
<!--T:177-->
The resulting function call should look like this:
</translate>
[[File:Throw error expanded.png|frame|center|alt=<translate><!--T:178--> Wikifunctions composition using Throw Error function</translate>|<translate><!--T:179--> Wikifunctions composition using Throw Error function</translate>]]
[[File:Throw error collapsed.png|frame|center|alt=<translate><!--T:180--> Wikifunctions composition using Throw Error function, in its collapsed view</translate>|<translate><!--T:181--> Wikifunctions composition using Throw Error function, in its collapsed view</translate>]]
<translate>
=== Handling errors in compositions === <!--T:182-->
<!--T:183-->
While it is useful to allow functions to raise expected errors, it is crucial to be able to handle errors in your compositions in order to safely use these functions.
<!--T:184-->
Say you want to create a new function "full name of a person" – we will refer to it with the ZID <tvar name="1"><code>Z30010</code></tvar>. This function should return the full name of a person given a first and last names, but if any of the two fields are empty, it should return the text "Unknown" instead.
<!--T:185-->
You could create a composition using our example function "Join two strings with a space" or <tvar name="1"><code>Z30000</code></tvar> to generate the name. If any of the inputs are empty, you know that <tvar name="1"><code>Z30000</code></tvar> will throw an error of type <tvar name="2"><code>Z30005</code></tvar>. Using the function <tvar name="3">{{Z|Z850}}</tvar> as a wrapper, you can attempt the join operation and intercept a possible error to simply return "Unknown" whenever it occurs.
==== Try-Catch function (Z850) ==== <!--T:186-->
<!--T:187-->
The <tvar name="1">{{Z|Z850}}</tvar> function is built-in with ZID <tvar name="2"><code>Z850</code></tvar> and takes three arguments:
</translate>
* <translate><!--T:188--> '''Function call''' – The initial function call to run. If nothing goes wrong, the response will be the result of this function call.</translate>
* <translate><!--T:189--> '''Error type''' – An error type to catch in case it is thrown during the execution of the first function call.</translate>
* <translate><!--T:190--> '''Error handler''' – A function call that will be run in case the error specified above is caught during the execution of the initial function call. If that happens, the result of the error handler will be the value returned.</translate>
<translate>
==== Using Try-Catch ==== <!--T:191-->
<!--T:192-->
Once we have all the functions for our composition, we can craft it like this:
</translate>
<syntaxhighlight lang="prolog">
try_catch(
join_with_space( Z30010K1, Z30010K2 ),
Z30005,
echo( "Unknown" )
)
</syntaxhighlight>
<translate>
<!--T:193-->
This means that:
</translate>
* <translate><!--T:194--> The "Join two strings with a space" function will be tried with the two inputs and, if everything goes well, the output of this function will be returned</translate>
* <translate><!--T:195--> If any of the inputs are blank, "Join two strings with a space" with raise an error of type <tvar name="1"><code>Z30005</code></tvar></translate>
* <translate><!--T:196--> Our <tvar name="1">{{Z|Z850}}</tvar> will then detect this error and run the <tvar name="2">{{Z|Z801}}</tvar> function to return "Unknown"</translate>
<translate>
<!--T:197-->
Let's create this step by step:
</translate>
# <translate><!--T:198--> Start adding an implementation by clicking on the "+" button in the "Implementations" table from your Function page.</translate>
# <translate><!--T:199--> Make sure that the option "composition" under "Implementation" is selected.</translate>
# <translate><!--T:200--> Click on the "›” icon or click the "Select Function" link to expand the function details.</translate>
# <translate><!--T:201--> Under "function" search and select the outermost function you want to use, which in this case is "Try-Catch".</translate>
# <translate><!--T:202--> Set the main function call:</translate>
## <translate><!--T:203--> Under the field where the "Try-Catch" function is selected, next to the "function call" key, click on the "…" button and select "function call"</translate>
## <translate><!--T:204--> Under "function" search and select the function "join two strings with space"</translate>
## <translate><!--T:205--> Next to "first string", click on the "…" button and select "argument reference", then select the "first name" argument from the dropdown.</translate>
## <translate><!--T:206--> Next to "second string", click on the "…" button and select "argument reference", then select the "second name" argument from the dropdown.</translate>
# <translate><!--T:207--> Select the error to catch:</translate>
## <translate><!--T:208--> Under "error type", search and select "bad string input" – you can search directly by its ZID <tvar name="1"><code>Z30005</code></tvar></translate>
# <translate><!--T:209--> Set the error handler function call:</translate>
## <translate><!--T:210--> Next to "error handler", click on the "…" button and select "function call"</translate>
## <translate><!--T:211--> Under "function", search and select the function "echo"</translate>
## <translate><!--T:212--> Under "input" and "type", search and select the type "String"</translate>
## <translate><!--T:213--> Now, under "input", type "Unknown" in the text field</translate>
<translate>
<!--T:214-->
The resulting function should look like this:
</translate>
[[File:Try catch expanded.png|frame|center|alt=<translate><!--T:215--> Wikifunctions composition using Try-catch function, in expanded mode</translate>|<translate><!--T:216--> Wikifunctions composition using Try-catch function, in expanded mode</translate>]]
[[File:Try catch collapsed.png|frame|center|alt=<translate><!--T:217--> Wikifunctions composition using Try-catch function, in collapsed mode</translate>|<translate><!--T:218--> Wikifunctions composition using Try-catch function, in collapsed mode</translate>]]
<translate>
=== Testing your failure use cases === <!--T:219-->
<!--T:220-->
As we introduced in the above section about [[<tvar name="1">#Practice Test-Driven Development</tvar>|practicing TDD]], it's important to test not only the most common paths, but also the possible edge cases. It is equally important to test failure behavior. In this section we will give you the tools necessary to test that your function fails with a given set of inputs, and that the error thrown is the expected one.
<!--T:221-->
To do that, you will need other two system functions:
==== Is error type (Z852) ==== <!--T:222-->
<!--T:223-->
The <tvar name="1">{{Z|Z852}}</tvar> function is built-in with ZID <tvar name="2"><code>Z852</code></tvar> and takes two arguments:
</translate>
* <translate><!--T:224--> '''Error''' – An <tvar name="1">{{Z|Z5}}</tvar> object, which can be thrown by a failing call. An error instance has a type and a value.</translate>
* <translate><!--T:225--> '''Error type''' – A reference to an <tvar name="1">{{Z|Z50}}</tvar> which will be compared to the type of the Error passed as a first argument. If that's the case, the function will return true.</translate>
<translate>
==== Get error thrown by function call (Z853) ==== <!--T:226-->
<!--T:227-->
The <tvar name="1">{{Z|Z853}}</tvar> function is built-in with ZID <tvar name="2"><code>Z853</code></tvar> and takes one argument:
</translate>
* <translate><!--T:228--> '''Function call''' – A function call which can either return a successful value of any type, or throw an error.</translate>
<translate>
<!--T:229-->
This function returns a <tvar name="1">{{Z|Z882}}</tvar> with a <tvar name="2">{{Z|Z40}}</tvar> in first place and an <tvar name="3">{{Z|Z1}}</tvar> in the second:
</translate>
* <translate><!--T:230--> If the Function call runs successfully and hence does not throw any error, the returned pair will contain False in the first place, and void in the second.</translate>
* <translate><!--T:231--> If the Function call throws an error, the returned pair will contain True in the first place, and the caught error in the second.</translate>
<translate>
<!--T:232-->
To use this function in your compositions, you might need to use the additional functions:
</translate>
* <translate><!--T:233--> <tvar name="1">{{Z|Z821}}</tvar>, and</translate>
* {{Z|Z822}}
<translate>
==== Testing errors ==== <!--T:234-->
<!--T:235-->
Say our target function, "Join two strings with a space" or <tvar name="1"><code>Z30000</code></tvar>, throws an error of type <tvar name="2"><code>Z30005</code></tvar> and we want to test this behavior. To do that we need to:
</translate>
* <translate><!--T:236--> Throw a failing function call</translate>
* <translate><!--T:237--> Get the error using the function <tvar name="1">{{Z|Z853}}</tvar></translate>
* <translate><!--T:238--> Check that the error is the right type with <tvar name="1">{{Z|Z852}}</tvar></translate>
<translate>
<!--T:239-->
Tests have two fields:
</translate>
* <translate><!--T:240--> '''Call''' – A function call that will produce an output with the inputs you want to test. This call will return a value.</translate>
* <translate><!--T:241--> '''Result validation''' – A function call that will validate that the value returned by the call above is the expected one. The first argument of this function call will be automatically assigned to take the return value of the first call.</translate>
<translate>
<!--T:242-->
For step-by-step instructions on how to create tests, see <tvar name="1">{{ll|Wikifunctions:Introduction#Create_tests}}</tvar>.
<!--T:243-->
In our example, we can structure it like this — but this is not the only way!
<!--T:244-->
The call, which will return an <tvar name="1">{{Z|Z5}}</tvar> object:
</translate>
<syntaxhighlight lang="prolog">
error = get_second_element_of_typed_list(
get_error_thrown_by(
join_strings_by_whitespace( "", "not empty" )
)
)
</syntaxhighlight>
<translate>
<!--T:245-->
And the result validation, which will take the <tvar name="1">{{Z|Z5}}</tvar> object as its first argument:
</translate>
<syntaxhighlight lang="prolog">
is_error_type( error, Z30005 )
</syntaxhighlight>
<translate>
<!--T:246-->
Let's do this step by step:
</translate>
# <translate><!--T:247--> Start adding a test by clicking on the "+" button in the "Tests" table from your Function page. The "call" and "result validation" fields already have some functions pre-set, but to test the errors we will need to change them.</translate>
# <translate><!--T:248--> First, let's set the call:</translate>
## <translate><!--T:249--> Under "call", click the "›" chevron button to expand the function call.</translate>
## <translate><!--T:250--> Under "function", edit the field and search and select the function "Get second element of a typed pair"</translate>
## <translate><!--T:251--> Once selected, next to "Typed pair", click on the "…" button and select "function call"</translate>
## <translate><!--T:252--> Under "function", search and select the function "Get error thrown by function call"</translate>
## <translate><!--T:253--> Next to "function call", click on the "…" button and select "function call"</translate>
## <translate><!--T:254--> Under "function", search and select the function "Join two strings with a space" (or by ZID <tvar name="1"><code>Z30000</code></tvar>)</translate>
## <translate><!--T:255--> Now set the inputs so that they cause a failure: at least one of them should be empty.</translate>
## <translate><!--T:256--> You can now collapse your "call" by clicking again on the down-chevron button if you want!</translate>
# <translate><!--T:257--> Next, let's set the result validation:</translate>
## <translate><!--T:258--> Under "result validation", click the "›" chevron button to expand the function call.</translate>
## <translate><!--T:259--> Under "function", edit the field and search and select the function "Is error type"</translate>
## <translate><!--T:260--> Now you will only be asked to configure the second argument. Under "error type", search and select your <tvar name="1"><code>Z30005</code></tvar> error type.</translate>
# <translate><!--T:261--> And you are done! You can now click the circular arrow in the "Implementations" box and you should see green checks.</translate>
<translate>
<!--T:262-->
If everything went right, you can now save your test. It should look like this:
</translate>
[[File:Get error expanded.png|frame|center|alt=<translate><!--T:263--> Testing a failure using Get error and Is error type functions, in expanded mode</translate>|<translate><!--T:264--> Testing a failure using Get error and Is error type functions, in expanded mode</translate>]]
[[File:Get error collapsed.png|frame|center|alt=<translate><!--T:265--> Testing a failure using Get error and Is error type functions, in collapsed mode</translate>|<translate><!--T:266--> Testing a failure using Get error and Is error type functions, in collapsed mode</translate>]]
<translate>
== Debugging your implementations == <!--T:267-->
<!--T:268-->
Sometimes things can go wrong. A function might behave differently than expected or a value might not look quite right. Sometimes implementations are really complex and, because they are run in a sandboxed environment, it can seem really difficult to debug. To help understand what's going on inside a function call, Wikifunctions includes a small set of debugging tools.
<!--T:269-->
These tools don't change the result of a function, but will add extra information to the returned metadata, which you can observe after running the function. You can use <tvar name="1"><code>Wikifunctions.Debug()</code></tvar> from your code implementations or the function <tvar name="2">{{Z|Z854}}</tvar> from your compositions.
<!--T:270-->
In this section you will learn:
</translate>
* <translate><!--T:271--> How to add debug messages from both code and composition implementations,</translate>
* <translate><!--T:272--> how to inspect the metadata manually or via the UI to inspect these logs.</translate>
<translate>
=== Debugging your code implementations === <!--T:273-->
<!--T:274-->
When writing code, both from JavaScript and Python3, you can use <tvar name="1"><code>Wikifunctions.Debug()</code></tvar> to add a message to your debugging log and continue the execution.
<!--T:275-->
<tvar name="1"><code>Wikifunctions.Debug()</code></tvar> has one parameter, which is generally expected to be a string. However, any other object passed as parameter will get directly converted into a string.
<!--T:276-->
If we want to add debug logs to our code implementations for our "Join two strings with a space" example function, we can do, in JavaScript:
</translate>
<syntaxhighlight lang="JavaScript">
function Z30000( Z30000K1, Z30000K2 ) {
if ( trim( Z30000K1 ) === '' ) {
Wikifunctions.Debug( `first input is empty "${ Z30000K1 }"` );
Wikifunctions.Error( 'Z30005', [ "Z30000K1", Z30000K1 ] )
}
if ( trim( Z30000K2 ) === '' ) {
Wikifunctions.Debug( `second input is empty "${ Z30000K2 }"` );
Wikifunctions.Error( 'Z30005', [ "Z30000K2", Z30000K2 ] )
}
Wikifunctions.Debug( "both inputs are fine" );
return Z30000K1 + " " + Z30000K2;
}
</syntaxhighlight>
<translate>
<!--T:277-->
And the same in your Python3 implementation will be:
</translate>
<syntaxhighlight lang="python3">
def Z30000(Z30000K1, Z30000K2):
if Z30000K1.strip() == "":
Wikifunctions.Debug( 'first input is empty "'+Z30000K1+'"' )
Wikifunctions.Error("Z30005", ["Z30000K1", Z30000K1])
if Z30000K2.strip() == "":
Wikifunctions.Debug( 'second input is empty "'+Z30000K2+'"' )
Wikifunctions.Error("Z30005", ["Z30000K2", Z30000K2])
Wikifunctions.Debug( 'both inputs are fine' )
return Z30000K1 + " " + Z30000K2
</syntaxhighlight>
<translate>
<!--T:278-->
This way, no matter what happens, we will be adding one message to your debugging logs:
</translate>
* <translate><!--T:279--> If the function call fails when checking on the first or second input, the result of the execution will be a failure, but it will contain one informative log about what branch caused the failure.</translate>
* <translate><!--T:280--> If the function call succeeds—because both inputs are valid—the function call will return the joined string, but the returned metadata will also contain a debug log.</translate>
<translate>
=== Debugging your compositions === <!--T:281-->
<!--T:282-->
To support debugging compositions, Wikifunctions provides the built-in function <tvar name="1">{{Z|Z854}}</tvar>. This function allows you to attach debug messages to the execution of any function call that generates the final output. The debug logs collected during the evaluation are returned as part of the execution metadata, under the <tvar name="2"><code>executorDebugLogs</code></tvar> key.
==== Add debug log to function call (Z854) ==== <!--T:283-->
<!--T:284-->
The <tvar name="1">{{Z|Z854}}</tvar> function is built-in with ZID <tvar name="2"><code>Z854</code></tvar> and takes two arguments:
</translate>
* <translate><!--T:285--> '''Function call''' – Any composition you want to execute.</translate>
* <translate><!--T:286--> '''Debug log''' – A string message that will be recorded if the given function call is evaluated.</translate>
<translate>
<!--T:287-->
When the wrapped function call runs, the provided message is added to the execution logs. If that function call is not executed, or its execution is not part of the final output, its debug log will not appear in the final result metadata.
<!--T:288-->
You will benefit from this built-in if you want to observe:
</translate>
* <translate><!--T:289--> Which branch of a conditional was executed, or</translate>
* <translate><!--T:290--> the order of evaluation in a composition.</translate>
<translate>
==== Using Add debug log to function call ==== <!--T:291-->
<!--T:292-->
Say that you want to add debug logs to our example function "Join two strings with a space" or <tvar name="1"><code>Z30000</code></tvar>, so that different messages are added to the different possible outcomes. You could use our debugging builtin like this:
</translate>
<syntaxhighlight lang="prolog">
if (
is_empty_string( Z30000K1 ),
add_debug_log( throw_error( Z30005, ... ), 'failed on first input' )
if(
is_empty_string( Z30000K2 ),
add_debug_log( throw_error( Z30005, ... ), 'failed on second input' ),
add_debug_log(
join_with_separator( Z30000K1, Z30000K2, " " ),
'both inputs are ok!'
)
)
)
</syntaxhighlight>
<translate>
<!--T:293-->
This way,
</translate>
* <translate><!--T:294--> when called with an empty first input, the function will return a failed response, and the metadata will contain an <tvar name="1"><code>executorDebugLogs</code></tvar> entry with the "failed on first input" log.</translate>
* <translate><!--T:295--> When called with an empty second input, the call will also fail, but the logged message will be "failed on second input"</translate>
* <translate><!--T:296--> When called with valid inputs, the function will return a successful response, and additionally the metadata will contain "both inputs are ok" in its <tvar name="1"><code>executorDebugLogs</code></tvar> key.</translate>
<translate>
<!--T:297-->
This is the way this composition would look:
</translate>
[[File:Add debug log expanded.png|frame|center|alt=<translate><!--T:298--> Composition implementation using Add debug logs to log all possible execution paths</translate>|<translate><!--T:299--> Composition implementation using Add debug logs to log all possible execution paths</translate>]]
<translate>
=== Accessing execution debug logs === <!--T:300-->
<!--T:301-->
Whether your execution logs are added via <tvar name="1"><code>Wikifunctions.Debug()</code></tvar> or via the <tvar name="2">{{Z|Z854}}</tvar> built-in function, they are returned as part of the response metadata. To see the logs, once you run your function, click on the "Details" button that appears at the bottom of the "Result" section.
<!--T:302-->
The error and debug information will appear at the top of the "Details" dialog.
<!--T:303-->
This is what you would see when running the composition from our previous example with valid and invalid inputs:
</translate>
{| class="wikitable"
| [[File:Execution logs success.png|frameless|center|alt=<translate><!--T:304--> Function metadata dialog for a successful execution with debug logs</translate>]]
| [[File:Execution logs failure.png|frameless|center|alt=<translate><!--T:305--> Function metadata dialog for a failed execution with debug logs</translate>]]
|-
| <translate><!--T:306--> Function metadata dialog for a successful execution: shows no errors, but displays the successful execution log: ''"both inputs are ok!"''</translate>
| <translate><!--T:307--> Function metadata dialog for a failed execution: shows the error information, and the additional execution log for the first failure branch: ''"failed on first input"''</translate>
|}
[[Category:How to create implementations| {{#translation:}}]]
sk1wd7d0mqbbusnw983lx21jfnwimhh
Wikifunctions:Requests for deletions
4
1696
307030
307001
2026-09-01T12:22:38Z
Bunnypranav
9976
Mark section resolved ([[User:Bunnypranav/sectionResolved.js|sectionResolved]])
307030
wikitext
text/x-wiki
<noinclude>__NEWSECTIONLINK__ __FORCETOC__</noinclude>
Functions or implementations or tests which do not work properly, do not meet notability criteria or are duplicates of another object can be deleted. Please nominate items for deletions under the "Requests for deletion" section below.
If it is obvious vandalism, just report it in [[Wikifunctions:Report vandalism]], or ping an [[Special:ListAdmins|administrator]]. Contact can also be made with an administrator on [https://t.me/Wikifunctions Telegram] or IRC [irc://irc.libera.chat/wikipedia-abstract #wikipedia-abstract].
If it is a predefined object (its ZID is less than 10000), please see [[Wikifunctions:Report a technical problem]].
{{Autoarchive resolved section
|age = 1
|archive = ((FULLPAGENAME))/Archive/((year))/((month:##))
|level = 2
}}
{{Archives|{{Special:PrefixIndex/Wikifunctions:Requests for deletions/Archive/|stripprefix=1}}}}
= Requests for deletion =
== [[Z13148]] ==
Can we delete this one, now that we have [[Z19460]]? --[[User:Ameisenigel|Ameisenigel]] ([[User talk:Ameisenigel|talk]]) 19:52, 26 July 2026 (UTC)
:@[[User:Ameisenigel|Ameisenigel]]: They're for different Types, and the latter is collared. @[[User:FenrisAureus|FenrisAureus]] created it, and @[[User:99of9|99of9]] [https://www.wikifunctions.org/wiki/Z13148?diff=prev&oldid=108053 added "(!)"] presumably to tell people not to use it, both in 2024; perhaps they might have views. [[User:Jdforrester (WMF)|Jdforrester (WMF)]] ([[User talk:Jdforrester (WMF)|talk]]) 08:40, 27 July 2026 (UTC)
::the implementation of [[Z19460]] is (i believe) of xorshift128 while [[Z13148]] is of xorshift32 and xorshift64. I suggest merging and renaming [[Z19460]]'s current implementation to eliminate confusion. — [[User:FenrisAureus|<span style="color:#f18">'''''FenrisAureus '''''▲ <span style="font-size:75%">'''''(she/they)'''''</span></span>]] ([[User talk:FenrisAureus|<span style="color:#060">talk</span>]]) 10:04, 2 August 2026 (UTC)
== [[Z40306]], [[Z40308]] and [[Z40309]] ==
Sorry, I duplicated this one as [[Z40673]], also has its own tests and actually implementations. All three can be deleted. --[[User:Denny|Denny]] ([[User talk:Denny|talk]]) 11:28, 1 September 2026 (UTC)
:{{done}} <span style="font-family:monospace;font-weight:bold">[[User:Bunnypranav|<span style="color:#63b3ed">~/Bunny</span><span style="color:#2c5282">pranav</span>]]:<[[User talk:Bunnypranav|<span style="color:#63b3ed">ping</span>]]></span> 12:22, 1 September 2026 (UTC)
{{Section resolved|1=<span style="font-family:monospace;font-weight:bold">[[User:Bunnypranav|<span style="color:#63b3ed">~/Bunny</span><span style="color:#2c5282">pranav</span>]]:<[[User talk:Bunnypranav|<span style="color:#63b3ed">ping</span>]]></span> 12:22, 1 September 2026 (UTC)}}
bk1oj7xcu4x67l8tvhp2wuuz4dnw5vo
Wikifunctions:Community portal
4
1724
307236
306301
2026-09-01T19:23:15Z
YoshiRulz
10156
/* Tasks listed by users */ Reply
307236
wikitext
text/x-wiki
<div style="border:1px solid grey; margin:1em 4em 2em; padding:1.5em 1em;">
{{Shortcut|[[WF:CP]]}}
<span style="font-size:2em;">Welcome to the '''community portal for Wikifunctions'''!</span>
This is the central place to document Wikifunctions's to-do lists and ongoing project work. [To-do!]
[[Special:MyLanguage/Wikifunctions:Catalogue|The catalogue of functions]] is a good place to start.
For discussions, see [[Wikifunctions:Project chat]].
[[Category:Project]]
</div>
== Useful links ==
* [[Wikifunctions:List of policies and guidelines]]
* [[Special:MyLanguage/Help:Contents|Help:Contents]]
* [[Special:MyLanguage/Wikifunctions:Catalogue|Wikifunctions:Catalogue of functions]]
** [[Wikifunctions:Suggest a function]]
* [[Wikifunctions:Type proposals]]
* [[Wikifunctions:Feature petitions]]
** [[Wikifunctions:Report a technical problem]]
* [[Special:MyLanguage/Wikifunctions:User scripts|Wikifunctions:User scripts]]
* [[Wikifunctions:Requests for user groups]]
* [[Wikifunctions:Requests for deletions]]
== Noticeboards ==
* [[Wikifunctions:Project chat]]
* [[Wikifunctions:Administrators' noticeboard]]
* [[Wikifunctions:Report vandalism]]
* [[Wikifunctions:Translators' noticeboard]]
== Task centre ==
=== Perennial tasks ===
<!--Feel free to add new tasks to this section. However, if they are one-off requests, please add them to Tasks listed by users-->
* [[File:OOjs UI icon language-ltr.svg|class=skin-invert]] [[Special:MyLanguage/Help:Multilingual|Translation]]:
**[[Special:Random|Add a translation to a random object]]
**[[Special:MyLanguage/Category:Policy|Add a translation to a policy page]]
**[[Special:ListMissingLabels|See any objects without a label in a given language]]
**[[Special:PageTranslation]]
**[[Special:LanguageStats|Language statistics]]
*[[File:Octicons-tools.svg|15px|class=skin-invert]] [[:Category:Tracking categories|Tracking categories]]
* [[File:Octicons-tools.svg|15px|class=skin-invert]] [[Wikifunctions:Request for cleanup|Requests for cleanup]]
=== Tasks listed by users ===
:''Example:''
:* Fix [[Special:Random|this implementation]] please. {{User|Example2}}
::{{Done}}. Thanks for pointing that out! {{User|Example}}
<hr/>
__NEWSECTIONLINK__
[signing to enable reply link:--[[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 11:27, 6 May 2024 (UTC)
:Heya, I tried to make a {{Z|Z29010}} implementation in composition <small>({{Z|Z29012}})</small>, but it errors out: <code>Unable to convert to canonical form (path to the problem: "Z22K2.K1.K1.K2.Z5K2.Z528K1.Z99K1.Z7K1.Z8K4.[ 1 ].Z14K2.Z26107K2.Z21394K1.[ 1 ].Z10771K1.Z23753K2.Z18K1.{"Z1K1":"Z18","Z6K1":"Z29010K5","Z18K1":""}")</code> - why does this happen, and how would I fix it? I tried to use {{Z|Z28030}} as a guide, but for a first dive into composition I may have taken on something a bit large. [[User:Infernostars|infernostars]] <small>([[User talk:Infernostars|talk]]) ([[Special:Contributions/Infernostars|contribs]])</small> 02:49, 23 October 2025 (UTC)
::When you go to {{Z|Z29012}} you'll see two red words "Function" and "Wikidata item". Both of those were not set in the composition, so it is missing information. There may be more deeper problems, but fix this first. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 03:33, 23 October 2025 (UTC)
::{{done}} Works now, seemed to be just a couple typos. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 13:14, 24 December 2025 (UTC)
:Please connect the tests and implementation for {{Z|29750}}. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 13:33, 25 November 2025 (UTC)
::This ^ was done, so thanks for that, and I've now built a new function around it that's ready to be connected: {{Z|29749}}<!-- --><br>Having fallbacks to other languages and indicating such does of course raise the question of ''when'' it should be indicated, and I certainly don't have the answer, so I might leave this message here for the multilingual among you to see it and chime in. Either on [[Talk:Z24144]], or by way of adding a test case on one of these functions. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 14:42, 25 November 2025 (UTC)
:::If it’s about the way labels in fallback languages are displayed, perhaps the [[Talk:Z21583|Discussion page]] for {{Z|Z21583}} would be a better location? There has been some discussion at [[Wikifunctions talk:Abstract Wikipedia/2025 fragment experiments#Proposed recommendation: Fragments should return Z11/monolingual strings]]. (The spinoff, [[Wikifunctions talk:Abstract Wikipedia/2025 fragment experiments#Fallbacks]], might also be relevant.) [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 15:23, 25 November 2025 (UTC)
:::→ [[WF:VP#Draft policy for language fallback strategies]] [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 03:10, 30 August 2026 (UTC)
:Now that raising and catching errors has better support, [[Z28159]] should take an {{Z|50}} instead of a ZID {{Z|6}}. Unfortunately it's already been used in other functions so it might be a pain to change. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 07:20, 21 December 2025 (UTC)
::Yes. I think this gets fixed along with {{Z|Z28162}}, which is listed in [[Wikifunctions:Request for cleanup#Function:(!) throw error (Z28154)]].
::@[[User:Dv103|Dv103]] I was thinking we might just wrap {{Z|851}}? Custom errors will support only strings for the foreseeable future, as I understand it [can’t currently locate the relevant comment on Phabricator]. [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 13:12, 21 December 2025 (UTC)
:The simple implementation for {{Z|30737}} is failing with [[Z516]], even though I can get a (correct) result by [https://www.wikifunctions.org/view/en/Z12681?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z12681%22%2C%22Z12681K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z22475%22%2C%22Z22475K1%22%3A%7B%22Z1K1%22%3A%22Z39%22%2C%22Z39K1%22%3A%22K1%22%7D%2C%22Z22475K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z30260%22%2C%22Z30260K1%22%3A%5B%22Z6095%22%2C%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L100%22%7D%2C%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L101%22%7D%2C%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L102%22%7D%2C%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L103%22%7D%5D%2C%22Z30260K2%22%3A%5B%22Z6030%22%2C%22Z6031%22%5D%2C%22Z30260K3%22%3A%5B%22Z60%22%5D%2C%22Z30260K4%22%3A%5B%22Z6092%22%5D%7D%7D%7D calling those functions on the test input]. Oddly enough [https://www.wikifunctions.org/view/en/Z12681?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z12681%22%2C%22Z12681K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z22475%22%2C%22Z22475K1%22%3A%7B%22Z1K1%22%3A%22Z39%22%2C%22Z39K1%22%3A%22K1%22%7D%2C%22Z22475K2%22%3A%7B%22Z1K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z883%22%2C%22Z883K1%22%3A%22Z1%22%2C%22Z883K2%22%3A%22Z1%22%7D%2C%22K1%22%3A%5B%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z882%22%2C%22Z882K1%22%3A%22Z1%22%2C%22Z882K2%22%3A%22Z1%22%7D%2C%7B%22Z1K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z882%22%2C%22Z882K1%22%3A%22Z1%22%2C%22Z882K2%22%3A%22Z1%22%7D%2C%22K1%22%3A%7B%22Z1K1%22%3A%22Z13518%22%2C%22Z13518K1%22%3A%226%22%7D%2C%22K2%22%3A%22Abacus%22%7D%5D%7D%7D%7D a trivial input] causes that to fail with the same error. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 13:43, 26 December 2025 (UTC)
::Sorry, I missed this one. Initial validation rejects a map with {{Z|Z1}} as its key type. Although it’s not guaranteed to be hashable, [[Z1]] should probably be admitted as a placeholder {{Z|Z4}}. In any event, using {{Z|Z6}} as the alternative seems to work and does not restrict the map to having only Strings for keys (as seen in {{Z|Z30906}}, where the keys have {{Z|Z39}} for their Type). [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 09:18, 31 December 2025 (UTC)
:::[[Z30907|Documented]]. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 13:50, 31 December 2025 (UTC)
:The implementation for {{Z|29183}} is slightly incorrect, it needs to subtract 9 on the condition that variable <code>add</code> is >9 (tests >10 currently). For me to change {{Z|29185}}, the implementation needs to be disconnected from {{Z|29183}} by a functioneer ([[Special:ListUsers/functioneer]]) first. The english wiki also warns about using negative values as input for the modulo operation, so, in addition, the result computation should be rephrased to be
<syntaxhighlight lang="python">
def intdivceil(x, d):
return x//d + (0 if x % d == 0 else 1)
return 10 * intdivceil(sum, 10) - sum
</syntaxhighlight>
:I'd also like to have all test cases of {{Z|29183}} connected by a functioneer, after changes to {{Z|29185}} have been commited. --[[User:Cmuelle8|Cmuelle8]] ([[User talk:Cmuelle8|talk]]) 21:54, 2 January 2026 (UTC)
::Disconnected. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 22:12, 2 January 2026 (UTC)
:::Thanks, changes done - please reconnect. --[[User:Cmuelle8|Cmuelle8]] ([[User talk:Cmuelle8|talk]]) 22:33, 2 January 2026 (UTC)
::::{{done}} [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 23:08, 2 January 2026 (UTC)
:::Weird: {{Z|30940}} and {{Z|30941}} tests do not pass after the reconnect, although [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z29183%22%2C%22Z29183K1%22%3A%7B%22Z1K1%22%3A%22Z13518%22%2C%22Z13518K1%22%3A%2290544230009%22%7D%7D running them manually] produces the expected result. Judging from the timestamps within the detail view, pressing the Refresh-Button does not actually re-run the tests.
:::It seems that their results have been generated with the previous function. Can you make an effort to dis- and reconnect these two tests? The (unconfirmed) presumption is that tests only run on demand (event-triggered vs time scheduled). If this is true it may be noteworthy in the [[WF:FAQ]].
:::The first test, {{Z|29184}}, did not exhibit the same problem, it has been updated as expected. Because the execution timestamps of all three tests do not vary greatly, they were probably triggered, correctly so, by the same event. In theory they should then have consequently worked on the same function - since the test results suggest different, there could have either been a race condition or a stale cache, eventually with some tests running before the action that triggered them was fully committed. If this is not a timing issue, the response to the connection event might miss to update some of the data structures associated with the connected tests and simply run them unchanged, but this is speculative. --[[User:Cmuelle8|Cmuelle8]] ([[User talk:Cmuelle8|talk]]) 01:38, 3 January 2026 (UTC)
::::Yeah the cached failures are super annoying, I think they reduced the cache duration recently but it's still too high IMO. Disconnecting and reconnecting the Implementation triggered them to run again. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 03:16, 3 January 2026 (UTC)
:Can somebody connect the tests and implementation of this function? [[Z31047|arithmetical average of numbers (Z31047)]] [[User:Sys64ish|Sys64ish]] ([[User talk:Sys64ish|talk]]) 04:35, 13 January 2026 (UTC)
::The implementation seems to fail all the tests. I suspect from the use of <code>{}</code> in Python code. Besides, on the implementation ({{Z|Z31048}}), it used <code>sum</code> as variable, which I don't think allowable in Python. Try to use another variable name. Last, what is the expected result of {{Z|Z31050}}? [[User:NikolasKHF|NikolasKHF]] ([[User talk:NikolasKHF|talk]]) 04:50, 13 January 2026 (UTC)
:::Sorry, @[[User:Sys64ish|Sys64ish]], I just got the expected result from {{Z|31050}}. I have connected the test cases, but not yet for the implementation as you may want to fix it first(?) [[User:NikolasKHF|NikolasKHF]] ([[User talk:NikolasKHF|talk]]) 05:05, 13 January 2026 (UTC)
::::Fixed it, passes tests [[User:Sys64ish|Sys64ish]] ([[User talk:Sys64ish|talk]]) 05:09, 13 January 2026 (UTC)
:::::{{Done}} connected! [[User:NikolasKHF|NikolasKHF]] ([[User talk:NikolasKHF|talk]]) 05:11, 13 January 2026 (UTC)
:When I go to add a test to this function, for some reason I cannot select a fixed value for the expected value, the type is fixed to a function call. Can somebody fix this? [[Z31051|graph a one parameter function (Z31051)]] [[User:Sys64ish|Sys64ish]] ([[User talk:Sys64ish|talk]]) 06:16, 13 January 2026 (UTC)
::You need to select an equality function, which in this case would be {{Z|889}} with {{Z|20924}} as an argument. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 09:59, 13 January 2026 (UTC)
:::Just what I was about to say, only shorter!
:::I had a look at the Python implementation and that doesn’t appear to be viable, because a {{Z|Z8}} object is data, not a callable Python function. I think a composition is the only option here, but we don’t appear to have a [[Special:Search/:"z8k2 z1k1 z7 z7k1 z881 z881k1 Z20838"|generator function for ]]{{Z|Z20838}} yet ([[Special:Search/:"z8k2 z1k1 z7 z7k1 z881 z881k1 z19677"|nor for rationals]]). [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 10:39, 13 January 2026 (UTC)
:Can somebody connect the tests and implementations of this function? [[Z31079|decimal number range (Z31079)]] [[User:Sys64ish|Sys64ish]] ([[User talk:Sys64ish|talk]]) 13:57, 14 January 2026 (UTC)
::I’ve connected the test but there are a few issues with the implementation. The function has no return and the list to return shouldn’t be called range, as that overwrites the built-in range() function. Wikifunctions.Error requires a list of strings and you should probably guard against K3 being zero. Just let us know if you need any help with this. [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 14:22, 14 January 2026 (UTC)
:::I think I fixed the implementation [[User:Sys64ish|Sys64ish]] ([[User talk:Sys64ish|talk]]) 14:28, 14 January 2026 (UTC)
::::Looks close. You probably want to *return* Wikifunctions.Error in order to halt execution. The K1 and K2 arguments are float64s rather than strings, so they need coercing to str for the error. You still risk a divide by zero if K3 has no guard. [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 14:48, 14 January 2026 (UTC)
:::::I fixed it now, tests are passing(?) and when I run it locally it works as intended. [[User:Sys64ish|Sys64ish]] ([[User talk:Sys64ish|talk]]) 02:22, 15 January 2026 (UTC)
::::::{{done}}
::::::I created {{Z|31093}} to fix the last test, since your Python implementation was returning slightly inaccurate values for [[w:en:Floating-point_arithmetic#Accuracy_problems|reasons]]. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 11:11, 15 January 2026 (UTC)
:Can somebody connect the impl. and test cases of these functions? [[Z31051|generate real (float64) list from a function (Z31051)]] [[Z31111|increment (float64) (Z31111)]] [[Z31116|decrement (float64) (Z31116)]] [[User:Sys64ish|Sys64ish]] ([[User talk:Sys64ish|talk]]) 00:11, 16 January 2026 (UTC)
::Mostly. I see {{Z|Z31051}} has its Minimum and Maximum defined as integers rather than float64, as defined for the generator. Something has to change here, and I’m guessing it’s [[Z31051]], so I disconnected its implementation again. [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 01:31, 16 January 2026 (UTC)
:::all inputs except the input for the function are now float64 [[User:Sys64ish|Sys64ish]] ([[User talk:Sys64ish|talk]]) 13:36, 16 January 2026 (UTC)
::{{done}} [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 15:07, 16 January 2026 (UTC)
: Can someone here connect the implementation and test cases of this function: [[Z18679|Malay cardinal to ordinal]]? {{User|Hakimi97}}
:: {{Done}} [[User:Sys64ish|Sys32ish]] ([[User talk:Sys32ish|talk]]) 09:16, 19 January 2026 (UTC)
:Can someone please add the following IPA symbols needed for {{Z|Z1099}} to <code>lookup</code> in the JavaScript implementation {{Z|Z29880}}?
: "ɐ": "Q503323",
: "u": "Q29653",
: "ɕ": "Q605116",
: "x": "Q271603",
: "ʑ": "Q684085",
: "ɣ": "Q654670",
: "ʀ": "Q864677",
: "χ": "Q849796",
: "ʁ": "Q1054276",
: "o": "Q862579",
: "æ": "Q740768",
: "ɪ": "Q1070049",
: "ʊ": "Q1137807",
:Thank you! --[[User:Volvox|Volvox]] ([[User talk:Volvox|talk]]) 20:23, 27 February 2026 (UTC)
::I forgot to mention the ligatures
::"ʤ": "Q778145",
::"ʧ": "Q518603",
::which could be put next to the already present
::"dʒ": "Q778145",
::"tʃ": "Q518603",
::--[[User:Volvox|Volvox]] ([[User talk:Volvox|talk]]) 20:24, 27 February 2026 (UTC)
::{{done}} [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 00:33, 28 February 2026 (UTC)
:::Thank you! --[[User:Volvox|Volvox]] ([[User talk:Volvox|talk]]) 08:59, 28 February 2026 (UTC)
:::May I ask to add the pairs as well? They can also occur in {{Z|1099}}.
:::"ŋ": "Q463515"
:::"ø": "Q118519"
:::Thanks. --[[User:Volvox|Volvox]] ([[User talk:Volvox|talk]]) 18:48, 11 April 2026 (UTC)
::::{{done}} [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 06:57, 12 April 2026 (UTC)
:::::Thank you! (I overlooked that "ŋ" was already present). --[[User:Volvox|Volvox]] ([[User talk:Volvox|talk]]) 16:42, 12 April 2026 (UTC)
: Can someone connect up [[Z31844]] and [[Z31837]]. These are better than the other implementations on their pages. [[User:ChaoticVermillion|ChaoticVermillion]] ([[User talk:ChaoticVermillion|talk]]) 09:04, 1 March 2026 (UTC)
::{{done}} [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 11:12, 1 March 2026 (UTC)
:Hello, please connect {{Z|Z31729}}'s implementation and test cases. Thank you. [[User:Redmin|Redmin]] ([[User talk:Redmin|talk]]) 10:48, 8 March 2026 (UTC)
::The implementation does not seem to pass any of the test case. If you click on the [[File:Icon Information.svg|Icon_Information|15px|class=skin-invert-image]] (i) icon on the test status, you can find the error, what the implementation output, etc. Try to fix the implementation first. Thanks! [[User:NikolasKHF|NikolasKHF]] ([[User talk:NikolasKHF|talk]]) 11:22, 8 March 2026 (UTC)
::It seems you're returning a string value when it expects a HTML fragment. HTML fragment and string are different. Maybe you can change the output type to string? [[User:Sys64ish|Sys64ish]] ([[User talk:Sys64ish|talk]]) 11:44, 10 March 2026 (UTC)
:::Thanks for running the tests, @[[User:NikolasKHF|NikolasKHF]]; I couldn’t run them on my own (seemingly because I don’t have the needed right). I will fix the errors.
:::Thanks for looking into this, @[[User:Sys64ish|Sys64ish]]. I actually did want to return an HTML fragment instead of a string because I think that would be more useful on the wikis. However, it looks like I forgot to convert the string for most cases where an output is returned (hence why only one test failure actually complains about the output value being incorrect). [[User:Redmin|Redmin]] ([[User talk:Redmin|talk]]) 19:52, 10 March 2026 (UTC)
:::I have fixed the errors and added a new test case. Please connect the implementation and all the test cases now. Thank you. [[User:Redmin|Redmin]] ([[User talk:Redmin|talk]]) 10:23, 28 March 2026 (UTC)
::::{{done}} [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 13:04, 28 March 2026 (UTC)
:Can someone connect [[Z31994]] and [[Z31999]] with its tests and implementations. [[User:ChaoticVermillion|ChaoticVermillion]] ([[User talk:ChaoticVermillion|talk]]) 08:41, 11 March 2026 (UTC)
::{{done}} [[User:NikolasKHF|NikolasKHF]] ([[User talk:NikolasKHF|talk]]) 08:49, 11 March 2026 (UTC)
:::Oh yeah I also made another function now, [[Z32004]]. Can someone connect its implementations and tests. [[User:ChaoticVermillion|ChaoticVermillion]] ([[User talk:ChaoticVermillion|talk]]) 09:02, 11 March 2026 (UTC)
::::{{done}} [[User:NikolasKHF|NikolasKHF]] ([[User talk:NikolasKHF|talk]]) 09:23, 11 March 2026 (UTC)
:Can someone connect up [[Z32013]]. Also how do you become able to connect and disconnect implementations? Is it only available to extended confirmed users? [[User:ChaoticVermillion|ChaoticVermillion]] ([[User talk:ChaoticVermillion|talk]]) 10:06, 12 March 2026 (UTC)
::I don’t believe this implementation should be connected at this time. The existing Python implementation respects the community consensus represented by the test cases connected to {{Z|Z24144}}. What do you think, @[[User:99of9|99of9]]? [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 11:28, 12 March 2026 (UTC)
:::Fair, I didn't realise the test cases served as implicit consensus. [[User:ChaoticVermillion|ChaoticVermillion]] ([[User talk:ChaoticVermillion|talk]]) 11:42, 12 March 2026 (UTC)
::::No worries. It’s not clearly articulated, but we’ll clarify that later. [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 11:51, 12 March 2026 (UTC)
:::I'm not sure. At the moment it correctly reproduces all those we got "consensus" for. So in some sense this implementation is just suggesting/assuming extra fallbacks for those we haven't properly considered? One option would be to connect it and then add counter test cases if we ever felt we didn't like it's current suggestions. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 00:30, 13 March 2026 (UTC)
::::We should be careful… It’s not easy to tell how many test case results would be affected. It’s easy enough to disconnect again, of course, so I’m happy to give it a go while activity in this domain is at a low ebb. {{done}} [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 11:04, 13 March 2026 (UTC)
::To connect implementations, you need Functioneer rights, which can be requested here [[Wikifunctions:Requests for user groups]]. There is a 48-hour waiting period. [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 11:32, 12 March 2026 (UTC)
:Can someone connect up [[Z32027]] with its implementation and test? [[User:ChaoticVermillion|ChaoticVermillion]] ([[User talk:ChaoticVermillion|talk]]) 08:29, 13 March 2026 (UTC)
::And also [[Z32031]]. [[User:ChaoticVermillion|ChaoticVermillion]] ([[User talk:ChaoticVermillion|talk]]) 10:16, 13 March 2026 (UTC)
:::{{done}} [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 10:51, 13 March 2026 (UTC)
::{{done}} [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 10:50, 13 March 2026 (UTC)
{{tracked|T419920|resolved}}
:What is wrong with my implementation at [[Z32055]]? Looking at the failed test, it returns an error because 'dict' has no attribute 'split', but I didn't use split anywhere in my code. What is the issue? [[User:ChaoticVermillion|ChaoticVermillion]] ([[User talk:ChaoticVermillion|talk]]) 01:38, 14 March 2026 (UTC)
::I think that error message is coming from the [[Z20424|type converter]]. I think <code>Z20424K1['Z20420K2']['Z20342K1']</code> would be a dictionary representing a {{Z|16098}} but the code is written as though it were a string? Neither Python nor type converters are in my wheelhouse. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 03:49, 14 March 2026 (UTC)
:::I think this is [[:phab:T419920]] and presumed to be a consequence of this week’s rollout of “v2”. [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 11:08, 14 March 2026 (UTC)
::The type converter issue has gone away, but your Implementation doesn't quite match the tests (and composition), so I've disconnected it again. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 14:54, 20 March 2026 (UTC)
:What is wrong with my implementation at {{Z|Z32851}}? Btw, it would be really useful if errors said which dependency produced the error, instead of just saying "Error in evaluation". [[User:ChaoticVermillion|ChaoticVermillion]] ([[User talk:ChaoticVermillion|talk]]) 07:18, 28 March 2026 (UTC)
::You were catching the wrong {{Z|50}}, but then the error should have bubbled up so you could see it. I think there's something broken in the site w/ {{Z|11}} right now since [[Z32804|I ran into a similar problem yesterday]]. (And to contradict my note there, while debugging your implementation I saw the same behaviour regardless of if I used [[Z26107]] or a literal Z11, so it must be a bug in WikiLambda.) [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 08:14, 28 March 2026 (UTC)
:::Seems to be resolved now. Your implementation has already been connected. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 17:01, 2 April 2026 (UTC)
:Any guesses as to why [[Z32805]] is failing for [[Z33090]]? It says {{Z|507}} but still produces a value. Inspecting the actual and expected values ([https://www.wikifunctions.org/view/en/Z801?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z801%22%2C%22Z801K1%22%3A%5B%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z881%22%2C%22Z881K1%22%3A%22Z89%22%7D%2C%5B%22Z89%22%2C%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z27861%22%2C%22Z27861K1%22%3A%22%3Ctd%3E%3C%2Ftd%3E%22%7D%2C%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z27861%22%2C%22Z27861K1%22%3A%22%3Cth%3EA%3C%2Fth%3E%22%7D%2C%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z27861%22%2C%22Z27861K1%22%3A%22%3Cth%3EB%3C%2Fth%3E%22%7D%5D%2C%5B%22Z89%22%2C%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z27861%22%2C%22Z27861K1%22%3A%22%3Cth%3E1%3C%2Fth%3E%22%7D%2C%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z27861%22%2C%22Z27861K1%22%3A%22%3Ctd%3EA1%3C%2Ftd%3E%22%7D%2C%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z27861%22%2C%22Z27861K1%22%3A%22%3Ctd%3EB1%3C%2Ftd%3E%22%7D%5D%2C%5B%22Z89%22%2C%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z27861%22%2C%22Z27861K1%22%3A%22%3Cth%3E2%3C%2Fth%3E%22%7D%2C%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z27861%22%2C%22Z27861K1%22%3A%22%3Ctd%3EA2%3C%2Ftd%3E%22%7D%2C%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z27861%22%2C%22Z27861K1%22%3A%22%3Ctd%3EB2%3C%2Ftd%3E%22%7D%5D%5D%7D via echo]), I can see they're identical. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 22:44, 3 April 2026 (UTC)
::My guess is that there is a bug relating to {{Z|Z877}}. There are no guarantees, but switching the equality function seems successful. [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 22:56, 3 April 2026 (UTC)
:I suggested disconnecting implementations without mul fallback from {{Z|Z23753}} here: [[Talk:Z23753#Disconnect implementations without mul fallback]]. --[[User:Volvox|Volvox]] ([[User talk:Volvox|talk]]) 17:30, 11 April 2026 (UTC)
:Can someone please connect the implementation and test cases here? {{Z|Z31832}} Thanks! --[[User:Volvox|Volvox]] ([[User talk:Volvox|talk]]) 18:44, 11 April 2026 (UTC)
::{{D}} [[User:Dv103|Dv103]] ([[User talk:Dv103|talk]]) 18:49, 11 April 2026 (UTC)
:::Thank you! --[[User:Volvox|Volvox]] ([[User talk:Volvox|talk]]) 18:51, 11 April 2026 (UTC)
:Can someone please connect the implementation and test cases here? {{Z|Z33340}} Thanks! --[[User:Volvox|Volvox]] ([[User talk:Volvox|talk]]) 20:24, 11 April 2026 (UTC)
::{{done}} [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 21:04, 11 April 2026 (UTC)
:::Thanks! --[[User:Volvox|Volvox]] ([[User talk:Volvox|talk]]) 21:05, 11 April 2026 (UTC)
:Me again: can someone please connect the implementation and test cases of {{Z|Z33333}}? Thanks. --[[User:Volvox|Volvox]] ([[User talk:Volvox|talk]]) 21:51, 11 April 2026 (UTC)
::{{done}} [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 21:59, 11 April 2026 (UTC)
:::Thank you! --[[User:Volvox|Volvox]] ([[User talk:Volvox|talk]]) 22:15, 11 April 2026 (UTC)
:Is it possible to add the variant of Chinese in {{Z|Z24309}}? The following is the fallback mechanism based on practical implementation on zhwiki ([[:zh:Wikipedia:地区词处理]]).
:<syntaxhighlight lang="python">
'zh': ['zh', 'zh-hant', 'zh-hans' 'mul', 'en'],
'zh-hant': ['zh-hant', 'zh', 'mul', 'en'],
'zh-hans': ['zh-hans', 'zh', 'mul', 'en'],
'zh-tw': ['zh-tw', 'zh-hant', 'zh', 'mul', 'en'],
'zh-hk': ['zh-hk', 'zh-hant', 'zh-tw', 'zh', 'mul', 'en'],
'zh-mo': ['zh-mo', 'zh-hk', 'zh-hant', 'zh-tw', 'zh', 'mul', 'en'],
'zh-cn': ['zh-cn', 'zh-hans', 'zh', 'mul', 'en'],
'zh-sg': ['zh-sg', 'zh-hans', 'zh-cn', 'zh', 'mul', 'en'],
'zh-my': ['zh-my', 'zh-sg', 'zh-hans', 'zh-cn', 'zh', 'mul', 'en'],
</syntaxhighlight>
: Is the function supposed to be hardcoded like this? [[User:Sun8908|Sun8908]] ([[User talk:Sun8908|talk]]) 10:06, 13 April 2026 (UTC)
:: Sorry, I think we can omit zh-hant and zh-hans, as they are just the default implementation. I am also not sure whether zh should be included. [[User:Sun8908|Sun8908]] ([[User talk:Sun8908|talk]]) 11:08, 13 April 2026 (UTC)
::{{d}} [[User:Dv103|Dv103]] ([[User talk:Dv103|talk]]) 14:07, 13 April 2026 (UTC)
::The list is hardcoded because, for now, there is no better option. I tried to implement the function with an external Typed map, but the composition is too long and convoluted. [[User:Dv103|Dv103]] ([[User talk:Dv103|talk]]) 14:08, 13 April 2026 (UTC)
:::Now I've managed to do it: the external map is {{Z|Z33395}}. [[User:Dv103|Dv103]] ([[User talk:Dv103|talk]]) 14:23, 13 April 2026 (UTC)
::::Thank you @[[User:Dv103|Dv103]]. There are a few corrections that needs to be done:
::::*In both [[Z32013]] and [[Z33395]], there is an extra line of <code>"zh-hk": "zh-hant"</code>.
::::*Per Cantonese (yue) local consensus, the fallback language of yue (and yue-hans/t) should be English (en) rather than zh(-xx).
::::*There are some duplicates in the resulting list (see [[Z33436]]) since it falls into the while-loop multiple times (when 'lastcode' appears in 'codes' and before "mul" and "en" are added). This can be fixed by either modifying the while-loop (perhaps better approach) or hardcoding the whole list including mul and en.
::::*After doing some research, I think the fallback chain should follow the [https://gerrit.wikimedia.org/r/plugins/gitiles/mediawiki/core/+/refs/heads/master/languages/messages/ gerrit files]. Please update the fallback chain according to the gerrit files. (Also, add zh-hant and zh-hans according to gerrit (but fix the point above first, otherwise there would be an infinite loop))
::::Thank you. [[User:Sun8908|Sun8908]] ([[User talk:Sun8908|talk]]) 07:26, 14 April 2026 (UTC)
:::::@[[User:Winston Sung|Winston Sung]], could you look into this and see if we can utilize gerrit directly? Or any other approaches that is better than hardcoding. Thank you. [[User:Sun8908|Sun8908]] ([[User talk:Sun8908|talk]]) 09:05, 14 April 2026 (UTC)
::::::Once they are in they won't change often, so this is not a terrible case for hardcoding. --~ [[User:99of9|99of9]] ([[User talk:99of9|talk]]) 11:34, 14 April 2026 (UTC)
:::::I also don't see why we have to follow gerrit. Users here are welcome to come to consensus about how their language should operate on WF. Gerrit could be a good starting point, but I think we should retain agency. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 11:36, 14 April 2026 (UTC)
::::::Fair point. I think we can follow gerrit for now, as it should represent a consensus (more or less) for their language on other Wikimedia project. It would indeed not be a problem for hardcoding. [[User:Sun8908|Sun8908]] ([[User talk:Sun8908|talk]]) 12:19, 14 April 2026 (UTC)
:{{Z|26107}} is still broken it seems. And unlike last time I ran into it, [[Z33664|this time]] I don't have the luxury of using a literal Z11. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 09:33, 18 April 2026 (UTC)
::To me it seems that it is working fine. Could you create a test that fails? [[User:Dv103|Dv103]] ([[User talk:Dv103|talk]]) 09:43, 18 April 2026 (UTC)
:::[[Z33730]], and from last time, [[Z32804]] [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 09:48, 18 April 2026 (UTC)
::::I've connected those, and disabled the Implementation [[Z27080]] for now since the Function's other Implementations pass them. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 10:14, 18 April 2026 (UTC)
::::These are not standard tests, because the outer call of the test is not the tested function. I wonder if that is causing the failures. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 11:18, 18 April 2026 (UTC)
:::::Pretty sure it must be a v2 bug. The argument references must be resolved upstream; once they arrive here, it’s too late. [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 11:25, 18 April 2026 (UTC)
{{tracked|T423853}}
::I think it’s the apply that is failing. The argument references [https://www.wikifunctions.org/view/en/Z801?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z801%22%2C%22Z801K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z13436%22%2C%22Z13436K1%22%3A%22Z26107%22%2C%22Z13436K2%22%3A%22Z1444%22%2C%22Z13436K3%22%3A%5B%22Z6%22%2C%221%22%2C%222%22%5D%7D%7D appear unresolved]. [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 09:59, 18 April 2026 (UTC
::::I’ve added {{Z|Z33748}} to demonstrate the problem. I’ll file a ticket tomorrow, referencing {{Z|Z32804}} as well. [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 12:09, 18 April 2026 (UTC)
:Ugh I accidentally entered [[Z34853|this expression]] as the ''type'' for a persistent object instead of its value, and now I can't edit it. Please fix. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 03:12, 6 May 2026 (UTC)
::Sorry, the type of an existing object can only be changed by an administrator or staff. Please request at [[Wikifunctions:Administrators' noticeboard]] if no one spots your request here. [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 08:19, 6 May 2026 (UTC)
:::I briefly tried yesterday, but couldn't see a way to do it in the interface. Perhaps easier to just make a new object and delete this one? --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 22:03, 6 May 2026 (UTC)
::::I could be wrong, but I think you just need to copy the list, replace the call to {{Z|Z801}} with a call to {{Z|Z881}} and paste in the copied list. [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 22:28, 6 May 2026 (UTC)
:::::I tried this, but after Z881 it gives me an actual new list where I could past the copied list as the first item, but not as the whole list. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 23:45, 6 May 2026 (UTC)
::::::Makes sense. A persistent function call is not permitted, after all. [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 12:54, 7 May 2026 (UTC)
:{{Z|26779}} seems to have stopped working and I'm not sure why. Both of my attempts at alternate Implementations failed, maybe I've just misunderstood the structure of enum objects. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 13:56, 1 July 2026 (UTC)
:Most of [[Z29871]] works in isolation, but the final call to {{Z|28316}} is returning an empty list despite the predicate function returning true for exactly 1 element. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 07:39, 4 July 2026 (UTC)
::I wrote 2 new Implementations, [[Z37372|a composition]] which should be slower than the one I had but avoids that problematic call, and [[Z37373|a fast one in JS]] which I'm sure will break for certain datatypes like Z11. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 07:57, 7 July 2026 (UTC)
:The [[Z24007|reader for Z20420]] can produce dates which appear normal but are malformed: see test {{Z|39794}}. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 13:09, 21 August 2026 (UTC)
::Thanks for pointing that out. I think I’ve fixed that now, but there may be similar issues in other readers. [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 15:01, 21 August 2026 (UTC)
:I can't figure out why [[Z40824|this recursive composition]] is failing [[Z40826|this trivial test]]. K2 of the pair is an empty list, so the n-ary apply calls should all be no-ops, then the concat should return an empty string, but it's appending "\n\t". [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 19:23, 1 September 2026 (UTC)
==== Connection / Disconnection requests ====
Moved to [[Wikifunctions:Requests for connection and disconnection]]
== Functional for description ==
how to get description for something [[User:BigKrow|BigKrow]] ([[User talk:BigKrow|talk]]) 21:47, 29 August 2026 (UTC)
:on abstract Wikipedia [[User:BigKrow|BigKrow]] ([[User talk:BigKrow|talk]]) 21:48, 29 August 2026 (UTC)
:An Item's description, [https://www.wikifunctions.org/wiki/Z34953?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z34953%22%2C%22Z34953K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z23076%22%2C%22Z23076K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z30120%22%2C%22Z30120K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q277514%22%7D%2C%22Z30120K2%22%3A%5B%22Z6030%22%2C%22Z6034%22%5D%2C%22Z30120K3%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z24144%22%2C%22Z24144K1%22%3A%22Z1002%22%2C%22Z24144K2%22%3A%7B%22Z1K1%22%3A%22Z40%22%2C%22Z40K1%22%3A%22Z41%22%7D%2C%22Z24144K3%22%3A%7B%22Z1K1%22%3A%22Z40%22%2C%22Z40K1%22%3A%22Z42%22%7D%7D%2C%22Z30120K4%22%3A%5B%22Z6092%22%5D%7D%7D%2C%22Z34953K2%22%3A%22Z1002%22%7D like this]? Or are you looking for sentences to describe something? [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 03:14, 30 August 2026 (UTC)
::sentence @[[User:YoshiRulz|YoshiRulz]] [[User:BigKrow|BigKrow]] ([[User talk:BigKrow|talk]]) 12:48, 30 August 2026 (UTC)
:::[[abstract:Project:Useful functions for article composition#Common sentence templates]] [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 12:53, 30 August 2026 (UTC)
njqjj46tz01bce18qx3f361md8v2oy0
Wikifunctions:Requests for user groups
4
3790
307332
306671
2026-09-02T03:08:08Z
SpBot
978
archive 1 section: 1 to [[Wikifunctions:Requests for user groups/Archive/2026/08]] (after section [[Wikifunctions:Requests for user groups/Archive/2026/08#BlueSkyWalker|BlueSkyWalker]]) - previous edit: [[:User:Ameisenigel|Ameisenigel]], 2026-08-31 18:12
307332
wikitext
text/x-wiki
{{shortcut|[[WF:RFG]]|[[WF:PERM]]|[[WF:RFUG]]}}
This is the place to request specific user groups:
{{ombox
| image = [[File:Echo user-rights icon.svg|60x60px|alt=|link=]]
| text = '''How to make a request'''
# Edit the section for the user group you wish to request
# Copy the following and ''append'' it to the text-area:
## Requests without required discussion: <code><nowiki>{{subst:rfg|1={{subst:REVISIONUSER}}|2=reason ~~~~}}</nowiki></code>
## Functioneer requests (required 48-hour discussion): <code><nowiki>{{subst:rfg|3=1|length=2 days|1={{subst:REVISIONUSER}}|2=reason ~~~~}}</nowiki></code>
## Requests with required 1-week discussion: <code><nowiki>{{subst:rfg|3=1|1={{subst:REVISIONUSER}}|2=reason ~~~~}}</nowiki></code>
# Replace <code>reason</code> with a rationale based on the guidelines specified for the user group
}}
: ''Archived requests can be found at [[Wikifunctions:Requests for user groups/Archive]]''
{{Autoarchive resolved section
| age = 1
| archive = ((FULLPAGENAME))/Archive/((year))/((month:##))
| level = 3
}}
== Functioneer ==
{{see also|Wikifunctions:Functioneers}}
=== Armin hpj ===
:{{UL2.0|1=Armin hpj|contributions=1|deletedcontributions=1|editcount=1|blocklog=1|rightslog=1|crosswiki=1}}
:''Discussion open until: 15:03, 27 August 2026 (UTC)''
:I have experienceed the Wikifunctions since 19th July. As of now, I want to become an functioneer because I am creating functions within the implementation and sometimes the test cases. and if I become one of the functioneer, I would connect the implementation to the functions if the function is useful. [[User:Armin hpj|Armin hpj]] ([[User talk:Armin hpj|talk]]) 15:03, 25 August 2026 (UTC)
::Please can you add test cases on the functions you have created already. It is important for every function to have tests. You'll find that some are not working, so you might want to try to fix those implementations too. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 00:05, 26 August 2026 (UTC)
=== Ornithorynque liminaire ===
:{{UL2.0|1=Ornithorynque liminaire|contributions=1|deletedcontributions=1|editcount=1|blocklog=1|rightslog=1|crosswiki=1}}
:''Discussion open until: 15:54, 1 September 2026 (UTC)''
:Hi! I translated many functions into French the last days but also started to create tests (such as {{Z|Z40634}} and {{Z|Z40158}}) and implementations (starting with French: {{Z|Z40562}}). Approval for connections are super fast but I think we would still gain time if I was a functionner (and I think I'm now confident enough to not destroy everything by mistake). [[User:Ornithorynque liminaire|Ornithorynque liminaire (she/they)]] ([[User talk:Ornithorynque liminaire|talk]]) 15:54, 30 August 2026 (UTC)
== Autopatroller ==
{{See also|Wikifunctions:Autopatrollers}}
== Administrator ==
{{see also|Wikifunctions:Administrators}}
== Interface administrator ==
{{see also|Wikifunctions:Interface administrators}}
== Translation administrator ==
{{see also|Wikifunctions:Translation administrators}}
== Bureaucrat ==
{{see also|Wikifunctions:Bureaucrats}}
== Miscellaneous requests ==
== See also ==
* [[Wikifunctions:User groups]]
** [[mw:Help:Wikifunctions/User rights]] for additional context about functioneers, maintainers, sysops, and bureaucrats
[[Category:User groups|*]]
ex5f11or1e2f6u05itmi6z20hy89mlo
Wikifunctions:FAQ/nl
4
19760
307246
296923
2026-09-01T19:43:32Z
HanV
6833
Created page with "=== Hoe kan ik de software lokaal instellen om het te hacken? ==="
307246
wikitext
text/x-wiki
<languages/>
{{shortcut|[[WF:FAQ]]}}
Dit is een pagina toegewijd aan de veelgestelde vragen over Wikifuncties. Alstublieft, voel u vrij om uw eigen vragen in de [[Wikifunctions talk:FAQ|overlegpagina]] te stellen, indien uw vragen hier niet zijn vermeld!
Bekijk ook onze [[:m:Special:MyLanguage/Abstract Wikipedia/FAQ|veelgestelde vragen op Meta]] met betrekking tot meer algemene vragen over Wikifuncties en Abstract Wikipedia.
__TOC__
<span id="Introduction"></span>
== Introductie ==
<span id="What_is_this_project_about?"></span>
=== Waar gaat dit project over? ===
Wikifuncties is een nieuw Wikimedia-project dat een catalogus biedt van allerlei functies die iedereen kan oproepen, schrijven, onderhouden en gebruiken. Het biedt ook de onderliggende technologie die uiteindelijk de vertaling van taalonafhankelijke artikelen van Abstract Wikipedia in de taal van elke Wikipedia mogelijk maakt. Zo kan iedereen artikelen in hun voorkeurstaal bijdragen en lezen.
<span id="What_is_a_function?"></span>
== Wat is een functie? ==
Functies zijn een vorm van kennis die vragen kan beantwoorden, zoals hoeveel dagen er zijn verstreken tussen twee data of de afstand tussen twee steden. Gecompliceerde functies kunnen meer ingewikkelde vragen beantwoorden, zoals het volume van een driedimensionale vorm, de afstand tussen Mars en Venus op een bepaalde datum, of de vraag of twee soorten tegelijkertijd leefden.
We gebruiken functies in veel soorten kennisverzoeken, zoals het stellen van een vraag aan een zoekmachine. De sjablonen, zoals [[:w:en:Template:Convert|Template:Convert]] en [[:w:en:Template:Age|Template:Age]] op de Engelstalige Wikipedia, zijn ook voorbeelden van functies die al in veel Wikipedia's worden gebruikt, in wikitekst en Lua zijn geschreven en handmatig naar elke wiki gekopieerd zijn waar die nodig is.
<span id="What_is_an_implementation?"></span>
== Wat is een implementatie? ==
Een implementatie is een bepaalde manier om een functie uit te voeren. Een implementatie is een recept dat de stappen vermeldt die nodig zijn om de functie uit te voeren. Het kan een stukje code zijn in een programmeertaal of een combinatie van andere functies. Een functie kan veel implementaties hebben, die allemaal gelijkwaardig moeten zijn.
<span id="What_is_a_test?"></span>
=== Wat is een test? ===
Een test is een manier om te bepalen of een bepaalde functie het juiste doet. Een functie zal meestal meerdere testers hebben, die elk een bepaalde invoer aan de functie en de uitvoersvoorwaarden specificeren.
Bijvoorbeeld, testen voor een functie "title case" kunnen omvatten: “<span dir="ltr" lang="en">abc</span>” moet “<span dir="ltr" lang="en">Abc</span>” worden; “<span dir="ltr" lang="en">war and peace</span>” moet “<span dir="ltr" lang="en">War and Peace</span>” worden; “<span dir="ltr" lang="ru">война и мир</span>” moet “<span dir="ltr" lang="ru">Война и мир</span>” worden; en “<span dir="ltr" lang="en">123</span>” moet “<span dir="ltr" lang="en">123</span>” blijven.
<span id="Which_features_are_available_now,_which_will_be_soon_available,_and_which_are_further_away?"></span>
=== Welke mogelijkheden zijn nu beschikbaar, welke zijn straks beschikbaar, en welke komen later? ===
* Bij de lancering:
** We hebben de mogelijkheid om functies te hebben die werken met tekenreeksen en booleans.
** Wikifuncties zullen vanaf het begin volledig internationaal worden. Het kan in elke taal worden gebruikt.
* [[Wikifunctions:Status|Huidige ontwikkeling]]:
** Generieke typen en generieke functies worden niet volledig ondersteund.
** Het toevoegen van typen zal vooralsnog iets zijn dat beperkt is tot het ontwikkelaarsteam. In de toekomst zal de gemeenschap zelf meer soorten kunnen toevoegen. Er is nog veel werk te doen om de typen zich soepeler te laten gedragen.
*** Een bijzonder interessant type is binaire gegevens en met name bestanden.
** We ondersteunen momenteel twee programmeertalen voor implementaties: JavaScript en Python. In de toekomst willen we nog veel meer ondersteunen.
** Nu i het ''niet'' mogelijk om andere functies op te roepen van implementaties die in een programmeertaal zijn geschreven. Dit is nu alleen mogelijk door middel van compositie.
* In de toekomst:
** Het zal mogelijk zijn om Wikifuncties-functies uit andere Wikimedia-projecten aan te roepen en hun resultaten te integreren in de uitvoer van de pagina.
** Het zal mogelijk zijn om gegevens uit Wikidata te gebruiken bij functies.
** Het zal mogelijk zijn om gegevenssets te roepen uit de Data-naamruimte op Commons.
<span id="How_is_Wikifunctions_multilingual?"></span>
=== Hoe is Wikifuncties meertalig? ===
{{main|Special:MyLanguage/Help:Multilingual}}
Wikifuncties en Abstract Wikipedia zijn meertalig op verschillende manieren die elkaar niet beïnvloeden:
* '''Wikifuncties is meertalig op basis van zijn inhoud en gebruikersinterface.''' Gebruikers kunnen functies op Wikifuncties in iedere natuurlijke taal lezen en roepen. Hier staat de “tekenreeks samenvoegen” functie in [https://www.wikifunctions.org/view/en/Z10000 Engels], [https://www.wikifunctions.org/view/pl/Z10000 Pools], en [https://www.wikifunctions.org/view/he/Z10000 Hebreeuws], en het is beschikbaar in veel meer talen.
* '''Bijdragers kunnen Wikifuncties met hun eigen talen bewerken en verbeteren.''' Ook kunnen implementaties in de natuurlijke taal van de bijdrager worden bewerkt. Bijvoorbeeld de samenvoeging van de “en” functie kan bewerkt zijn in [https://www.wikifunctions.org/wiki/Z11223?action=edit&uselang=de Duits], [https://www.wikifunctions.org/wiki/Z11223?action=edit&uselang=en Engels] of een andere uit ongeveer 300 talen.
* '''Wikifuncties functies kunnen worden gebruikt om resultaten voor iedere natuurlijke taal te maken.''' De gemeenschap is bezig met het creëren van een aantal functies om de tekstgeneratie in veel natuurlijke talen te ondersteunen. We hebben functies voor [[Wikifunctions:Catalogue#Breton|het Bretons]], [[Wikifunctions:Catalogue#Rohingya|het Rohingya]], [[Wikifunctions:Catalogue#English|het Engels]] en veel andere talen.
* '''Functies in Wikifuncties kunnen in verschillende programmeertalen worden geïmplementeerd.''' Bijvoorbeeld de [[Z10000|samenvoegen-functie]] is geïmplementeerd in zowel [[Z10005|JavaScript]] als [[Z10004|Python]].
<span id="Which_programming_languages_does_Wikifunctions_currently_support?_Which_programming_languages_will_be_supported_in_the_future?"></span>
=== Welke programmeertalen zijn momenteel door Wikifuncties ondersteund? Welke programmeertalen worden in de toekomst ondersteund? ===
{{main|WF:programming languages}}
Momenteel ondersteunt Wikifuncties implementaties die zijn geschreven in JavaScript en Python. We willen in de toekomst meer programmeertalen ondersteunen. We hopen in 2025 nog minstens één andere programmeertaal toe te voegen (maar dat hebben we nog niet besloten).
<span id="How_will_Wikifunctions_be_integrated_into_other_projects?"></span>
=== Hoe wordt Wikifuncties geïntegreerd in andere projecten? ===
Wikifuncties is de eerste stap naar het bouwen van Abstract Wikipedia. Onze focus op de korte termijn zal het ondersteunen van de gemeenschap zijn en het verbeteren op basis van feedback. Tegelijkertijd zullen we beginnen met het proces om het te integreren met Wikipedia en Wikidata, wat bredere toepassingen in het echte leven mogelijk maakt en ons dichter bij de visie van Abstract Wikipedia brengt.
Bijdragers zullen functies op de Wikifuncties-site vanuit hun wiki's kunnen oproepen. Het resultaat van de functie-aanroep wordt voor de lezers van de wiki weergegeven. Dit kan bijvoorbeeld worden gebruikt om de leeftijd van een persoon, de bevolkingsdichtheid op basis van bevolking- en oppervlaktegegevens van Wikidata berekenen, of om een grafiek te tekenen en te integreren in een bepaald artikel.
Een andere optie om Wikifuncties te integreren is om een interactieve functieoproep-interface binnen hun wiki te integreren. Dit kan bijvoorbeeld worden gebruikt in een Wikipedia-artikel om het resultaat van een natuurkundige vergelijking dynamisch te berekenen op basis van door de lezer verstrekte parameters en te interageren met wiskundige functies, enz.
<span id="What_Wikifunctions_is_not"></span>
=== Wat Wikifuncties niet is ===
Alstublieft zie [[Special:MyLanguage/Wikifunctions:What Wikifunctions is not|Wikifuncties:Wat Wikifuncties niet is]] voor meer informatie daarvoor.
<span id="What_license_will_the_functions_and_derived_content_be_under?"></span>
=== Onder welke licentie zullen de functies en afgeleide inhoud beschikbaar zijn? ===
Op basis van de discussie die [[:m:Special:MyLanguage/Abstract Wikipedia/Licensing discussion|op Meta tussen november en december 2021]] plaatsvond, zullen alle bijdragen aan Wikifuncties en de bredere Abstract Wikipedia-projecten onder vrije licenties worden gepubliceerd. In het bijzonder:
* [[Special:MyLanguage/Wikifunctions:Glossary#Content|Tekstuele inhoud]] op Wikifuncties zal worden gepubliceerd onder [[w:nl:Creative Commons-licentie|CC BY-SA 4.0]].
* [[Special:MyLanguage/Wikifunctions:Glossary#Function|Functiehandtekeningen]] en andere gestructureerde inhoud op Wikifuncties zullen worden gepubliceerd onder [[w:nl:CC0|CC 0]].
* [[Special:MyLanguage/Wikifunctions:Glossary#Implementation|Code-implementaties]] in Wikifuncties zullen worden gepubliceerd onder de [[w:nl:Apache-licentie|Apache 2-licentie]].
* [[Special:MyLanguage/Wikifunctions:Glossary#Content|Abstracte inhoud]] voor Abstract Wikipedia wordt gepubliceerd onder CC BY-SA 4.0.
Er zijn nog punten die in de toekomst moeten worden aangepakt, zoals de licentie van de gegenereerde inhoud van de abstracte inhoud. We zijn van plan om samen met de juridische afdeling een uitgebreider document op te stellen over hoe mensen de code van Wikifuncties zo pijnloos mogelijk kunnen hergebruiken, terwijl ze zich aan de licentie houden.
<span id="Contributing"></span>
== Bijdragen ==
<span id="I'm_new_here._What_is_there_for_me_to_do_and_how_can_I_help?"></span>
=== Ik ben nieuw hier. Wat is er voor mij te doen en hoe kan ik helpen? ===
Welkom! We zijn erg blij dat u hier bent! Er zijn veel mogelijkheden om bij te dragen aan Wikifuncties, van het creëren van nieuwe functies tot het verbeteren en vertalen van de documentatie. Als u op zoek bent naar manieren om betrokken te raken, raden wij u aan, afhankelijk van uw niveau van comfort, om een nieuwe functie voor te stellen over een onderwerp waarin u interesse heeft. Of zelfs die functie aanmaken. U kunt helpen met vertalingen. U kunt onze documentatie lezen en verbeteren. U kunt helpen met het organiseren van de gemeenschap.
<span id="How_do_I_create_a_new_function,_implementation,_or_test?"></span>
=== Hoe creëer ik een nieuwe functie, implementatie of test? ===
Om te zien hoe u een nieuwe functie, implementatie, of test kunt aanmaken, ga naar [[Special:MyLanguage/Wikifunctions:Introduction|de introductie]].
Om meer gedetailleerd te zien hoe u een implementatie maakt, zie [[Special:MyLanguage/Wikifunctions:How to create implementations|Implementaties maken]].
<span id="What_should_I_edit_first?"></span>
=== Wat moet ik eerst bewerken? ===
Als u meerdere talen beheerst dan kunt u op pagina [[Special:ListMissingLabels]] functies zoeken die nog geen labels en beschrijvingen in uw talen hebben en deze helpen toe te voegen.
Als u interesse heeft in een onderwerp dat functies in Wikifuncties zou kunnen bevatten, maar dat nog niet kunt, of als u meer ideeën voor functies hebt, kunt u naar de pagina gaan om [[Wikifunctions:Suggest a new function|nieuwe functies voor te stellen]] en uw ideeën presenteren.
Als u programmeur bent van JavaScript of Python wilt u misschien functies controleren die nog geen implementaties hebben in JavaScript of Python en die proberen te schrijven.
<span id="Where_can_I_go_for_help?"></span>
=== Waar kan ik hulp krijgen? ===
Uw eerste stop zou het [[Special:MyLanguage/Help:Contents|Hulpportaal]] moeten zijn, waar u alle documentatie kunt vinden met betrekking tot het gebruik en bewerken van Wikifuncties. Als u nog steeds niet verder kunt, dan kunt u een bericht op [[Wikifunctions:Project chat|Projectchat]] plaatsen, iemand zal uw vraag dan beantwoorden.
<span id="How_do_we_sort_or_categorize_functions?"></span>
=== Hoe sorteren of categoriseren wij functies? ===
{{Tracked|T285424}}
Voorlopig is het het beste om handmatig door [[Special:MyLanguage/Wikifunctions:Catalogue|pagina's in de namespace Wikifuncties]] te bladeren. Een andere optie zou zijn via de overlegpagina van de gegeven functie. Wij zullen deze inspanningen volgen en met de gemeenschap bespreken welke wijzigingen in het systeem voor deze taak nuttig zouden zijn.
<span id="How_can_I_setup_the_software_locally_to_hack_on_it?"></span>
=== Hoe kan ik de software lokaal instellen om het te hacken? ===
<div lang="en" dir="ltr" class="mw-content-ltr">
See [[Special:MyLanguage/Wikifunctions:Hacking on the evaluator and orchestrator|Hacking on the evaluator and orchestrator]].
</div>
[[Category:FAQ| {{#translation:}}]]
qpqbv54h0vkmbj9itjdx9vqueaegyup
307248
307246
2026-09-01T19:44:07Z
HanV
6833
Created page with "Zie [[$1|deze pagina]]."
307248
wikitext
text/x-wiki
<languages/>
{{shortcut|[[WF:FAQ]]}}
Dit is een pagina toegewijd aan de veelgestelde vragen over Wikifuncties. Alstublieft, voel u vrij om uw eigen vragen in de [[Wikifunctions talk:FAQ|overlegpagina]] te stellen, indien uw vragen hier niet zijn vermeld!
Bekijk ook onze [[:m:Special:MyLanguage/Abstract Wikipedia/FAQ|veelgestelde vragen op Meta]] met betrekking tot meer algemene vragen over Wikifuncties en Abstract Wikipedia.
__TOC__
<span id="Introduction"></span>
== Introductie ==
<span id="What_is_this_project_about?"></span>
=== Waar gaat dit project over? ===
Wikifuncties is een nieuw Wikimedia-project dat een catalogus biedt van allerlei functies die iedereen kan oproepen, schrijven, onderhouden en gebruiken. Het biedt ook de onderliggende technologie die uiteindelijk de vertaling van taalonafhankelijke artikelen van Abstract Wikipedia in de taal van elke Wikipedia mogelijk maakt. Zo kan iedereen artikelen in hun voorkeurstaal bijdragen en lezen.
<span id="What_is_a_function?"></span>
== Wat is een functie? ==
Functies zijn een vorm van kennis die vragen kan beantwoorden, zoals hoeveel dagen er zijn verstreken tussen twee data of de afstand tussen twee steden. Gecompliceerde functies kunnen meer ingewikkelde vragen beantwoorden, zoals het volume van een driedimensionale vorm, de afstand tussen Mars en Venus op een bepaalde datum, of de vraag of twee soorten tegelijkertijd leefden.
We gebruiken functies in veel soorten kennisverzoeken, zoals het stellen van een vraag aan een zoekmachine. De sjablonen, zoals [[:w:en:Template:Convert|Template:Convert]] en [[:w:en:Template:Age|Template:Age]] op de Engelstalige Wikipedia, zijn ook voorbeelden van functies die al in veel Wikipedia's worden gebruikt, in wikitekst en Lua zijn geschreven en handmatig naar elke wiki gekopieerd zijn waar die nodig is.
<span id="What_is_an_implementation?"></span>
== Wat is een implementatie? ==
Een implementatie is een bepaalde manier om een functie uit te voeren. Een implementatie is een recept dat de stappen vermeldt die nodig zijn om de functie uit te voeren. Het kan een stukje code zijn in een programmeertaal of een combinatie van andere functies. Een functie kan veel implementaties hebben, die allemaal gelijkwaardig moeten zijn.
<span id="What_is_a_test?"></span>
=== Wat is een test? ===
Een test is een manier om te bepalen of een bepaalde functie het juiste doet. Een functie zal meestal meerdere testers hebben, die elk een bepaalde invoer aan de functie en de uitvoersvoorwaarden specificeren.
Bijvoorbeeld, testen voor een functie "title case" kunnen omvatten: “<span dir="ltr" lang="en">abc</span>” moet “<span dir="ltr" lang="en">Abc</span>” worden; “<span dir="ltr" lang="en">war and peace</span>” moet “<span dir="ltr" lang="en">War and Peace</span>” worden; “<span dir="ltr" lang="ru">война и мир</span>” moet “<span dir="ltr" lang="ru">Война и мир</span>” worden; en “<span dir="ltr" lang="en">123</span>” moet “<span dir="ltr" lang="en">123</span>” blijven.
<span id="Which_features_are_available_now,_which_will_be_soon_available,_and_which_are_further_away?"></span>
=== Welke mogelijkheden zijn nu beschikbaar, welke zijn straks beschikbaar, en welke komen later? ===
* Bij de lancering:
** We hebben de mogelijkheid om functies te hebben die werken met tekenreeksen en booleans.
** Wikifuncties zullen vanaf het begin volledig internationaal worden. Het kan in elke taal worden gebruikt.
* [[Wikifunctions:Status|Huidige ontwikkeling]]:
** Generieke typen en generieke functies worden niet volledig ondersteund.
** Het toevoegen van typen zal vooralsnog iets zijn dat beperkt is tot het ontwikkelaarsteam. In de toekomst zal de gemeenschap zelf meer soorten kunnen toevoegen. Er is nog veel werk te doen om de typen zich soepeler te laten gedragen.
*** Een bijzonder interessant type is binaire gegevens en met name bestanden.
** We ondersteunen momenteel twee programmeertalen voor implementaties: JavaScript en Python. In de toekomst willen we nog veel meer ondersteunen.
** Nu i het ''niet'' mogelijk om andere functies op te roepen van implementaties die in een programmeertaal zijn geschreven. Dit is nu alleen mogelijk door middel van compositie.
* In de toekomst:
** Het zal mogelijk zijn om Wikifuncties-functies uit andere Wikimedia-projecten aan te roepen en hun resultaten te integreren in de uitvoer van de pagina.
** Het zal mogelijk zijn om gegevens uit Wikidata te gebruiken bij functies.
** Het zal mogelijk zijn om gegevenssets te roepen uit de Data-naamruimte op Commons.
<span id="How_is_Wikifunctions_multilingual?"></span>
=== Hoe is Wikifuncties meertalig? ===
{{main|Special:MyLanguage/Help:Multilingual}}
Wikifuncties en Abstract Wikipedia zijn meertalig op verschillende manieren die elkaar niet beïnvloeden:
* '''Wikifuncties is meertalig op basis van zijn inhoud en gebruikersinterface.''' Gebruikers kunnen functies op Wikifuncties in iedere natuurlijke taal lezen en roepen. Hier staat de “tekenreeks samenvoegen” functie in [https://www.wikifunctions.org/view/en/Z10000 Engels], [https://www.wikifunctions.org/view/pl/Z10000 Pools], en [https://www.wikifunctions.org/view/he/Z10000 Hebreeuws], en het is beschikbaar in veel meer talen.
* '''Bijdragers kunnen Wikifuncties met hun eigen talen bewerken en verbeteren.''' Ook kunnen implementaties in de natuurlijke taal van de bijdrager worden bewerkt. Bijvoorbeeld de samenvoeging van de “en” functie kan bewerkt zijn in [https://www.wikifunctions.org/wiki/Z11223?action=edit&uselang=de Duits], [https://www.wikifunctions.org/wiki/Z11223?action=edit&uselang=en Engels] of een andere uit ongeveer 300 talen.
* '''Wikifuncties functies kunnen worden gebruikt om resultaten voor iedere natuurlijke taal te maken.''' De gemeenschap is bezig met het creëren van een aantal functies om de tekstgeneratie in veel natuurlijke talen te ondersteunen. We hebben functies voor [[Wikifunctions:Catalogue#Breton|het Bretons]], [[Wikifunctions:Catalogue#Rohingya|het Rohingya]], [[Wikifunctions:Catalogue#English|het Engels]] en veel andere talen.
* '''Functies in Wikifuncties kunnen in verschillende programmeertalen worden geïmplementeerd.''' Bijvoorbeeld de [[Z10000|samenvoegen-functie]] is geïmplementeerd in zowel [[Z10005|JavaScript]] als [[Z10004|Python]].
<span id="Which_programming_languages_does_Wikifunctions_currently_support?_Which_programming_languages_will_be_supported_in_the_future?"></span>
=== Welke programmeertalen zijn momenteel door Wikifuncties ondersteund? Welke programmeertalen worden in de toekomst ondersteund? ===
{{main|WF:programming languages}}
Momenteel ondersteunt Wikifuncties implementaties die zijn geschreven in JavaScript en Python. We willen in de toekomst meer programmeertalen ondersteunen. We hopen in 2025 nog minstens één andere programmeertaal toe te voegen (maar dat hebben we nog niet besloten).
<span id="How_will_Wikifunctions_be_integrated_into_other_projects?"></span>
=== Hoe wordt Wikifuncties geïntegreerd in andere projecten? ===
Wikifuncties is de eerste stap naar het bouwen van Abstract Wikipedia. Onze focus op de korte termijn zal het ondersteunen van de gemeenschap zijn en het verbeteren op basis van feedback. Tegelijkertijd zullen we beginnen met het proces om het te integreren met Wikipedia en Wikidata, wat bredere toepassingen in het echte leven mogelijk maakt en ons dichter bij de visie van Abstract Wikipedia brengt.
Bijdragers zullen functies op de Wikifuncties-site vanuit hun wiki's kunnen oproepen. Het resultaat van de functie-aanroep wordt voor de lezers van de wiki weergegeven. Dit kan bijvoorbeeld worden gebruikt om de leeftijd van een persoon, de bevolkingsdichtheid op basis van bevolking- en oppervlaktegegevens van Wikidata berekenen, of om een grafiek te tekenen en te integreren in een bepaald artikel.
Een andere optie om Wikifuncties te integreren is om een interactieve functieoproep-interface binnen hun wiki te integreren. Dit kan bijvoorbeeld worden gebruikt in een Wikipedia-artikel om het resultaat van een natuurkundige vergelijking dynamisch te berekenen op basis van door de lezer verstrekte parameters en te interageren met wiskundige functies, enz.
<span id="What_Wikifunctions_is_not"></span>
=== Wat Wikifuncties niet is ===
Alstublieft zie [[Special:MyLanguage/Wikifunctions:What Wikifunctions is not|Wikifuncties:Wat Wikifuncties niet is]] voor meer informatie daarvoor.
<span id="What_license_will_the_functions_and_derived_content_be_under?"></span>
=== Onder welke licentie zullen de functies en afgeleide inhoud beschikbaar zijn? ===
Op basis van de discussie die [[:m:Special:MyLanguage/Abstract Wikipedia/Licensing discussion|op Meta tussen november en december 2021]] plaatsvond, zullen alle bijdragen aan Wikifuncties en de bredere Abstract Wikipedia-projecten onder vrije licenties worden gepubliceerd. In het bijzonder:
* [[Special:MyLanguage/Wikifunctions:Glossary#Content|Tekstuele inhoud]] op Wikifuncties zal worden gepubliceerd onder [[w:nl:Creative Commons-licentie|CC BY-SA 4.0]].
* [[Special:MyLanguage/Wikifunctions:Glossary#Function|Functiehandtekeningen]] en andere gestructureerde inhoud op Wikifuncties zullen worden gepubliceerd onder [[w:nl:CC0|CC 0]].
* [[Special:MyLanguage/Wikifunctions:Glossary#Implementation|Code-implementaties]] in Wikifuncties zullen worden gepubliceerd onder de [[w:nl:Apache-licentie|Apache 2-licentie]].
* [[Special:MyLanguage/Wikifunctions:Glossary#Content|Abstracte inhoud]] voor Abstract Wikipedia wordt gepubliceerd onder CC BY-SA 4.0.
Er zijn nog punten die in de toekomst moeten worden aangepakt, zoals de licentie van de gegenereerde inhoud van de abstracte inhoud. We zijn van plan om samen met de juridische afdeling een uitgebreider document op te stellen over hoe mensen de code van Wikifuncties zo pijnloos mogelijk kunnen hergebruiken, terwijl ze zich aan de licentie houden.
<span id="Contributing"></span>
== Bijdragen ==
<span id="I'm_new_here._What_is_there_for_me_to_do_and_how_can_I_help?"></span>
=== Ik ben nieuw hier. Wat is er voor mij te doen en hoe kan ik helpen? ===
Welkom! We zijn erg blij dat u hier bent! Er zijn veel mogelijkheden om bij te dragen aan Wikifuncties, van het creëren van nieuwe functies tot het verbeteren en vertalen van de documentatie. Als u op zoek bent naar manieren om betrokken te raken, raden wij u aan, afhankelijk van uw niveau van comfort, om een nieuwe functie voor te stellen over een onderwerp waarin u interesse heeft. Of zelfs die functie aanmaken. U kunt helpen met vertalingen. U kunt onze documentatie lezen en verbeteren. U kunt helpen met het organiseren van de gemeenschap.
<span id="How_do_I_create_a_new_function,_implementation,_or_test?"></span>
=== Hoe creëer ik een nieuwe functie, implementatie of test? ===
Om te zien hoe u een nieuwe functie, implementatie, of test kunt aanmaken, ga naar [[Special:MyLanguage/Wikifunctions:Introduction|de introductie]].
Om meer gedetailleerd te zien hoe u een implementatie maakt, zie [[Special:MyLanguage/Wikifunctions:How to create implementations|Implementaties maken]].
<span id="What_should_I_edit_first?"></span>
=== Wat moet ik eerst bewerken? ===
Als u meerdere talen beheerst dan kunt u op pagina [[Special:ListMissingLabels]] functies zoeken die nog geen labels en beschrijvingen in uw talen hebben en deze helpen toe te voegen.
Als u interesse heeft in een onderwerp dat functies in Wikifuncties zou kunnen bevatten, maar dat nog niet kunt, of als u meer ideeën voor functies hebt, kunt u naar de pagina gaan om [[Wikifunctions:Suggest a new function|nieuwe functies voor te stellen]] en uw ideeën presenteren.
Als u programmeur bent van JavaScript of Python wilt u misschien functies controleren die nog geen implementaties hebben in JavaScript of Python en die proberen te schrijven.
<span id="Where_can_I_go_for_help?"></span>
=== Waar kan ik hulp krijgen? ===
Uw eerste stop zou het [[Special:MyLanguage/Help:Contents|Hulpportaal]] moeten zijn, waar u alle documentatie kunt vinden met betrekking tot het gebruik en bewerken van Wikifuncties. Als u nog steeds niet verder kunt, dan kunt u een bericht op [[Wikifunctions:Project chat|Projectchat]] plaatsen, iemand zal uw vraag dan beantwoorden.
<span id="How_do_we_sort_or_categorize_functions?"></span>
=== Hoe sorteren of categoriseren wij functies? ===
{{Tracked|T285424}}
Voorlopig is het het beste om handmatig door [[Special:MyLanguage/Wikifunctions:Catalogue|pagina's in de namespace Wikifuncties]] te bladeren. Een andere optie zou zijn via de overlegpagina van de gegeven functie. Wij zullen deze inspanningen volgen en met de gemeenschap bespreken welke wijzigingen in het systeem voor deze taak nuttig zouden zijn.
<span id="How_can_I_setup_the_software_locally_to_hack_on_it?"></span>
=== Hoe kan ik de software lokaal instellen om het te hacken? ===
Zie [[Special:MyLanguage/Wikifunctions:Hacking on the evaluator and orchestrator|deze pagina]].
[[Category:FAQ| {{#translation:}}]]
arlxxv3y3pghbdiy4sdxa2qhupx0g23
Z46
0
24712
307049
302468
2026-09-01T12:59:22Z
JhowieNitnek
1044
307049
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z46"
},
"Z2K2": {
"Z1K1": "Z4",
"Z4K1": "Z46",
"Z4K2": [
"Z3",
{
"Z1K1": "Z3",
"Z3K1": "Z46",
"Z3K2": "Z46K1",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "identity"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1025",
"Z11K2": "tożsamość"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1186",
"Z11K2": "זהות"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Identität"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "identité"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "identità"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "पहचान"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "identita"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "identiteit"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "識別子"
}
]
},
"Z3K4": {
"Z1K1": "Z40",
"Z40K1": "Z41"
}
},
{
"Z1K1": "Z3",
"Z3K1": "Z4",
"Z3K2": "Z46K2",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "type"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1025",
"Z11K2": "typ"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1186",
"Z11K2": "סוג"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Typ"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "type"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "tipo"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "प्रकार"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "typ"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "type"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "型"
}
]
},
"Z3K4": {
"Z1K1": "Z40",
"Z40K1": "Z42"
}
},
{
"Z1K1": "Z3",
"Z3K1": "Z16",
"Z3K2": "Z46K3",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "converter"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1025",
"Z11K2": "konwerter"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1186",
"Z11K2": "ממיר הסוג לקוד"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Umwandler"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "convertisseur"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "convertitore"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "रूपांतरक"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "převodník"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "omzetter"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "変換器"
}
]
},
"Z3K4": {
"Z1K1": "Z40",
"Z40K1": "Z42"
}
},
{
"Z1K1": "Z3",
"Z3K1": "Z6",
"Z3K2": "Z46K4",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "native type"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1025",
"Z11K2": "typ natywny dla języka"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "nativer Typ"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "type natif"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "tipo nativo"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "आंतरिक प्रकार"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "nativní typ"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "inheems type"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "ネイティブ型"
}
]
},
"Z3K4": {
"Z1K1": "Z40",
"Z40K1": "Z42"
}
}
],
"Z4K3": "Z161",
"Z4K7": [
"Z46"
],
"Z4K8": [
"Z64"
]
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Type converter to code"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "ধরন থেকে কোডে রূপান্তরকারী"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1025",
"Z11K2": "Konwerter typu na kod źródłowy"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Typumwandler in Code"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "Konverter tipe ke kode"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1014",
"Z11K2": "Pịnye ihe ntụgharị ka ọ bụrụ koodu"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1186",
"Z11K2": "ממירי הסוג לקוד"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1381",
"Z11K2": "Conversor de tipo para código"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "convertisseur de type en code"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1332",
"Z11K2": "Перетворювач типів у код"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1664",
"Z11K2": "Convertor de tip în cod"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1005",
"Z11K2": "Конвертер типа в код"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "Convertitore del tipo in codice"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "प्रकार से कोड रूपांतरक"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "Typový převodník do kódu"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1592",
"Z11K2": "Typomvandlare till kod"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Typeomzetter naar code"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "コードへの型変換器"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "A function that converts an instance of a Wikifunctions type into one understood by a programming language"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "একটি ফাংশন, যা একটি উইকিফাংশন ধরনকে কোড দ্বারা যেন বোঝা যায় এমনভাবে রূপান্তর করে"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1025",
"Z11K2": "Funkcja, która konwertuje obiekt Wikifunkcji na odpowiedni dla danego środowiska wykonawczego"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "wandelt einen Wikifunctions-Typ in einen Typ um, der von einer Programmiersprache verstanden wird"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "Fungsi yang mengubah suatu contoh dari tipe Wikifunctions menjadi tipe yang dapat dipahami bahasa pemrograman"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1014",
"Z11K2": "Ọrụ na-agbanwe ihe atụ nke ụdị Wikifunctions ka ọ bụrụ nke asụsụ mmemme aghọtara."
},
{
"Z1K1": "Z11",
"Z11K1": "Z1381",
"Z11K2": "Uma função que converte uma instância de um tipo da Wikifunções em uma compreendida por uma linguagem de programação"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "une fonction qui convertit une instance d'un type Wikifunctions en une instance comprise par un langage de programmation"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1332",
"Z11K2": "Функція, яка перетворює екземпляр типу Wikifunctions у тип, зрозумілий мовою програмування"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1664",
"Z11K2": "O funcție care convertește o instanță a unui tip Wikifuncții într-unul înțeles de un limbaj de programare"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "Una fozione che converte un'istanza di un tipo di Wikifunctions in uno comprensibile da un linguaggio di programmazione"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "एक फ़ंक्शन जो किसी विकिफ़ंक्शन्स के प्रकार के एक उदाहरण को एक प्रोग्रामिंग भाषा द्वारा समझे जाने वाले प्रकार में बदलता है।"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "Funkce, která převádí instanci typu ve Wikifunkcích na hodnotu typu v programovacím jazyce"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1592",
"Z11K2": "en funktion som omvandlar Datatyper på Wikifunktions till en datatyp som kan förstås av programspråk"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": " Een functie die een instantie van een Wikifuncties-type omzet in een type dat door een programmeertaal wordt herkend"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "ウィキファンクションズの型のインスタンスを、プログラミング言語が理解できる形式に変換する関数"
}
]
}
}
gxdn5npu6e3qroasa1eoxlx8etd31y0
Z16683
0
31406
307301
290212
2026-09-01T23:38:49Z
Armin hpj
95406
Added the Persian translations
307301
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z16683"
},
"Z2K2": {
"Z1K1": "Z4",
"Z4K1": "Z16683",
"Z4K2": [
"Z3",
{
"Z1K1": "Z3",
"Z3K1": "Z16659",
"Z3K2": "Z16683K1",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "sign"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Zeichen"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "signe"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1664",
"Z11K2": "semn"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "segno"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "চিহ্ন"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1827",
"Z11K2": "πρόσημο"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1181",
"Z11K2": "знак"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "चिह्न"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "teken"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "znaménko"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1728",
"Z11K2": "علامت"
}
]
},
"Z3K4": {
"Z1K1": "Z40",
"Z40K1": "Z42"
}
},
{
"Z1K1": "Z3",
"Z3K1": "Z13518",
"Z3K2": "Z16683K2",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "absolute value"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "absoluter Wert"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "valeur absolue"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1664",
"Z11K2": "valoare absolută"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "valore assoluto"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "পরম মান"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1827",
"Z11K2": "απόλυτος αριθμός"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1181",
"Z11K2": "апсолутна вредност"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "निरपेक्ष मान"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "absolute waarde"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "absolutní hodnota"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1728",
"Z11K2": "قدر مطلق"
}
]
},
"Z3K4": {
"Z1K1": "Z40",
"Z40K1": "Z42"
}
}
],
"Z4K3": "Z101",
"Z4K4": "Z16688",
"Z4K5": "Z16700",
"Z4K6": "Z16705",
"Z4K7": [
"Z46",
"Z16684",
"Z16685"
],
"Z4K8": [
"Z64",
"Z16686",
"Z16687"
]
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Integer"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "Celé číslo"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "পূর্ণ সংখ্যা"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Integer"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1186",
"Z11K2": "מספר שלם"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1360",
"Z11K2": "ℤ"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1827",
"Z11K2": "ακέραιος αριθμός"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "整数"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "Intero"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1381",
"Z11K2": "Inteiro"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "Integer"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "entier"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1592",
"Z11K2": "Heltal"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1005",
"Z11K2": "Целое число"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1001",
"Z11K2": "عدد صحيح"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1664",
"Z11K2": "Număr întreg"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1051",
"Z11K2": "kokonaisluku"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "पूर्णांक"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "geheel getal"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1237",
"Z11K2": "tam sayı"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1645",
"Z11K2": "整数"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1728",
"Z11K2": "اعداد صحیح"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"whole numbers",
"signed integer",
"ℤ"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1062",
"Z31K2": [
"Z6",
"celá čísla",
"int"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1011",
"Z31K2": [
"Z6",
"পূর্ণসংখ্যা"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1430",
"Z31K2": [
"Z6",
"Ganzzahl",
"ganze Zahl"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1381",
"Z31K2": [
"Z6",
"números inteiros",
"inteiro assinado",
"ℤ"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1078",
"Z31K2": [
"Z6",
"bilangan bulat",
"ℤ "
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1664",
"Z31K2": [
"Z6",
"întreg",
"ℤ"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1787",
"Z31K2": [
"Z6",
"Numero intero",
"Numero relativo",
"Intero con segno"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1157",
"Z31K2": [
"Z6",
"getekend geheel getal",
"Z"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1237",
"Z31K2": [
"Z6",
"tamsayı"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1645",
"Z31K2": [
"Z6",
"带符号整数",
"ℤ"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1728",
"Z31K2": [
"Z6",
"اعداد کامل",
"اعداد صحیح علامتدار"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "arbitrarily large whole numbers, including negative ones and 0. 0 is the only value allowed to have a neutral sign (and it must have that sign; positive and negative 0 are possible but not valid)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "libovolně velké celé číslo, může být kladné, záporné, nebo nula"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "বড় পূর্ণ সংখ্যা, ঋণাত্মক এবং শূন্য। ০ হল একমাত্র মান যা একটি নিরপেক্ষ চিহ্নের জন্য অনুমোদিত।"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "ganze Zahlen, darunter negative Zahlen und 0"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1186",
"Z11K2": "ר' Z13518 למספר טבעי בלבד."
},
{
"Z1K1": "Z11",
"Z11K1": "Z1360",
"Z11K2": "{..., -3, -2, -1, 0, 1, 2, 3, ...}"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1381",
"Z11K2": "números inteiros arbitrariamente grandes, incluindo negativos e 0. 0 é o único valor que pode ter um sinal neutro (e deve ter esse sinal; 0 positivo e negativo são possíveis, mas não válidos)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "bilangan bulat besar, temasuk negatif dan 0 (nol). Hanya 0 yang diperbolehkan untuk memiliki tanda netral, angka lain harus memiliki tanda positif atau negatif."
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "nombres entiers arbitrairement grands, y compris des nombres négatifs et 0. 0 est la seule valeur autorisée à avoir un signe neutre. Les entiers NATURELs Z13518 commencent eux avec 0 1 2 3..."
},
{
"Z1K1": "Z11",
"Z11K1": "Z1592",
"Z11K2": "positivt eller negativt heltal, inklusive noll"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1001",
"Z11K2": "الأعداد بدون كسور أو فاصلة عشرية بما في ذلك الأرقام السالبة والصفر. 0 هي القيمة الوحيدة المحايدة بدون إشارة (ويجب أن تكون كذلك؛ فالـ 0 بكلا الإشارتين ممكنة ولكنها غير صالحة)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1664",
"Z11K2": "numere întregi arbitrar de mari, inclusiv cele negative și 0. 0 este singura valoare care poate avea un semn neutru (și trebuie să aibă acest semn; 0 pozitiv și negativ sunt posibile, dar nu valide)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "Un numero intero arbitrariamente grande, compresi anche i valori negativi e nulli. Lo 0 è l'unico valore che può avere un segno neutro (e deve averlo; +0 e -0 sono possibili ma non validi)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "willekeurig grote gehele getallen, inclusief negatieve waarden en 0, waarbij alleen 0 een verplicht neutraal teken mag hebben en positieve of negatieve 0 wel mogelijk maar ongeldig zijn"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1645",
"Z11K2": "任意大的整数,包括负数和0。0是唯一允许具有中性号的值(且必得有该符号;正0和负0虽有可能但不视作有效)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1728",
"Z11K2": "اعداد صحیح دلخواه بزرگ، شامل اعداد منفی و ۰. ۰ تنها مقداری است که مجاز به داشتن علامت خنثی است (و باید آن علامت را داشته باشد؛ ۰ مثبت و منفی ممکن است اما معتبر نیست)."
}
]
}
}
5sbaynfgkrv9hnyxilc6grb5y4tkrmf
User:Jsamwrites
2
39114
307120
306666
2026-09-01T14:41:05Z
Jsamwrites
938
/* HTML fragement */
307120
wikitext
text/x-wiki
== Introduction ==
This is the Wikifunctions user page of '''John Samuel'''. This page documents my personal effort for '''protecting the linguistic diversity of the world, one language at a time'''. Please check [[abstract:User:Jsamwrites|my]] [[abstract:User:Jsamwrites|Abstract Wikipedia page]] for understanding how these efforts come to life. For more information related to my Wikidata contributions, refer page on [[:d:User:Jsamwrites|Wikidata User:Jsamwrites]].
[[File:Leonardo da Vinci - Saint John the Baptist C2RMF retouched.jpg|thumb|Saint John the Baptist, Louvre Museum ([[c:File:Leonardo_da_Vinci_-_Saint_John_the_Baptist_C2RMF_retouched.jpg|info]])]]
These are the topics that I have been working on:
== Sentences ==
====== HTML fragement ======
{| class="wikitable"
|+
!No.
!Function
!Example
!Type
|-
|1.
|{{Z|Z39170}}
|Avicii worked in the fields of....
|Person
|-
|2.
|{{Z|Z39173}}
|André Gide was a....
|Person
|-
|3.
|{{Z|Z39177}}
|Bird is a ...
|All
|-
|4.
|{{Z|Z39181}}
|The notable works of Charles Darwin include....
|Person
|-
|5.
|{{Z|Z39185}}
|C supports [paradigms]
|Programming language
|-
|7.
|{{Z|Z39191}}
|Lyon shares border with...
|Geography
|-
|8.
|{{Z|Z39194}}
|Paris is named after....
|All
|-
|9.
|{{Z|Z39197}}
|Φ/φ symbolizes golden ratio
|All (characters,..)
|-
|10.
|{{Z|Z39200}}
|The colors of ruby include...
|All (colored objects)
|-
|11.
|{{Z|Z39203}}
|Firefox depends on...
|Software
|-
|12.
|{{Z|Z39229}}
|Brain assymmetry is characteristic of...
|All
|-
|13.
|{{Z|Z39232}}
|MySQL is available on...
|Software
|-
|14.
|{{Z|Z39235}}
|The characteristics of ....
|All
|-
|15.
|{{Z|Z39238}}
|The uses of ...
|All
|-
|16.
|{{Z|Z39241}}
|MySQL uses...
|All
|-
|17.
|{{Z|Z39247}}
|Pizza is made from
|All
|-
|18.
|{{Z|Z39250}}
|September is depicted by...
|All (creative works)
|-
|19.
|{{Z|Z39253}}
|Inkscape is developed by..
|Software
|-
|20.
|{{Z|Z39256}}
|Thunderbird is an...
|All
|-
|21.
|{{Z|Z39259}}
|Mona Lisa is an oil painting....
|Creative works
|-
|22.
|{{Z|Z39262}}
|Weekend is part of...
|All
|-
|23.
|{{Z|Z39265}}
|Space Needle was built in..
|Creative works
|-
|24.
|{{Z|Z39268}}
|Eiffel Tower was built...
|Creative work
|-
|25.
|{{Z|Z39271}}
|Weekend consists of...
|All
|-
|26.
|{{Z|Z39274}}
|The main subjects of..
|Creative works
|-
|27.
|{{Z|Z39277}}
|Mona Lisa depicts...
|Creatie works
|-
|28.
|{{Z|Z39280}}
|C is influenced by
|Programming language, Software
|-
|29.
|{{Z|Z39283}}
|GCC is programmed in...
|Software
|-
|30.
|{{Z|Z39286}}
|Sistine Chapel was created by...
|Creative works, buildings
|-
|31.
|{{Z|Z39289}}
|Property values...
|All
|-
|32.
|{{Z|Z39339}}
|C++ was designed by..
|Creative works
|-
|33.
|{{Z|Z40059}}
|Abstract wikilinks of different from
|All
|-
|34.
|{{Z|Z40069}}
|Abstract wikilinks of sources
|All (Bibliography)
|-
|35.
|{{Z|Z40582}}
|The typing discipline of ....
|Programming languages
|-
|36.
|{{Z|Z40710}}
|The file extension of...
|Software, programming languages
|-
|37.
|{{Z|Z40813}}
|The language of work of...
|Literary works
|}
====== Monolingual text ======
{| class="wikitable"
|+
!No.
!Function
!Configuration
!Example
|-
|1.
|{{Z|Z34282}}
|{{Z|Z34281}}
|Lyon is a commune of France
|-
|2.
|{{Z|Z32581}}
|{{Z|Z32534}}
|Mona Lisa is a painting by Leonardo da Vinci
|-
|3.
|{{Z|Z34637}}
|{{Z|Z34682}}
|Sunday is part of the weekend
|-
|4.
|{{Z|Z36141}}
|{{Z|Z36148}}
|Space Needle was built in 1961.
|-
|5.
|{{Z|Z36151}}
|{{Z|Z36155}}
|Eiffel Tower was built between 1887 and 1889.
|-
|6.
|{{Z|Z37005}}
|{{Z|Z37017}}
|Earth-Moon system consists of Earth and Moon.
|-
|7.
|{{Z|Z38515}}
|{{Z|Z38416}}
|The main subject(s) of a painting is/are.
|-
|8.
|{{Z|Z37761}}
|{{Z|Z37760}}
|Abel depicts Abel, death, and landscape.
|-
|9.
|{{Z|Z37777}}
|{{Z|Z37776}}
|BCPL is influenced by CPL.
|-
|10.
|{{Z|Z37873}}
|{{Z|Z37874}}
|Inkscaped was programmed in C++ and C.
|-
|11.
|{{Z|Z37870}}
|{{Z|Z37869}}
|C++, C, and Java
|-
|12.
|{{Z|Z37951}}
|{{Z|Z37945}}
|Software/It is developed by
|-
|13.
|{{Z|Z37963}}
|{{Z|Z37962}}
|Creative work is created by
|-
|14.
|{{Z|Z38458}}
|{{Z|Z38415}}
|Topic is depicted by
|-
|15.
|{{Z|Z37890}}
|{{Z|Z37889}}
|Object was made from.
|-
|16.
|{{Z|Z38453}}
|{{Z|Z38417}}
|It uses.
|-
|17.
|{{Z|Z38488}}
|{{Z|Z38418}}
|The uses of the subject include..
|-
|18.
|{{Z|Z38508}}
|{{Z|Z38419}}
|The characteristics of..include.
|-
|19.
|{{Z|Z38448}}
|{{Z|Z38420}}
|It is available on
|-
|20.
|{{Z|Z38440}}
|{{Z|Z38421}}
|It is characteristic of
|-
|21.
|{{Z|Z38435}}
|{{Z|Z38422}}
|It is dependent on
|-
|22.
|{{Z|Z38503}}
|{{Z|Z38505}}
|The colors include..
|-
|23.
|{{Z|Z38428}}
|{{Z|Z38423}}
|It symbolizes
|-
|24.
|{{Z|Z38443}}
|{{Z|Z38414}}
|It is named after
|-
|25.
|{{Z|Z38425}}
|{{Z|Z38424}}
|It shares border with
|-
|26.
| {{z|Z38388}}
| {{z|Z38392}}
|Programming language/It supports paradigm(s).
|-
|27.
|{{Z|Z38520}}
|{{Z|Z38523}}
|Saturday is a day.
|-
|28.
|{{Z|Z38804}}
|{{Z|Z38803}}
|The notable works of .. include ..
|-
|29.
|{{Z|Z38520}}
|{{Z|Z38523}}
|Reptilia is a Tetrapoda
|-
|30.
|{{Z|Z38833}}
|{{Z|Z38832}}
|Alan Turing is a computer scientist,...
|-
|31.
|{{Z|Z38916}}
|{{Z|Z38917}}
|Alan Turing worked in the fields of
|-
|32.
|{{Z|Z39335}}
|{{Z|Z39338}}
|C++ was designed by...
|-
|33.
|{{Z|Z40570}}
|{{Z|Z40579}}
|programming language
|-
|34.
|{{Z|Z40701}}
|{{Z|Z40704}}
|Software, programming language
|-
|35.
|based on
|
|Creative works
|-
|36.
|Inception
|
|Creative works
|-
|37.
|has edition or translation
|
|Creative works
|-
|38.
|described by source
|
|Creative works
|-
|39.
|File extension
|
|Creative works
|-
|40.
|standards body
|
|Creative works
|-
|41.
|creator
|
|Creative works
|-
|42.
|publication date
|
|Creative works
|-
|43.
|distributed by
|
|Software
|-
|44.
|mascot
|
|All
|-
|45.
|readable file format
|
|Software
|-
|46.
|writable file format
|
|Software
|-
|47.
|Package management system
|
|Software
|-
|48.
|software engine
|
|Software
|-
|49.
|GUI toolkit or framework
|
|Software
|-
|50.
|Official app
|
|Software
|-
|51.
|history of topic
|
|All
|-
|52.
|implementation of
|
|Software
|-
|53.
|build system
|
|Software
|-
|54.
|has command line option
|
|Software
|-
|55.
|used by
|
|All
|-
|56.
|founder
|
|Institutions, associations
|-
|57.
|motto text
|
|Institutions, associations
|-
|58.
|member of
|
|Institutions, associations
|-
|59.
|follows
|
|All
|-
|60.
|followed by
|
|All
|-
|61.
|replaces
|
|All
|-
|62.
|{{Z|Z40811}}
|{{Z|Z40810}}
|Creative works
|-
|63.
|collection
|
|Creative works
|-
|64.
|software quality assurance
|
|Software
|-
|65.
|Copyright licence
|
|Creative works
|-
|66.
|Copyright status
|
|Creative works
|-
|67.
|Logo image
|
|Creative works
|-
|68.
|Icon (image)
|
|Creative works
|-
|69.
|game mode
|
|Video games
|-
|70.
|distribution format
|
|Software
|-
|71.
|award received
|
|Creative works
|-
|72.
|maintained by
|
|Software
|-
|73.
|Funding scheme
|
|Creative works
|-
|74.
|child organization or unit
|
|Organizations
|-
|75.
|product or material produced
|
|Organizations
|-
|76.
|represented by
|
|Organizations
|-
|77.
|movement
|
|Organizations
|-
|78.
|member of
|
|All
|-
|79.
|typeface/font used
|
|Creative works
|-
|80.
|update method
|
|Software
|-
|81.
|small logo or icon
|
|Creative works
|-
|82.
|official name
|
|All
|-
|83.
|part of the series
|
|Creative works
|-
|84.
|edition or translation of
|
|Creative works
|-
|85.
|manufacturer
|
|Works
|-
|86.
|brand
|
|Organizations
|-
|87.
|related image
|
|All
|-
|88.
|significant event
|
|All
|-
|89.
|announcement date
|
|All
|-
|90.
|working title
|
|All
|-
|91.
|different from
|
|All
|-
|92.
|genre
|
|All
|-
|93.
|operating system
|
|Software, programming language
|-
|
|
|
|
|}
===== Supplementary functions for sentences =====
{| class="wikitable"
|+
!No.
!Function
!Configuration
!Example
|-
|1.
|{{Z|Z38729}}
|{{Z|Z38786}}
|
|-
|2.
|{{Z|Z38782}}
|{{Z|Z38781}}
|
|-
|
|
|
|
|}
== Infoboxes ==
Check [[User:Jsamwrites/Infoboxes]]
== Navbox (External links not yet enabled on Abstract Wikidata) ==
* {{Z|Z39101}}
== Useful functions ==
* {{Z|Z36303}}
* {{Z|Z34943}}
* {{Z|Z36083}}
* {{Z|Z36218}}
* {{Z|Z32962}}
* {{Z|Z32179}}
* {{Z|Z32428}}
* {{Z|Z27243}}
* {{Z|Z31917}}
* {{Z|Z33690}}
* {{Z|Z28016}}
* {{Z|Z36193}}
* {{Z|Z29749}}
* {{Z|Z36038}}
* {{Z|Z36993}}
=== References ===
* {{Z|Z31921}}
== Catalogue ==
* [[Wikifunctions:Catalogue|Catalogue of important functions]]
* [[Wikifunctions:Catalogue/Natural language operations/Global language functions|Global language functions]]
== Phrases ==
List of objects:
* {{Z|Z18928}}
* {{Z|Z18929}}
* {{Z|Z18979}}
== Function application ==
* {{Z|Z873}}
== Configuration ==
* {{Z|Z14294}}
== Types ==
* [[Special:ListObjectsByType|All supported types]]
== Wikidata ==
* {{Z|Z22220}}
* {{Z|Z22222}}
== Documentation ==
* [[Wikifunctions:Catalogue/Wikidata operations|Wikidata operations]]
4mcljwtfykitb43pv0txd6rjkj6ecwh
307121
307120
2026-09-01T15:28:28Z
Jsamwrites
938
307121
wikitext
text/x-wiki
== Introduction ==
This is the Wikifunctions user page of '''John Samuel'''. This page documents my personal effort for '''protecting the linguistic diversity of the world, one language at a time'''. Please check [[abstract:User:Jsamwrites|my]] [[abstract:User:Jsamwrites|Abstract Wikipedia page]] for understanding how these efforts come to life. For more information related to my Wikidata contributions, refer page on [[:d:User:Jsamwrites|Wikidata User:Jsamwrites]].
[[File:Leonardo da Vinci - Saint John the Baptist C2RMF retouched.jpg|thumb|Saint John the Baptist, Louvre Museum ([[c:File:Leonardo_da_Vinci_-_Saint_John_the_Baptist_C2RMF_retouched.jpg|info]])]]
These are the topics that I have been working on:
== Sentences ==
====== HTML fragement ======
{| class="wikitable"
|+
!No.
!Function
!Example
!Type
|-
|1.
|{{Z|Z39170}}
|Avicii worked in the fields of....
|Person
|-
|2.
|{{Z|Z39173}}
|André Gide was a....
|Person
|-
|3.
|{{Z|Z39177}}
|Bird is a ...
|All
|-
|4.
|{{Z|Z39181}}
|The notable works of Charles Darwin include....
|Person
|-
|5.
|{{Z|Z39185}}
|C supports [paradigms]
|Programming language
|-
|7.
|{{Z|Z39191}}
|Lyon shares border with...
|Geography
|-
|8.
|{{Z|Z39194}}
|Paris is named after....
|All
|-
|9.
|{{Z|Z39197}}
|Φ/φ symbolizes golden ratio
|All (characters,..)
|-
|10.
|{{Z|Z39200}}
|The colors of ruby include...
|All (colored objects)
|-
|11.
|{{Z|Z39203}}
|Firefox depends on...
|Software
|-
|12.
|{{Z|Z39229}}
|Brain assymmetry is characteristic of...
|All
|-
|13.
|{{Z|Z39232}}
|MySQL is available on...
|Software
|-
|14.
|{{Z|Z39235}}
|The characteristics of ....
|All
|-
|15.
|{{Z|Z39238}}
|The uses of ...
|All
|-
|16.
|{{Z|Z39241}}
|MySQL uses...
|All
|-
|17.
|{{Z|Z39247}}
|Pizza is made from
|All
|-
|18.
|{{Z|Z39250}}
|September is depicted by...
|All (creative works)
|-
|19.
|{{Z|Z39253}}
|Inkscape is developed by..
|Software
|-
|20.
|{{Z|Z39256}}
|Thunderbird is an...
|All
|-
|21.
|{{Z|Z39259}}
|Mona Lisa is an oil painting....
|Creative works
|-
|22.
|{{Z|Z39262}}
|Weekend is part of...
|All
|-
|23.
|{{Z|Z39265}}
|Space Needle was built in..
|Creative works
|-
|24.
|{{Z|Z39268}}
|Eiffel Tower was built...
|Creative work
|-
|25.
|{{Z|Z39271}}
|Weekend consists of...
|All
|-
|26.
|{{Z|Z39274}}
|The main subjects of..
|Creative works
|-
|27.
|{{Z|Z39277}}
|Mona Lisa depicts...
|Creatie works
|-
|28.
|{{Z|Z39280}}
|C is influenced by
|Programming language, Software
|-
|29.
|{{Z|Z39283}}
|GCC is programmed in...
|Software
|-
|30.
|{{Z|Z39286}}
|Sistine Chapel was created by...
|Creative works, buildings
|-
|31.
|{{Z|Z39289}}
|Property values...
|All
|-
|32.
|{{Z|Z39339}}
|C++ was designed by..
|Creative works
|-
|33.
|{{Z|Z40059}}
|Abstract wikilinks of different from
|All
|-
|34.
|{{Z|Z40069}}
|Abstract wikilinks of sources
|All (Bibliography)
|-
|35.
|{{Z|Z40582}}
|The typing discipline of ....
|Programming languages
|-
|36.
|{{Z|Z40710}}
|The file extension of...
|Software, programming languages
|-
|37.
|{{Z|Z40813}}
|The language of work of...
|Literary works
|}
====== Monolingual text ======
{| class="wikitable"
|+
!No.
!Function
!Configuration
!Example
|-
|1.
|{{Z|Z34282}}
|{{Z|Z34281}}
|Lyon is a commune of France
|-
|2.
|{{Z|Z32581}}
|{{Z|Z32534}}
|Mona Lisa is a painting by Leonardo da Vinci
|-
|3.
|{{Z|Z34637}}
|{{Z|Z34682}}
|Sunday is part of the weekend
|-
|4.
|{{Z|Z36141}}
|{{Z|Z36148}}
|Space Needle was built in 1961.
|-
|5.
|{{Z|Z36151}}
|{{Z|Z36155}}
|Eiffel Tower was built between 1887 and 1889.
|-
|6.
|{{Z|Z37005}}
|{{Z|Z37017}}
|Earth-Moon system consists of Earth and Moon.
|-
|7.
|{{Z|Z38515}}
|{{Z|Z38416}}
|The main subject(s) of a painting is/are.
|-
|8.
|{{Z|Z37761}}
|{{Z|Z37760}}
|Abel depicts Abel, death, and landscape.
|-
|9.
|{{Z|Z37777}}
|{{Z|Z37776}}
|BCPL is influenced by CPL.
|-
|10.
|{{Z|Z37873}}
|{{Z|Z37874}}
|Inkscaped was programmed in C++ and C.
|-
|11.
|{{Z|Z37870}}
|{{Z|Z37869}}
|C++, C, and Java
|-
|12.
|{{Z|Z37951}}
|{{Z|Z37945}}
|Software/It is developed by
|-
|13.
|{{Z|Z37963}}
|{{Z|Z37962}}
|Creative work is created by
|-
|14.
|{{Z|Z38458}}
|{{Z|Z38415}}
|Topic is depicted by
|-
|15.
|{{Z|Z37890}}
|{{Z|Z37889}}
|Object was made from.
|-
|16.
|{{Z|Z38453}}
|{{Z|Z38417}}
|It uses.
|-
|17.
|{{Z|Z38488}}
|{{Z|Z38418}}
|The uses of the subject include..
|-
|18.
|{{Z|Z38508}}
|{{Z|Z38419}}
|The characteristics of..include.
|-
|19.
|{{Z|Z38448}}
|{{Z|Z38420}}
|It is available on
|-
|20.
|{{Z|Z38440}}
|{{Z|Z38421}}
|It is characteristic of
|-
|21.
|{{Z|Z38435}}
|{{Z|Z38422}}
|It is dependent on
|-
|22.
|{{Z|Z38503}}
|{{Z|Z38505}}
|The colors include..
|-
|23.
|{{Z|Z38428}}
|{{Z|Z38423}}
|It symbolizes
|-
|24.
|{{Z|Z38443}}
|{{Z|Z38414}}
|It is named after
|-
|25.
|{{Z|Z38425}}
|{{Z|Z38424}}
|It shares border with
|-
|26.
| {{z|Z38388}}
| {{z|Z38392}}
|Programming language/It supports paradigm(s).
|-
|27.
|{{Z|Z38520}}
|{{Z|Z38523}}
|Saturday is a day.
|-
|28.
|{{Z|Z38804}}
|{{Z|Z38803}}
|The notable works of .. include ..
|-
|29.
|{{Z|Z38520}}
|{{Z|Z38523}}
|Reptilia is a Tetrapoda
|-
|30.
|{{Z|Z38833}}
|{{Z|Z38832}}
|Alan Turing is a computer scientist,...
|-
|31.
|{{Z|Z38916}}
|{{Z|Z38917}}
|Alan Turing worked in the fields of
|-
|32.
|{{Z|Z39335}}
|{{Z|Z39338}}
|C++ was designed by...
|-
|33.
|{{Z|Z40570}}
|{{Z|Z40579}}
|programming language
|-
|34.
|{{Z|Z40701}}
|{{Z|Z40704}}
|Software, programming language
|-
|35.
|based on
|
|Creative works
|-
|36.
|Inception
|
|Creative works
|-
|37.
|has edition or translation
|
|Creative works
|-
|38.
|described by source
|
|Creative works
|-
|39.
|File extension
|
|Creative works
|-
|40.
|standards body
|
|Creative works
|-
|41.
|creator
|
|Creative works
|-
|42.
|publication date
|
|Creative works
|-
|43.
|distributed by
|
|Software
|-
|44.
|mascot
|
|All
|-
|45.
|readable file format
|
|Software
|-
|46.
|writable file format
|
|Software
|-
|47.
|Package management system
|
|Software
|-
|48.
|software engine
|
|Software
|-
|49.
|GUI toolkit or framework
|
|Software
|-
|50.
|Official app
|
|Software
|-
|51.
|history of topic
|
|All
|-
|52.
|implementation of
|
|Software
|-
|53.
|build system
|
|Software
|-
|54.
|has command line option
|
|Software
|-
|55.
|used by
|
|All
|-
|56.
|founder
|
|Institutions, associations
|-
|57.
|motto text
|
|Institutions, associations
|-
|58.
|member of
|
|Institutions, associations
|-
|59.
|follows
|
|All
|-
|60.
|followed by
|
|All
|-
|61.
|replaces
|
|All
|-
|62.
|{{Z|Z40811}}
|{{Z|Z40810}}
|Creative works
|-
|63.
|collection
|
|Creative works
|-
|64.
|software quality assurance
|
|Software
|-
|65.
|Copyright licence
|
|Creative works
|-
|66.
|Copyright status
|
|Creative works
|-
|67.
|Logo image
|
|Creative works
|-
|68.
|Icon (image)
|
|Creative works
|-
|69.
|game mode
|
|Video games
|-
|70.
|distribution format
|
|Software
|-
|71.
|award received
|
|Creative works
|-
|72.
|maintained by
|
|Software
|-
|73.
|Funding scheme
|
|Creative works
|-
|74.
|child organization or unit
|
|Organizations
|-
|75.
|product or material produced
|
|Organizations
|-
|76.
|represented by
|
|Organizations
|-
|77.
|movement
|
|Organizations
|-
|78.
|member of
|
|All
|-
|79.
|typeface/font used
|
|Creative works
|-
|80.
|update method
|
|Software
|-
|81.
|small logo or icon
|
|Creative works
|-
|82.
|official name
|
|All
|-
|83.
|part of the series
|
|Creative works
|-
|84.
|edition or translation of
|
|Creative works
|-
|85.
|manufacturer
|
|Works
|-
|86.
|brand
|
|Organizations
|-
|87.
|related image
|
|All
|-
|88.
|significant event
|
|All
|-
|89.
|announcement date
|
|All
|-
|90.
|working title
|
|All
|-
|91.
|different from
|
|All
|-
|92.
|genre
|
|All
|-
|93.
|operating system
|
|Software, programming language
|-
|94.
|original language of work or name
|
|Creative works
|}
===== Supplementary functions for sentences =====
{| class="wikitable"
|+
!No.
!Function
!Configuration
!Example
|-
|1.
|{{Z|Z38729}}
|{{Z|Z38786}}
|
|-
|2.
|{{Z|Z38782}}
|{{Z|Z38781}}
|
|-
|
|
|
|
|}
== Infoboxes ==
Check [[User:Jsamwrites/Infoboxes]]
== Navbox (External links not yet enabled on Abstract Wikidata) ==
* {{Z|Z39101}}
== Useful functions ==
* {{Z|Z36303}}
* {{Z|Z34943}}
* {{Z|Z36083}}
* {{Z|Z36218}}
* {{Z|Z32962}}
* {{Z|Z32179}}
* {{Z|Z32428}}
* {{Z|Z27243}}
* {{Z|Z31917}}
* {{Z|Z33690}}
* {{Z|Z28016}}
* {{Z|Z36193}}
* {{Z|Z29749}}
* {{Z|Z36038}}
* {{Z|Z36993}}
=== References ===
* {{Z|Z31921}}
== Catalogue ==
* [[Wikifunctions:Catalogue|Catalogue of important functions]]
* [[Wikifunctions:Catalogue/Natural language operations/Global language functions|Global language functions]]
== Phrases ==
List of objects:
* {{Z|Z18928}}
* {{Z|Z18929}}
* {{Z|Z18979}}
== Function application ==
* {{Z|Z873}}
== Configuration ==
* {{Z|Z14294}}
== Types ==
* [[Special:ListObjectsByType|All supported types]]
== Wikidata ==
* {{Z|Z22220}}
* {{Z|Z22222}}
== Documentation ==
* [[Wikifunctions:Catalogue/Wikidata operations|Wikidata operations]]
j3k0h339bq3mmte5q873688njs6k18q
Z6004
0
40369
307097
303246
2026-09-01T13:56:40Z
JhowieNitnek
1044
307097
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z6004"
},
"Z2K2": {
"Z1K1": "Z4",
"Z4K1": "Z6004",
"Z4K2": [
"Z3",
{
"Z1K1": "Z3",
"Z3K1": "Z6094",
"Z3K2": "Z6004K1",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "identity"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Identität"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "identità"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "पहचान"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "identita"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "識別子"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "identiteit"
}
]
},
"Z3K4": "Z42"
},
{
"Z1K1": "Z3",
"Z3K1": "Z6095",
"Z3K2": "Z6004K2",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "lexeme"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Lexem"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "lessema"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "शब्दिम"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "lexém"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "語彙素"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "lexeem"
}
]
},
"Z3K4": "Z42"
},
{
"Z1K1": "Z3",
"Z3K1": "Z12",
"Z3K2": "Z6004K3",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "representations"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Darstellungen"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "rappresentazioni"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "प्रतिनिधित्व"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "reprezentace"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "表現"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "representaties"
}
]
},
"Z3K4": "Z42"
},
{
"Z1K1": "Z3",
"Z3K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6091"
},
"Z3K2": "Z6004K4",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "grammatical features"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "grammatikalische Merkmale"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "caratteristiche grammaticali"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "व्याकरणिक लक्षण"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "gramatické vlastnosti"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "文法的特徴"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "grammaticale kenmerken"
}
]
},
"Z3K4": "Z42"
},
{
"Z1K1": "Z3",
"Z3K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6003"
},
"Z3K2": "Z6004K5",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "claims"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Aussagen"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "dichiarazioni"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "दावे"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "tvrzení"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "主張"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "beweringen"
}
]
},
"Z3K4": "Z42"
}
],
"Z4K3": "Z101",
"Z4K4": "Z6804"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Wikidata lexeme form"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Wikidata-Lexemform"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1186",
"Z11K2": "צורה של יחידה מילונית של ויקינתונים"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "forme d'un lexème Wikidata"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "উইকিউপাত্ত লেক্সিম রূপ"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1005",
"Z11K2": "Форма лексемы Викиданных"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "Forma di lessema Wikidata"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1051",
"Z11K2": "Wikidata-lekseemin muoto"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1672",
"Z11K2": "維基數據詞形"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "विकिडेटा शब्दिम रूप"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "Tvar lexému Wikidat"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "ウィキデータの語形"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Wikidata-lexeemvorm"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "la forme d'un lexème Wikidata"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "Reprezentace tvaru lexému podle datového modelu Wikidat."
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "contains the metadata and statements of one of the Forms of a Wikidata Lexeme"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "ウィキデータの語彙素の形式の1つに関するメタデータと文が含まれる。"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "bevat de metagegevens en uitspraken van een van de vormen van een Wikidata-lexeme"
}
]
}
}
f7kgb8zcco6ykz5gjpwsk3uyb9hhs7d
Z6001
0
40391
307093
303237
2026-09-01T13:47:08Z
JhowieNitnek
1044
307093
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z6001"
},
"Z2K2": {
"Z1K1": "Z4",
"Z4K1": "Z6001",
"Z4K2": [
"Z3",
{
"Z1K1": "Z3",
"Z3K1": "Z6091",
"Z3K2": "Z6001K1",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "identity"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Identität"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "identité"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "identità"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "पहचान"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "identita"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "識別子"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "identiteit"
}
]
},
"Z3K4": "Z42"
},
{
"Z1K1": "Z3",
"Z3K1": "Z12",
"Z3K2": "Z6001K2",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "labels"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Bezeichnungen"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "libellés"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "etichette"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "लेबल्स"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "štítky"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "ラベル"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "label"
}
]
},
"Z3K4": "Z42"
},
{
"Z1K1": "Z3",
"Z3K1": "Z12",
"Z3K2": "Z6001K3",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "descriptions"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "descriptions"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Beschreibungen"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "descrizioni"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "विवरण"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "popisy"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "説明"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "beschrijvingen"
}
]
},
"Z3K4": "Z42"
},
{
"Z1K1": "Z3",
"Z3K1": "Z32",
"Z3K2": "Z6001K4",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "aliases"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "alias"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Aliasse"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "alias"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "उपनाम"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "aliasy"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "別名"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "aliassen"
}
]
},
"Z3K4": "Z42"
},
{
"Z1K1": "Z3",
"Z3K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6003"
},
"Z3K2": "Z6001K5",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "statements"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "বিবৃতি"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "déclarations"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Aussagen"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "dichiarazioni"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "दावे"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "výroky"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "文"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "verklaringen"
}
]
},
"Z3K4": "Z42"
},
{
"Z1K1": "Z3",
"Z3K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6039"
},
"Z3K2": "Z6001K6",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "sitelinks"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "odkazy na články"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "サイトリンク"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "sitelinks"
}
]
},
"Z3K4": "Z42"
}
],
"Z4K3": "Z101",
"Z4K4": "Z6801"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Wikidata item"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "উইকিউপাত্ত আইটেম"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Wikidata-Datenobjekt"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "Butir Wikidata"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1186",
"Z11K2": "פריט ויקינתונים"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "élément Wikidata"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1005",
"Z11K2": "Элемент Викиданных"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1001",
"Z11K2": "عنصر ويكي بيانات"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "Elemento Wikidata"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1827",
"Z11K2": "αντικείμενο των Wikidata "
},
{
"Z1K1": "Z11",
"Z11K1": "Z1051",
"Z11K2": "Wikidata-kohde"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1672",
"Z11K2": "維基數據項目"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1012",
"Z11K2": "വിക്കിഡാറ്റ ഇനം"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "विकिडेटा आयटम"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "Položka Wikidat"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "ウィキデータの項目"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1762",
"Z11K2": "ijo pi lipu Wikinanpa"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1592",
"Z11K2": "Wikidata-objekt"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Wikidata-item"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1011",
"Z31K2": [
"Z6",
"উইকিডাটা আইটেম"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "উইকিউপাত্তের প্রধান নথিভুক্ত একক"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "An item on Wikidata reference by a QID"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1001",
"Z11K2": "عنصر على ويكي بيانات أُحيل إليه بواسطة معرّف QID"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "Un elemento su Wikidata"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1012",
"Z11K2": "വിക്കിഡാറ്റ ഒരു ഇനതിന്റെ ഐഡി"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "QID से संदर्भित विकिडेटा पर एक आयटम"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "élément de Wikidata référencé par son QID"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "Data položky Wikidat"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "QIDによるウィキデータの参照項目"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Een item op Wikidata, aangeduid met een QID"
}
]
}
}
b1rh5pmrizzblvmx3mzqxj8ld86xmln
Z6002
0
40392
307094
293211
2026-09-01T13:50:01Z
JhowieNitnek
1044
307094
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z6002"
},
"Z2K2": {
"Z1K1": "Z4",
"Z4K1": "Z6002",
"Z4K2": [
"Z3",
{
"Z1K1": "Z3",
"Z3K1": "Z6092",
"Z3K2": "Z6002K1",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "identity"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Identität"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "identité"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1672",
"Z11K2": "身份"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1001",
"Z11K2": "هوية"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "identità"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "পরিচয়"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "पहचान"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "identitas"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "identita"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "identiteit"
}
]
},
"Z3K4": "Z42"
},
{
"Z1K1": "Z3",
"Z3K1": "Z12",
"Z3K2": "Z6002K2",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "labels"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Bezeichnungen"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1001",
"Z11K2": "تسميات"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "etichette"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "লেবেল"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "लेबल"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "label"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "štítky"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "labels"
}
]
},
"Z3K4": "Z42"
},
{
"Z1K1": "Z3",
"Z3K1": "Z12",
"Z3K2": "Z6002K3",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "descriptions"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Beschreibungen"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1001",
"Z11K2": "أوصاف"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "descrizioni"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "বিবরণ"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "विवरण"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "deskripsi"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "popisy"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "beschrijvingen"
}
]
},
"Z3K4": "Z42"
},
{
"Z1K1": "Z3",
"Z3K1": "Z32",
"Z3K2": "Z6002K4",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "aliases"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Aliasse"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1001",
"Z11K2": "أسماء مستعارة"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "alias"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "সহগ"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "उपनाम"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "alias"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "aliasy"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "aliassen"
}
]
},
"Z3K4": "Z42"
},
{
"Z1K1": "Z3",
"Z3K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6003"
},
"Z3K2": "Z6002K5",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "claims"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "বিবৃতি"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Aussagen"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1001",
"Z11K2": "ادعاءات"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "dichiarazioni"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "दावे"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "klaim"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "tvrzení"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Beweringen"
}
]
},
"Z3K4": "Z42"
}
],
"Z4K3": "Z101",
"Z4K4": "Z6802"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Wikidata property"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "উইকিউপাত্ত বৈশিষ্ট্য"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Wikidata-Eigenschaft"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1827",
"Z11K2": "ιδιότητα των Wikidata"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1186",
"Z11K2": "מאפיין ויקינתונים"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "propriété Wikidata"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1005",
"Z11K2": "Свойство Викиданных"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1672",
"Z11K2": "維基數據屬性"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1001",
"Z11K2": "خاصية ويكي بيانات"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "Proprietà Wikidata"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1051",
"Z11K2": "Wikidata-ominaisuus"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "विकिडेटा गुणधर्म"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "Vlastnost Wikidat"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "ウィキデータのプロパティ"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1592",
"Z11K2": "Wikidata-egenskap"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Wikidata property"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"predicate"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1011",
"Z31K2": [
"Z6",
"উইকিউপাত্ত প্রপার্টি"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1004",
"Z31K2": [
"Z6",
"prédicat Wikidata"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1672",
"Z31K2": [
"Z6",
"謂語"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1001",
"Z31K2": [
"Z6",
"خاصيّة ويكي بيانات"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1787",
"Z31K2": [
"Z6",
"predicato"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1062",
"Z31K2": [
"Z6",
"Wikidata vlastnost"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1157",
"Z31K2": [
"Z6",
"predikaat"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Represents a Property as per the Wikidata data model"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "উইকিউপাত্তের উপাত্ত মডেল অনুযায়ী বিবৃতির অংশ"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "stellt eine Eigenschaft gemäß dem Wikidata-Datenmodell dar"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1672",
"Z11K2": "代表維基數據資料模型的屬性"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1001",
"Z11K2": "تمثل خاصيّة وفقًا لنموذج بيانات ويكي بيانات"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "Rappresenta una Proprietà secondo il modello di Wikidata"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "विकिडेटा की डेटा मॉडल के अनुसार एक गुणधर्म को प्रतिनिधित करता है"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "représente une propriété selon le modèle de donnée Wikidata"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "Reprezentace vlastnosti podle datového modelu Wikidat."
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Representeert een Eigenschap volgens het Wikidata-gegevensmodel"
}
]
}
}
il7tqdv9b6o299fpcdkddwyk7a565zl
307095
307094
2026-09-01T13:50:22Z
JhowieNitnek
1044
307095
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z6002"
},
"Z2K2": {
"Z1K1": "Z4",
"Z4K1": "Z6002",
"Z4K2": [
"Z3",
{
"Z1K1": "Z3",
"Z3K1": "Z6092",
"Z3K2": "Z6002K1",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "identity"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Identität"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "identité"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1672",
"Z11K2": "身份"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1001",
"Z11K2": "هوية"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "identità"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "পরিচয়"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "पहचान"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "identitas"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "identita"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "identiteit"
}
]
},
"Z3K4": "Z42"
},
{
"Z1K1": "Z3",
"Z3K1": "Z12",
"Z3K2": "Z6002K2",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "labels"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Bezeichnungen"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1001",
"Z11K2": "تسميات"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "etichette"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "লেবেল"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "लेबल"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "label"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "štítky"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "labels"
}
]
},
"Z3K4": "Z42"
},
{
"Z1K1": "Z3",
"Z3K1": "Z12",
"Z3K2": "Z6002K3",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "descriptions"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Beschreibungen"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1001",
"Z11K2": "أوصاف"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "descrizioni"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "বিবরণ"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "विवरण"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "deskripsi"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "popisy"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "beschrijvingen"
}
]
},
"Z3K4": "Z42"
},
{
"Z1K1": "Z3",
"Z3K1": "Z32",
"Z3K2": "Z6002K4",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "aliases"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Aliasse"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1001",
"Z11K2": "أسماء مستعارة"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "alias"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "সহগ"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "उपनाम"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "alias"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "aliasy"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "aliassen"
}
]
},
"Z3K4": "Z42"
},
{
"Z1K1": "Z3",
"Z3K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6003"
},
"Z3K2": "Z6002K5",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "claims"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "বিবৃতি"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Aussagen"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1001",
"Z11K2": "ادعاءات"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "dichiarazioni"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "दावे"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "klaim"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "tvrzení"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Beweringen"
}
]
},
"Z3K4": "Z42"
}
],
"Z4K3": "Z101",
"Z4K4": "Z6802"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Wikidata property"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "উইকিউপাত্ত বৈশিষ্ট্য"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Wikidata-Eigenschaft"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1827",
"Z11K2": "ιδιότητα των Wikidata"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1186",
"Z11K2": "מאפיין ויקינתונים"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "propriété Wikidata"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1005",
"Z11K2": "Свойство Викиданных"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1672",
"Z11K2": "維基數據屬性"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1001",
"Z11K2": "خاصية ويكي بيانات"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "Proprietà Wikidata"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1051",
"Z11K2": "Wikidata-ominaisuus"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "विकिडेटा गुणधर्म"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "Vlastnost Wikidat"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "ウィキデータのプロパティ"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1592",
"Z11K2": "Wikidata-egenskap"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Wikidata-eigenschap"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"predicate"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1011",
"Z31K2": [
"Z6",
"উইকিউপাত্ত প্রপার্টি"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1004",
"Z31K2": [
"Z6",
"prédicat Wikidata"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1672",
"Z31K2": [
"Z6",
"謂語"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1001",
"Z31K2": [
"Z6",
"خاصيّة ويكي بيانات"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1787",
"Z31K2": [
"Z6",
"predicato"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1062",
"Z31K2": [
"Z6",
"Wikidata vlastnost"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1157",
"Z31K2": [
"Z6",
"predikaat"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Represents a Property as per the Wikidata data model"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "উইকিউপাত্তের উপাত্ত মডেল অনুযায়ী বিবৃতির অংশ"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "stellt eine Eigenschaft gemäß dem Wikidata-Datenmodell dar"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1672",
"Z11K2": "代表維基數據資料模型的屬性"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1001",
"Z11K2": "تمثل خاصيّة وفقًا لنموذج بيانات ويكي بيانات"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "Rappresenta una Proprietà secondo il modello di Wikidata"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "विकिडेटा की डेटा मॉडल के अनुसार एक गुणधर्म को प्रतिनिधित करता है"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "représente une propriété selon le modèle de donnée Wikidata"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "Reprezentace vlastnosti podle datového modelu Wikidat."
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Representeert een Eigenschap volgens het Wikidata-gegevensmodel"
}
]
}
}
faz6e224gqptf3x2ix9l20w6ier7dpb
Z6003
0
40393
307096
302555
2026-09-01T13:54:19Z
JhowieNitnek
1044
307096
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z6003"
},
"Z2K2": {
"Z1K1": "Z4",
"Z4K1": "Z6003",
"Z4K2": [
"Z3",
{
"Z1K1": "Z3",
"Z3K1": "Z1",
"Z3K2": "Z6003K1",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "subject (reference)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Subjekt"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1025",
"Z11K2": "podmiot"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "উদ্দেশ্য"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "sujet"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1672",
"Z11K2": "主體"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "soggetto"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "विषय"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "subjek"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "reference na subjekt"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "主語 (参照)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "onderwerp (referentie)"
}
]
},
"Z3K4": "Z42"
},
{
"Z1K1": "Z3",
"Z3K1": "Z6092",
"Z3K2": "Z6003K2",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "predicate"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Prädikat"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1025",
"Z11K2": "właściwość"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "বিধেয়"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "prédicat"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1672",
"Z11K2": "謂語"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "predicato"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "विधेय"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "vlastnost"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "述語"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "predikaat"
}
]
},
"Z3K4": "Z42"
},
{
"Z1K1": "Z3",
"Z3K1": "Z1",
"Z3K2": "Z6003K3",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "value"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Wert"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1025",
"Z11K2": "wartość"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "মান"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "valeur"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1672",
"Z11K2": "值"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "valore"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "वैल्यू"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "hodnota"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "値"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "waarde"
}
]
},
"Z3K4": "Z42"
},
{
"Z1K1": "Z3",
"Z3K1": "Z6040",
"Z3K2": "Z6003K4",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "rank"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "ক্রম"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "rang"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1672",
"Z11K2": "維基數據陳述等級"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "classificazione"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Rang"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "पद"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "postavení"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "ランク"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "rang"
}
]
},
"Z3K4": "Z42"
},
{
"Z1K1": "Z3",
"Z3K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6007"
},
"Z3K2": "Z6003K5",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "qualifiers"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "qualificatori"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "क्वालिफ़ायर"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "vymezení"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Qualifikatoren"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "修飾子"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "kwalificaties"
}
]
},
"Z3K4": "Z42"
},
{
"Z1K1": "Z3",
"Z3K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6008"
},
"Z3K2": "Z6003K6",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "references"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "riferimenti"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "संदर्भ"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "reference"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Fundstellen"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "情報源"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "referenties"
}
]
},
"Z3K4": "Z42"
},
{
"Z1K1": "Z3",
"Z3K1": "Z6020",
"Z3K2": "Z6003K7",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "claim subtype"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "tipo di dichiarazione"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "दावे का प्रकार"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "druh hodnoty výroku"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Aussageuntertyp"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "ウィキデータ主張の種別"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Verklaringssubtype"
}
]
},
"Z3K4": "Z42"
}
],
"Z4K3": "Z101",
"Z4K4": "Z6803",
"Z4K7": [
"Z46"
],
"Z4K8": [
"Z64"
]
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Wikidata statement"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "উইকিউপাত্ত বিবৃতি"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Wikidata-Aussage"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1186",
"Z11K2": "קביעה של ויקינתונים"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1025",
"Z11K2": "Deklaracja Wikidanych"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "déclaration Wikidata"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1005",
"Z11K2": "Утверждение Викиданных"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1672",
"Z11K2": "維基數據陳述"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "Dichiarazione Wikidata"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1827",
"Z11K2": "δήλωση των Wikidata"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1051",
"Z11K2": "Wikidata-esitys"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "विकिडेटा बयान"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1332",
"Z11K2": "твердження Вікіданих"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "Výrok Wikidat"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "ウィキデータの文"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1592",
"Z11K2": "Wikidata-uttande"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Wikidata-verklaring"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1011",
"Z31K2": [
"Z6",
"উইকিউপাত্ত স্টেটমেন্ট"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "উইকিউপাত্তে তালিকাভুক্ত যেকোনো বিবৃতি বা বৈশিষ্ট্যের মান"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "A statement on Wikidata, including its subject, predicate, value and rank. Subjects can be LIDs, LFIDs, LSIDs, QIDs."
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "une déclaration sur Wikidata, incluant son sujet, son prédicat, sa valeur et son rang"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1672",
"Z11K2": "維基數據上的陳述,包含其主體、謂語、值與等級"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "Una dichiarazione di Wikidata, includente il soggetto, il predicato, il valore e la classificazione"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "Výrok na Wikidatech, zahrnující subjekt, vlastnost, hodnotu a postavení. Subjektem mohou být LID, LFID, LSID, QID."
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "ウィキデータでは主語、述語、値そしてランクが含まれます。主語はLID、LFID、LSID、QIDです。"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Een verklaring op Wikidata, bestaande uit het onderwerp, het predikaat, de waarde en de rangorde. Onderwerpen kunnen LID’s, LFID’s, LSID’s of QID’s zijn."
}
]
}
}
3z9qimebm0qbqfi8kkl14t5svw5x4ja
307098
307096
2026-09-01T13:57:13Z
JhowieNitnek
1044
307098
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z6003"
},
"Z2K2": {
"Z1K1": "Z4",
"Z4K1": "Z6003",
"Z4K2": [
"Z3",
{
"Z1K1": "Z3",
"Z3K1": "Z1",
"Z3K2": "Z6003K1",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "subject (reference)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Subjekt"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1025",
"Z11K2": "podmiot"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "উদ্দেশ্য"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "sujet"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1672",
"Z11K2": "主體"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "soggetto"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "विषय"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "subjek"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "reference na subjekt"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "主語 (参照)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "onderwerp (referentie)"
}
]
},
"Z3K4": "Z42"
},
{
"Z1K1": "Z3",
"Z3K1": "Z6092",
"Z3K2": "Z6003K2",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "predicate"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Prädikat"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1025",
"Z11K2": "właściwość"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "বিধেয়"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "prédicat"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1672",
"Z11K2": "謂語"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "predicato"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "विधेय"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "vlastnost"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "述語"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "predikaat"
}
]
},
"Z3K4": "Z42"
},
{
"Z1K1": "Z3",
"Z3K1": "Z1",
"Z3K2": "Z6003K3",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "value"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Wert"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1025",
"Z11K2": "wartość"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "মান"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "valeur"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1672",
"Z11K2": "值"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "valore"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "वैल्यू"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "hodnota"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "値"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "waarde"
}
]
},
"Z3K4": "Z42"
},
{
"Z1K1": "Z3",
"Z3K1": "Z6040",
"Z3K2": "Z6003K4",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "rank"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "ক্রম"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "rang"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1672",
"Z11K2": "維基數據陳述等級"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "classificazione"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Rang"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "पद"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "postavení"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "ランク"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "rang"
}
]
},
"Z3K4": "Z42"
},
{
"Z1K1": "Z3",
"Z3K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6007"
},
"Z3K2": "Z6003K5",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "qualifiers"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "qualificatori"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "क्वालिफ़ायर"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "vymezení"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Qualifikatoren"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "修飾子"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "kwalificaties"
}
]
},
"Z3K4": "Z42"
},
{
"Z1K1": "Z3",
"Z3K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6008"
},
"Z3K2": "Z6003K6",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "references"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "riferimenti"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "संदर्भ"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "reference"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Fundstellen"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "情報源"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "referenties"
}
]
},
"Z3K4": "Z42"
},
{
"Z1K1": "Z3",
"Z3K1": "Z6020",
"Z3K2": "Z6003K7",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "claim subtype"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "tipo di dichiarazione"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "दावे का प्रकार"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "druh hodnoty výroku"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Aussageuntertyp"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "ウィキデータ主張の種別"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "beweringssubtype"
}
]
},
"Z3K4": "Z42"
}
],
"Z4K3": "Z101",
"Z4K4": "Z6803",
"Z4K7": [
"Z46"
],
"Z4K8": [
"Z64"
]
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Wikidata statement"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "উইকিউপাত্ত বিবৃতি"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Wikidata-Aussage"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1186",
"Z11K2": "קביעה של ויקינתונים"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1025",
"Z11K2": "Deklaracja Wikidanych"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "déclaration Wikidata"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1005",
"Z11K2": "Утверждение Викиданных"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1672",
"Z11K2": "維基數據陳述"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "Dichiarazione Wikidata"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1827",
"Z11K2": "δήλωση των Wikidata"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1051",
"Z11K2": "Wikidata-esitys"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "विकिडेटा बयान"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1332",
"Z11K2": "твердження Вікіданих"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "Výrok Wikidat"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "ウィキデータの文"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1592",
"Z11K2": "Wikidata-uttande"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Wikidata-verklaring"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1011",
"Z31K2": [
"Z6",
"উইকিউপাত্ত স্টেটমেন্ট"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "উইকিউপাত্তে তালিকাভুক্ত যেকোনো বিবৃতি বা বৈশিষ্ট্যের মান"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "A statement on Wikidata, including its subject, predicate, value and rank. Subjects can be LIDs, LFIDs, LSIDs, QIDs."
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "une déclaration sur Wikidata, incluant son sujet, son prédicat, sa valeur et son rang"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1672",
"Z11K2": "維基數據上的陳述,包含其主體、謂語、值與等級"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "Una dichiarazione di Wikidata, includente il soggetto, il predicato, il valore e la classificazione"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "Výrok na Wikidatech, zahrnující subjekt, vlastnost, hodnotu a postavení. Subjektem mohou být LID, LFID, LSID, QID."
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "ウィキデータでは主語、述語、値そしてランクが含まれます。主語はLID、LFID、LSID、QIDです。"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Een verklaring op Wikidata, bestaande uit het onderwerp, het predikaat, de waarde en de rangorde. Onderwerpen kunnen LID’s, LFID’s, LSID’s of QID’s zijn."
}
]
}
}
2bv5ex8a4vhzjispy4pv8xs0u6oyrfw
Z6006
0
40395
307099
303229
2026-09-01T14:00:00Z
JhowieNitnek
1044
307099
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z6006"
},
"Z2K2": {
"Z1K1": "Z4",
"Z4K1": "Z6006",
"Z4K2": [
"Z3",
{
"Z1K1": "Z3",
"Z3K1": "Z6096",
"Z3K2": "Z6006K1",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "identity"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "পরিচয়"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Identität"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "identité"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "identità"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "識別子"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "identiteit"
}
]
},
"Z3K4": "Z42"
},
{
"Z1K1": "Z3",
"Z3K1": "Z12",
"Z3K2": "Z6006K2",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "glosses"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "glosse"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Glosse"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "注釈"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "glossen"
}
]
},
"Z3K4": "Z42"
},
{
"Z1K1": "Z3",
"Z3K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6003"
},
"Z3K2": "Z6006K3",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "claims"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "déclarations"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "dichiarazioni"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Aussage"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "主張"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "beweringen"
}
]
},
"Z3K4": "Z42"
},
{
"Z1K1": "Z3",
"Z3K1": "Z6095",
"Z3K2": "Z6006K4",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "lexeme"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "lessema"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Lexem"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "語彙素"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "lexeem"
}
]
},
"Z3K4": "Z42"
}
],
"Z4K3": "Z101",
"Z4K4": "Z6806"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Wikidata lexeme sense"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "উইকিউপাত্ত লেক্সিম অর্থ"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Wikidata-Lexemsinn"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1186",
"Z11K2": "משמעות של יחידה מילונית של ויקינתונים"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "sens d'un lexème Wikidata"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1005",
"Z11K2": "Значение лексемы Викиданных"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1672",
"Z11K2": "維基數據詞位意義"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "Senso di lessema Wikidata"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1051",
"Z11K2": "Wikidata-lekseemin merkitys"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "विकिडेटा शब्दिम बोध"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "Význam lexému Wikidat"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "ウィキデータの語彙素の語義"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Wilidata-lexeembetekenis"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1011",
"Z31K2": [
"Z6",
"লেক্সিম অর্থ",
"অর্থ"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "শব্দের বা বাক্যের অর্থ বর্ণনা করে এমন বস্তু"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "A sense of a Wikidata lexeme"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1672",
"Z11K2": "維基數據詞位的意義"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "विकिडेटा के किसी शब्दिम का एक बोध"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "Un sens de lexème Wikidata"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "Reprezentace významu lexému podle datového modelu Wikidat."
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Een betekenis van een Wikidata-lexeem"
}
]
}
}
6dkihl4dihieq2xvqwm350x1fczn8vv
Z19801
0
42582
307218
137694
2026-09-01T18:51:53Z
Ameisenigel
44
de
307218
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z19801"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z19800",
"Z14K3": {
"Z1K1": "Z16",
"Z16K1": "Z610",
"Z16K2": "def Z19800(Z19800K1, Z19800K2):\n\treturn Z19800K1.limit_denominator(Z19800K2)"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "python limit_denominator"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Nenner des Grenzwerts in Python"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
m3vcc9zym504cr36hmylu3s2jwf22fl
Z19802
0
42583
307219
137696
2026-09-01T18:53:07Z
Ameisenigel
44
de
307219
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z19802"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z19800",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z19800",
"Z19800K1": {
"Z1K1": "Z19677",
"Z19677K1": "Z16660",
"Z19677K2": {
"Z1K1": "Z13518",
"Z13518K1": "31415926535897932"
},
"Z19677K3": {
"Z1K1": "Z13518",
"Z13518K1": "10000000000000000"
}
},
"Z19800K2": {
"Z1K1": "Z13518",
"Z13518K1": "50"
}
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z19686",
"Z19686K2": {
"Z1K1": "Z19677",
"Z19677K1": "Z16660",
"Z19677K2": {
"Z1K1": "Z13518",
"Z13518K1": "22"
},
"Z19677K3": {
"Z1K1": "Z13518",
"Z13518K1": "7"
}
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "22/7 is an approximation to pi"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Grenzwert von 31415926535897932/10000000000000000"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
fb1501qbbgi0ihpo095585kf7qhrpqp
Z19803
0
42584
307220
137700
2026-09-01T18:54:51Z
Ameisenigel
44
de
307220
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z19803"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z19682",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z19682",
"Z19682K1": {
"Z1K1": "Z19677",
"Z19677K1": "Z16660",
"Z19677K2": {
"Z1K1": "Z13518",
"Z13518K1": "999999999999999999999"
},
"Z19677K3": {
"Z1K1": "Z13518",
"Z13518K1": "1000000000000000000000"
}
}
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z16688",
"Z16688K2": {
"Z1K1": "Z16683",
"Z16683K1": "",
"Z16683K2": {
"Z1K1": "Z13518",
"Z13518K1": ""
}
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "(10^21 - 1) / (10^21)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "999999999999999999999/1000000000000000000000 ≈"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
ih2z5rrs0mj49xemmqcazdz8bnoblum
Z19804
0
42585
307221
137702
2026-09-01T18:55:58Z
Ameisenigel
44
de
307221
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z19804"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z19800",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z19800",
"Z19800K1": {
"Z1K1": "Z19677",
"Z19677K1": "Z16660",
"Z19677K2": {
"Z1K1": "Z13518",
"Z13518K1": "1"
},
"Z19677K3": {
"Z1K1": "Z13518",
"Z13518K1": "14"
}
},
"Z19800K2": {
"Z1K1": "Z13518",
"Z13518K1": "7"
}
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z19686",
"Z19686K2": {
"Z1K1": "Z19677",
"Z19677K1": "Z16662",
"Z19677K2": {
"Z1K1": "Z13518",
"Z13518K1": "0"
},
"Z19677K3": {
"Z1K1": "Z13518",
"Z13518K1": "1"
}
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "1/14 is half way to 1/7, but just as close to 0"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Grenzwert von 1/14 ist −0/1"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
k31ssb0i6umvingima5ls9niirdtev9
Z19805
0
42586
307222
137704
2026-09-01T18:56:31Z
Ameisenigel
44
de
307222
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z19805"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z19800",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z19800",
"Z19800K1": {
"Z1K1": "Z19677",
"Z19677K1": "Z16662",
"Z19677K2": {
"Z1K1": "Z13518",
"Z13518K1": "1"
},
"Z19677K3": {
"Z1K1": "Z13518",
"Z13518K1": "14"
}
},
"Z19800K2": {
"Z1K1": "Z13518",
"Z13518K1": "7"
}
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z19686",
"Z19686K2": {
"Z1K1": "Z19677",
"Z19677K1": "Z16661",
"Z19677K2": {
"Z1K1": "Z13518",
"Z13518K1": "0"
},
"Z19677K3": {
"Z1K1": "Z13518",
"Z13518K1": "1"
}
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "-1/14 also rounds toward 0 instead of 1/7"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Grenzwert von −1/14 ist 0/1"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
ehou2h19jdbt2q9scxhsq0807ossgyh
Z19806
0
42587
307223
252187
2026-09-01T18:57:39Z
Ameisenigel
44
de
307223
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z19806"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z19677",
"Z17K2": "Z19806K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "rational number to test"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "nombre rationnel à tester"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "rationale Zahl"
}
]
}
}
],
"Z8K2": "Z40",
"Z8K3": [
"Z20",
"Z19808",
"Z19809",
"Z19810",
"Z19811",
"Z19812"
],
"Z8K4": [
"Z14",
"Z31521",
"Z19807",
"Z19813",
"Z31308"
],
"Z8K5": "Z19806"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "is rational number an integer"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "ce nombre rationnel est-il un entier ?"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "ist rationale Zahl eine Ganzzahl"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"is integer",
"rational number is integer",
"is Rational number integral?",
"is Rational number non-fractional?"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "returns true if a rational number is equivalent to an integer"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "renvoie \"vrai\" si un nombre rationnel est équivalent à un entier"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "gibt wahr aus, wenn eine rationale Zahl einer Ganzzahl entspricht"
}
]
}
}
7cgzb7afxfn46m6i1aoqq8889zii8ib
307225
307223
2026-09-01T18:59:48Z
WikiLambda system
3
Updated the implementation list (see [[Help:Wikifunctions/Implementation_ordering_and_choosing|About implementation selection]])
307225
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z19806"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z19677",
"Z17K2": "Z19806K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "rational number to test"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "nombre rationnel à tester"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "rationale Zahl"
}
]
}
}
],
"Z8K2": "Z40",
"Z8K3": [
"Z20",
"Z19808",
"Z19809",
"Z19810",
"Z19811",
"Z19812"
],
"Z8K4": [
"Z14",
"Z19807",
"Z31521",
"Z19813",
"Z31308"
],
"Z8K5": "Z19806"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "is rational number an integer"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "ce nombre rationnel est-il un entier ?"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "ist rationale Zahl eine Ganzzahl"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"is integer",
"rational number is integer",
"is Rational number integral?",
"is Rational number non-fractional?"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "returns true if a rational number is equivalent to an integer"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "renvoie \"vrai\" si un nombre rationnel est équivalent à un entier"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "gibt wahr aus, wenn eine rationale Zahl einer Ganzzahl entspricht"
}
]
}
}
aam3r4p5moehahur9d5zubrwxcrcksb
Z19807
0
42588
307224
251009
2026-09-01T18:59:43Z
Ameisenigel
44
de
307224
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z19807"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z19806",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z31547",
"Z31547K1": {
"Z1K1": "Z7",
"Z7K1": "Z19724",
"Z19724K1": {
"Z1K1": "Z18",
"Z18K1": "Z19806K1"
}
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "is q in Z, composition of denominator=1"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "ce rationnel est-il un entier ?, en Composition"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "ist rationale Zahl eine Ganzzahl als Komposition"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
bf3cllkgv5jv1nrwt49kduujc3h073k
Z19808
0
42589
307226
148528
2026-09-01T19:00:10Z
Ameisenigel
44
de
307226
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z19808"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z19806",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z19806",
"Z19806K1": {
"Z1K1": "Z19677",
"Z19677K1": "Z16662",
"Z19677K2": {
"Z1K1": "Z13518",
"Z13518K1": "6"
},
"Z19677K3": {
"Z1K1": "Z13518",
"Z13518K1": "2"
}
}
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z844",
"Z844K2": {
"Z1K1": "Z40",
"Z40K1": "Z41"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "-6/2 is an integer"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "-6/2 est un entier"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "−6/2 ist eine Ganzzahl"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
tntula80lxgr7uggehk7g7l2e64d66w
Z19809
0
42590
307227
137733
2026-09-01T19:00:50Z
Ameisenigel
44
de
307227
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z19809"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z19806",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z19806",
"Z19806K1": {
"Z1K1": "Z19677",
"Z19677K1": "Z16660",
"Z19677K2": {
"Z1K1": "Z13518",
"Z13518K1": "3"
},
"Z19677K3": {
"Z1K1": "Z13518",
"Z13518K1": "1"
}
}
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z844",
"Z844K2": {
"Z1K1": "Z40",
"Z40K1": "Z41"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "3/1 is an integer"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "3/1 ist eine Ganzzahl"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
4wtsg45k612swg9uw7uny0yo86sqjz9
Z19810
0
42591
307228
137734
2026-09-01T19:01:14Z
Ameisenigel
44
de
307228
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z19810"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z19806",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z19806",
"Z19806K1": {
"Z1K1": "Z19677",
"Z19677K1": "Z16660",
"Z19677K2": {
"Z1K1": "Z13518",
"Z13518K1": "99"
},
"Z19677K3": {
"Z1K1": "Z13518",
"Z13518K1": "9"
}
}
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z844",
"Z844K2": {
"Z1K1": "Z40",
"Z40K1": "Z41"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "99/9 is an integer"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "99/9 ist eine Ganzzahl"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
je777z35ajasw92c10o64blqji87o1r
Z24453
0
56079
307135
242666
2026-09-01T15:57:58Z
YoshiRulz
10156
Removed Z31147 from the approved list of implementations
307135
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z24453"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6",
"Z17K2": "Z24453K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "string"
}
]
}
}
],
"Z8K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6"
},
"Z8K3": [
"Z20",
"Z31144",
"Z31151"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z24453"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "String to grapheme list"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"split into graphemes"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Break the initial string into a list of graphemes (Output type uses a list of String to represent a list of [[Wikifunctions:Type proposals/Grapheme]] for now)"
}
]
}
}
ll62udrp6555pmz7qbkq07tckzm2s0g
307136
307135
2026-09-01T15:58:00Z
YoshiRulz
10156
Removed Z31144 and Z31151 from the approved list of test cases
307136
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z24453"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6",
"Z17K2": "Z24453K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "string"
}
]
}
}
],
"Z8K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6"
},
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z24453"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "String to grapheme list"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"split into graphemes"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Break the initial string into a list of graphemes (Output type uses a list of String to represent a list of [[Wikifunctions:Type proposals/Grapheme]] for now)"
}
]
}
}
mt9pxr1x6v16750dxdxpkzobvg90pdt
307138
307136
2026-09-01T16:03:24Z
YoshiRulz
10156
Change return type to list of Grapheme
307138
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z24453"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6",
"Z17K2": "Z24453K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "string"
}
]
}
}
],
"Z8K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z40783"
},
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z24453"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "String to grapheme list"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"split into graphemes"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Break the initial string into a list of graphemes"
}
]
}
}
mzo0rsmdplkix95wawqx981ys9baqzk
307146
307138
2026-09-01T16:18:13Z
YoshiRulz
10156
Added Z31144 and Z31151 to the approved list of test cases
307146
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z24453"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6",
"Z17K2": "Z24453K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "string"
}
]
}
}
],
"Z8K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z40783"
},
"Z8K3": [
"Z20",
"Z31144",
"Z31151"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z24453"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "String to grapheme list"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"split into graphemes"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Break the initial string into a list of graphemes"
}
]
}
}
so6fkt3rzm9gfj2b110boy8djk4kumz
307151
307146
2026-09-01T16:29:19Z
YoshiRulz
10156
Added Z31147 to the approved list of implementations
307151
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z24453"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6",
"Z17K2": "Z24453K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "string"
}
]
}
}
],
"Z8K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z40783"
},
"Z8K3": [
"Z20",
"Z31144",
"Z31151"
],
"Z8K4": [
"Z14",
"Z31147"
],
"Z8K5": "Z24453"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "String to grapheme list"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"split into graphemes"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Break the initial string into a list of graphemes"
}
]
}
}
hcgesatxy5w6s1p4ujz55eym65401b1
Wikifunctions:Type proposals/Geometrical point
4
56108
307181
285662
2026-09-01T18:11:40Z
Ameisenigel
44
/* Comments */ Support
307181
wikitext
text/x-wiki
== Summary ==
A big field of functions currently is absent from Wikifunctions - geometrical functions. We already have number functions and trigonometrical functions, but not geometrical.
This type could be used in such functions as, for example, rotate point relative to another point by given angle; get the angle between three points; get the middle point between two points.
Further object types could be created based on this one: segment, polygon, circle, surface, sphere. Other types to be created after this one: vector, line, curve, plane.
== Structure ==
This object type should consist of two real numbers, maybe three: representing a position along x, y and z axis.
=== Example values ===
Value …
{|class="wikitable" style="margin:.6em 1.6em"
|-
| <syntaxhighlight lang="json" line="line">{
"type": "point",
"value": "x"
{
"type": "float64"
},
"value": "y"
{
"type": "float64"
},
"value": "z"
{
"type": "float64"
},
}</syntaxhighlight>
|}
== Identity ==
Two points are the same if each of their coordinates (x, y, z) are the same
== Display function ==
''How would a value of this type be displayed on Wikifunctions''
<code>Point(12.34, -56.78)</code>
== Comments ==
* {{s}} as proposer. --[[User:Tohaomg|Tohaomg]] ([[User talk:Tohaomg|talk]]) 16:33, 3 May 2025 (UTC)--sign here
* {{s}} integral for many potential future functions. [[User:Diamondarmorstev|Diamondarmorstev]] ([[User talk:Diamondarmorstev|talk]]) 00:59, 30 September 2025 (UTC)
* If the type is limited to 2D, it would be better served by [[WF:Type_proposals/complex128]]. If it's N-dimensional, just use lists like the few vector (matrix) functions that already exist. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 19:15, 27 November 2025 (UTC)
* {{o}} on the basis of strong preference towards the use of rational numbers [[User:Feeglgeef|Feeglgeef]] ([[User talk:Feeglgeef|talk]]) 14:02, 7 April 2026 (UTC)
*:Would you be willing to propose a new point-type with rational numbers? [[User:So9q|So9q]] ([[User talk:So9q|talk]]) 16:53, 22 June 2026 (UTC)
: {{o}} per YoshiRulz. [[User:JJPMaster|JJP]]<sub>[[User talk:JJPMaster|Mas]]<sub>[[Special:Contributions/JJPMaster|ter]]</sub></sub> ([[wikt:she|she]]/[[wikt:they|they]]) 14:11, 7 April 2026 (UTC)
* {{S}} --[[User:Ameisenigel|Ameisenigel]] ([[User talk:Ameisenigel|talk]]) 18:11, 1 September 2026 (UTC)
7oen40xl1bb5cuhd9o9304u71h85qp3
Wikifunctions:FAQ/ko
4
57912
307384
296922
2026-09-02T10:32:15Z
Glocal Campus
102029
Created page with "위키함수는 누구나 호출, 작성, 유지, 사용할 수 있는 모든 종류의 기능 카탈로그를 제공하는 새로운 위키미디어 프로젝트이다. 또한 궁극적으로 추상 위키백과에서 언어 독립적인 기사를 모든 위키피디아의 언어로 번역할 수 있는 기본 기술을 제공한다. 이를 통해 모든 사람이 원하는 언어로 기사를 기고하고 읽을 수 있습니다."
307384
wikitext
text/x-wiki
<languages/>
{{shortcut|[[WF:FAQ]]}}
이 문서는 위키함수에 관련된 자주 묻는 질문을 다룬 문서입니다. 원하는 답변이 없으시다면 [[Wikifunctions talk:FAQ|토론 문서]]에서 직접 물어보시기 바랍니다!
또한, 위키함수와 추상 위키백과에 대한 보다 구체적인 질문에 대해서는 [[:m:Special:MyLanguage/Abstract Wikipedia/FAQ|메타에 대한 FAQ]]를 고려하시기 바랍니다.
__TOC__
<span id="Introduction"></span>
== 소개 ==
<span id="What_is_this_project_about?"></span>
=== 이 프로젝트는 무엇에 관한 것인가요? ===
위키함수는 누구나 호출, 작성, 유지, 사용할 수 있는 모든 종류의 기능 카탈로그를 제공하는 새로운 위키미디어 프로젝트이다. 또한 궁극적으로 추상 위키백과에서 언어 독립적인 기사를 모든 위키피디아의 언어로 번역할 수 있는 기본 기술을 제공한다. 이를 통해 모든 사람이 원하는 언어로 기사를 기고하고 읽을 수 있습니다.
<span id="What_is_a_function?"></span>
=== 함수가 무엇인가요? ===
<div lang="en" dir="ltr" class="mw-content-ltr">
Functions are a form of knowledge that can answer questions, such as how many days have passed between two dates or the distance between two cities. More complicated functions can answer more complicated questions, such as the volume of a three-dimensional shape, the distance between Mars and Venus on a certain date, or whether two species were alive at the same time.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We already use functions in many types of knowledge inquiries, such as asking a question to a search engine. The templates, such as [[:w:en:Template:Convert|Template:Convert]] and [[:w:en:Template:Age|Template:Age]] on English Wikipedia, are also examples of functions that are already used in many Wikipedias, written in wikitext and Lua and manually copied to each wiki where they're wanted.
</div>
<span id="What_is_an_implementation?"></span>
=== 구현이 무엇인가요? ===
<div lang="en" dir="ltr" class="mw-content-ltr">
An implementation is a particular way to execute a function. An implementation is a recipe that lists the steps that are needed to run the function. It may be a piece of code in a programming language or a combination of calls to other functions. A function may have many implementations, which should all be equivalent.
</div>
<span id="What_is_a_test?"></span>
=== 테스트가 무엇인가요? ===
<div lang="en" dir="ltr" class="mw-content-ltr">
A test is a way to determine if a given function is doing the right thing. A function will typically have multiple testers, each specifying some input to the function and the conditions the output for the given input must fulfill.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
For example, testers for a “title case” function might include: “<span dir="ltr" lang="en">abc</span>” should become “<span dir="ltr" lang="en">Abc</span>”; “<span dir="ltr" lang="en">war and peace</span>” should become “<span dir="ltr" lang="en">War and Peace</span>”; “<span dir="ltr" lang="ru">война и мир</span>” should become “<span dir="ltr" lang="ru">Война и мир</span>”; and “<span dir="ltr" lang="en">123</span>” should remain “<span dir="ltr" lang="en">123</span>”.
</div>
<span id="Which_features_are_available_now,_which_will_be_soon_available,_and_which_are_further_away?"></span>
=== 현재 사용 가능할지, 곧 사용 가능해질지, 언제 사용될지 모르는 함수가 무엇인가요? ===
* <span lang="en" dir="ltr" class="mw-content-ltr">At launch:</span>
** 문자열과 불리언을 다루는 함수를 가질 수 있습니다.
** 위키함수는 처음부터 완전히 국제화되었습니다. 어떤 언어로든 사용할 수 있습니다.
* [[Wikifunctions:Status|진행 중인 개발]]:
** 일반적인 유형과 함수는 완전히 지원되지 않습니다.
** <span lang="en" dir="ltr" class="mw-content-ltr">Adding types will, for now, be something that is limited to the development team. In the future, the community will be able to add more types. There is a lot of work to be done in the future to make types behave much more smoothly.</span>
*** <span lang="en" dir="ltr" class="mw-content-ltr">One particularly interesting type will be binary data, and particularly files.</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">We currently support two programming languages for implementations: JavaScript and Python. In the future, we want to support many more.</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">Currently, it is ''not'' possible to call other functions from implementations written in any programming language. This is currently only possible through composition.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">In the future:</span>
** 다른 위키미디어 프로젝트에서 함수를 호출하여 해당 결과를 문서 출력에 통합할 수 있습니다.
** 함수 내에서 위키데이터의 데이터를 사용할 수 있습니다.
** Commons Data 네임스페이스에서 데이터 세트를 호출할 수 있습니다.
<span id="How_is_Wikifunctions_multilingual?"></span>
=== 위키함수는 어떻게 다국어를 지원하나요? ===
{{main|Special:MyLanguage/Help:Multilingual}}
위키함수와 추상 위키백과는 서로 영향을 미치지 않는 여러 가지 방식으로 다국어를 사용합니다:
* '''위키함수는 콘텐츠와 사용자 인터페이스 모두 다국어를 지원합니다.''' 사용자는 모든 자연어로 위키함수의 함수를 읽고 호출할 수 있습니다. 예를 들어, "문자열 추가" 함수에는 [https://www.wikifunctions.org/view/en/Z10000 영어], [https://www.wikifunctions.org/view/pl/Z10000 폴란드어], [https://www.wikifunctions.org/view/he/Z10000 히브리어] 버전이 있으나, 더 많은 언어로도 제공됩니다.
* <span lang="en" dir="ltr" class="mw-content-ltr">'''Contributors can edit and improve Wikifunctions using their language.''' Even implementations can be edited in the natural language of the contributor. For example, the composition of the “and” function can be edited in [https://www.wikifunctions.org/wiki/Z11223?action=edit&uselang=de German], [https://www.wikifunctions.org/wiki/Z11223?action=edit&uselang=en English], or any other of about 300 languages.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">'''Wikifunctions functions can be used to create results for any natural language.''' The community is creating a growing number of functions to support the generation of text in many natural languages. We have functions for [[Wikifunctions:Catalogue#Breton|Breton]], [[Wikifunctions:Catalogue#Rohingya|Rohingya]], [[Wikifunctions:Catalogue#English|English]], and many other languages.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">'''Functions in Wikifunctions can be implemented in various different programming languages.''' For example, the [[Z10000|join function]] is implemented in both [[Z10005|JavaScript]] and [[Z10004|Python]].</span>
<span id="Which_programming_languages_does_Wikifunctions_currently_support?_Which_programming_languages_will_be_supported_in_the_future?"></span>
=== 현재 위키함수는 어떤 프로그래밍 언어를 지원하나요? 앞으로 어떤 프로그래밍 언어가 지원되나요? ===
{{main|WF:programming languages}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Currently, Wikifunctions supports implementations written in JavaScript and Python. We plan to add support for more programming languages in the future. We hope to add at least one further programming language in 2025 (but have not yet decided which one).
</div>
<span id="How_will_Wikifunctions_be_integrated_into_other_projects?"></span>
=== 위키함수는 다른 프로젝트에 어떻게 통합되나요? ===
<div lang="en" dir="ltr" class="mw-content-ltr">
Wikifunctions is the first step towards building Abstract Wikipedia. Our near-term focus will be on supporting the community and making improvements based on feedback. Concurrently, we will begin the process of integrating it with Wikipedia and Wikidata, which will enable broader real-life applications and get us closer to the vision of Abstract Wikipedia.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Contributors will be able to call functions stored on the Wikifunctions site from within their wikis. The result of the function call will be displayed to readers of the wiki. This can be used, for example, to calculate the age of a person, the population density based on population and area data from Wikidata, or to draw a graph and integrate it into a given article.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Another option to integrate Wikifunctions will be to integrate an interactive function call interface within their wiki. This could be used, for example, in a Wikipedia article to dynamically calculate the result of a physical equation based on reader-provided parameters, draw and interact with mathematical functions, etc.
</div>
<span id="What_Wikifunctions_is_not"></span>
<div class="mw-translate-fuzzy">
=== 위키함수란 무엇인가요? ===
</div>
자세한 내용은 [[Special:MyLanguage/Wikifunctions:What Wikifunctions is not|위키함수:위키함수가 아닌 것]]을 참고하세요.
<span id="What_license_will_the_functions_and_derived_content_be_under?"></span>
=== 함수 및 파생 콘텐츠에는 어떤 라이선스가 적용되나요? ===
<div lang="en" dir="ltr" class="mw-content-ltr">
Per the discussion happened [[:m:Special:MyLanguage/Abstract Wikipedia/Licensing discussion|on Meta between November and December 2021]], all contributions to Wikifunctions and the wider Abstract Wikipedia projects will be published under free licenses. In particular:
</div>
* 위키함수의 [[Special:MyLanguage/Wikifunctions:Glossary#Content|텍스트 내용]]은 [[w:ko:크리에이티브 커먼즈 라이선스|CC BY-SA 4.0]]에 따라 게시됩니다.
* [[Special:MyLanguage/Wikifunctions:Glossary#Function|함수 서명]] 및 위키함수의 기타 구조화된 콘텐츠는 [[w:ko:크리에이티브 커먼즈 라이선스#CC0|CC0]]으로 게시됩니다.
* 위키함수의 [[Special:MyLanguage/Wikifunctions:Glossary#Implementation|코드 구현]]은 [[w:ko:아파치 라이선스|아파치 2 라이선스]]에 따라 게시됩니다.
* 추상 위키백과의 [[Special:MyLanguage/Wikifunctions:Glossary#Content|추상 내용]]은 CC BY-SA 4.0에 따라 게시됩니다.
<div lang="en" dir="ltr" class="mw-content-ltr">
There are still some points that will need to be addressed in the future, such as the license of the generated content from the abstract content. We plan on drafting a more comprehensive document with the Legal department about how people can re-use code from Wikifunctions as painlessly as possible, while adhering to the license.
</div>
<span id="Contributing"></span>
== 기여 ==
<span id="I'm_new_here._What_is_there_for_me_to_do_and_how_can_I_help?"></span>
=== 제가 처음 와 봤는데, 제가 무엇을 해야 하고 어떻게 도와드려야 하나요? ===
<div lang="en" dir="ltr" class="mw-content-ltr">
Welcome! We're very happy to have you here! There are many opportunities for contributing to Wikifunctions, from creating new functions to improving and translating documentation. If you are looking for ways to get involved, we recommend that maybe, depending on your level of comfort, you suggest a new function on a topic you are interested in. Or even create such a function. Provide some tests. Try your hand at an implementation. Help with translations. Read and improve our documentation. Help with organizing the community.
</div>
<span id="How_do_I_create_a_new_function,_implementation,_or_test?"></span>
=== 새 함수, 구현, 테스트는 어떻게 만드나요? ===
새 기능, 구현, 테스트를 만드는 방법에 대해서는 [[Special:MyLanguage/Wikifunctions:Introduction|위키함수:소개]]를 참고하세요.
구현을 만드는 방법에 대해서는 [[Special:MyLanguage/Wikifunctions:How to create implementations|위키함수:구현을 만드는 방법]]을 참고하세요.
<span id="What_should_I_edit_first?"></span>
=== 무엇을 먼저 편집해야 하나요? ===
<div lang="en" dir="ltr" class="mw-content-ltr">
If you can write several languages, find functions that don't have labels and descriptions in your languages yet on the page [[Special:ListMissingLabels]], and help to add them.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
If you have some interest in a domain that could feature functions in Wikifunctions, but yet doesn't, or if you have more ideas for functions, go to the page for [[Wikifunctions:Suggest a new function|suggesting new functions]] and present your ideas.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
If you are a coder in JavaScript or Python, maybe you want to check for functions that don't yet have implementations in JavaScript or Python, and try to write them.
</div>
<span id="Where_can_I_go_for_help?"></span>
=== 어디에서 도움을 받을 수 있나요? ===
<div lang="en" dir="ltr" class="mw-content-ltr">
Your first stop should be the [[Special:MyLanguage/Help:Contents|Help portal]], where you'll find all the documentation related to using and editing Wikifunctions. If you're still stuck, post a message on [[Wikifunctions:Project chat|Project chat]], and someone will answer your question.
</div>
<span id="How_do_we_sort_or_categorize_functions?"></span>
=== 함수를 어떻게 정렬하거나 분류하나요? ===
{{Tracked|T285424}}
<div lang="en" dir="ltr" class="mw-content-ltr">
For now, the best way to sort or categorize functions is to do it by hand through [[Special:MyLanguage/Wikifunctions:Catalogue|pages in the Wikifunctions namespace]]. Another option would be through the talk page of the given function. We will monitor these efforts and discuss with the community which changes to the system would be helpful for this task.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== How can I setup the software locally to hack on it? ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
See [[Special:MyLanguage/Wikifunctions:Hacking on the evaluator and orchestrator|Hacking on the evaluator and orchestrator]].
</div>
[[Category:FAQ| {{#translation:}}]]
7y0xommful8djety5qeok1xf8s88amp
307386
307384
2026-09-02T10:33:00Z
Glocal Campus
102029
Created page with "함수는 질문에 답할 수 있는 지식의 한 형태입니다. 예를 들어서 두 날짜 사이에 며칠이 지났는지 또는 두 도시 사이의 거리를 말합니다. 더 복잡한 함수는 3차원 형태의 부피, 특정 날짜에 화성과 금성 사이의 거리, 또는 두 종이 동시에 살아 있었는지와 같은 더 복잡한 질문에 답할 수 있다."
307386
wikitext
text/x-wiki
<languages/>
{{shortcut|[[WF:FAQ]]}}
이 문서는 위키함수에 관련된 자주 묻는 질문을 다룬 문서입니다. 원하는 답변이 없으시다면 [[Wikifunctions talk:FAQ|토론 문서]]에서 직접 물어보시기 바랍니다!
또한, 위키함수와 추상 위키백과에 대한 보다 구체적인 질문에 대해서는 [[:m:Special:MyLanguage/Abstract Wikipedia/FAQ|메타에 대한 FAQ]]를 고려하시기 바랍니다.
__TOC__
<span id="Introduction"></span>
== 소개 ==
<span id="What_is_this_project_about?"></span>
=== 이 프로젝트는 무엇에 관한 것인가요? ===
위키함수는 누구나 호출, 작성, 유지, 사용할 수 있는 모든 종류의 기능 카탈로그를 제공하는 새로운 위키미디어 프로젝트이다. 또한 궁극적으로 추상 위키백과에서 언어 독립적인 기사를 모든 위키피디아의 언어로 번역할 수 있는 기본 기술을 제공한다. 이를 통해 모든 사람이 원하는 언어로 기사를 기고하고 읽을 수 있습니다.
<span id="What_is_a_function?"></span>
=== 함수가 무엇인가요? ===
함수는 질문에 답할 수 있는 지식의 한 형태입니다. 예를 들어서 두 날짜 사이에 며칠이 지났는지 또는 두 도시 사이의 거리를 말합니다. 더 복잡한 함수는 3차원 형태의 부피, 특정 날짜에 화성과 금성 사이의 거리, 또는 두 종이 동시에 살아 있었는지와 같은 더 복잡한 질문에 답할 수 있다.
<div lang="en" dir="ltr" class="mw-content-ltr">
We already use functions in many types of knowledge inquiries, such as asking a question to a search engine. The templates, such as [[:w:en:Template:Convert|Template:Convert]] and [[:w:en:Template:Age|Template:Age]] on English Wikipedia, are also examples of functions that are already used in many Wikipedias, written in wikitext and Lua and manually copied to each wiki where they're wanted.
</div>
<span id="What_is_an_implementation?"></span>
=== 구현이 무엇인가요? ===
<div lang="en" dir="ltr" class="mw-content-ltr">
An implementation is a particular way to execute a function. An implementation is a recipe that lists the steps that are needed to run the function. It may be a piece of code in a programming language or a combination of calls to other functions. A function may have many implementations, which should all be equivalent.
</div>
<span id="What_is_a_test?"></span>
=== 테스트가 무엇인가요? ===
<div lang="en" dir="ltr" class="mw-content-ltr">
A test is a way to determine if a given function is doing the right thing. A function will typically have multiple testers, each specifying some input to the function and the conditions the output for the given input must fulfill.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
For example, testers for a “title case” function might include: “<span dir="ltr" lang="en">abc</span>” should become “<span dir="ltr" lang="en">Abc</span>”; “<span dir="ltr" lang="en">war and peace</span>” should become “<span dir="ltr" lang="en">War and Peace</span>”; “<span dir="ltr" lang="ru">война и мир</span>” should become “<span dir="ltr" lang="ru">Война и мир</span>”; and “<span dir="ltr" lang="en">123</span>” should remain “<span dir="ltr" lang="en">123</span>”.
</div>
<span id="Which_features_are_available_now,_which_will_be_soon_available,_and_which_are_further_away?"></span>
=== 현재 사용 가능할지, 곧 사용 가능해질지, 언제 사용될지 모르는 함수가 무엇인가요? ===
* <span lang="en" dir="ltr" class="mw-content-ltr">At launch:</span>
** 문자열과 불리언을 다루는 함수를 가질 수 있습니다.
** 위키함수는 처음부터 완전히 국제화되었습니다. 어떤 언어로든 사용할 수 있습니다.
* [[Wikifunctions:Status|진행 중인 개발]]:
** 일반적인 유형과 함수는 완전히 지원되지 않습니다.
** <span lang="en" dir="ltr" class="mw-content-ltr">Adding types will, for now, be something that is limited to the development team. In the future, the community will be able to add more types. There is a lot of work to be done in the future to make types behave much more smoothly.</span>
*** <span lang="en" dir="ltr" class="mw-content-ltr">One particularly interesting type will be binary data, and particularly files.</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">We currently support two programming languages for implementations: JavaScript and Python. In the future, we want to support many more.</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">Currently, it is ''not'' possible to call other functions from implementations written in any programming language. This is currently only possible through composition.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">In the future:</span>
** 다른 위키미디어 프로젝트에서 함수를 호출하여 해당 결과를 문서 출력에 통합할 수 있습니다.
** 함수 내에서 위키데이터의 데이터를 사용할 수 있습니다.
** Commons Data 네임스페이스에서 데이터 세트를 호출할 수 있습니다.
<span id="How_is_Wikifunctions_multilingual?"></span>
=== 위키함수는 어떻게 다국어를 지원하나요? ===
{{main|Special:MyLanguage/Help:Multilingual}}
위키함수와 추상 위키백과는 서로 영향을 미치지 않는 여러 가지 방식으로 다국어를 사용합니다:
* '''위키함수는 콘텐츠와 사용자 인터페이스 모두 다국어를 지원합니다.''' 사용자는 모든 자연어로 위키함수의 함수를 읽고 호출할 수 있습니다. 예를 들어, "문자열 추가" 함수에는 [https://www.wikifunctions.org/view/en/Z10000 영어], [https://www.wikifunctions.org/view/pl/Z10000 폴란드어], [https://www.wikifunctions.org/view/he/Z10000 히브리어] 버전이 있으나, 더 많은 언어로도 제공됩니다.
* <span lang="en" dir="ltr" class="mw-content-ltr">'''Contributors can edit and improve Wikifunctions using their language.''' Even implementations can be edited in the natural language of the contributor. For example, the composition of the “and” function can be edited in [https://www.wikifunctions.org/wiki/Z11223?action=edit&uselang=de German], [https://www.wikifunctions.org/wiki/Z11223?action=edit&uselang=en English], or any other of about 300 languages.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">'''Wikifunctions functions can be used to create results for any natural language.''' The community is creating a growing number of functions to support the generation of text in many natural languages. We have functions for [[Wikifunctions:Catalogue#Breton|Breton]], [[Wikifunctions:Catalogue#Rohingya|Rohingya]], [[Wikifunctions:Catalogue#English|English]], and many other languages.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">'''Functions in Wikifunctions can be implemented in various different programming languages.''' For example, the [[Z10000|join function]] is implemented in both [[Z10005|JavaScript]] and [[Z10004|Python]].</span>
<span id="Which_programming_languages_does_Wikifunctions_currently_support?_Which_programming_languages_will_be_supported_in_the_future?"></span>
=== 현재 위키함수는 어떤 프로그래밍 언어를 지원하나요? 앞으로 어떤 프로그래밍 언어가 지원되나요? ===
{{main|WF:programming languages}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Currently, Wikifunctions supports implementations written in JavaScript and Python. We plan to add support for more programming languages in the future. We hope to add at least one further programming language in 2025 (but have not yet decided which one).
</div>
<span id="How_will_Wikifunctions_be_integrated_into_other_projects?"></span>
=== 위키함수는 다른 프로젝트에 어떻게 통합되나요? ===
<div lang="en" dir="ltr" class="mw-content-ltr">
Wikifunctions is the first step towards building Abstract Wikipedia. Our near-term focus will be on supporting the community and making improvements based on feedback. Concurrently, we will begin the process of integrating it with Wikipedia and Wikidata, which will enable broader real-life applications and get us closer to the vision of Abstract Wikipedia.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Contributors will be able to call functions stored on the Wikifunctions site from within their wikis. The result of the function call will be displayed to readers of the wiki. This can be used, for example, to calculate the age of a person, the population density based on population and area data from Wikidata, or to draw a graph and integrate it into a given article.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Another option to integrate Wikifunctions will be to integrate an interactive function call interface within their wiki. This could be used, for example, in a Wikipedia article to dynamically calculate the result of a physical equation based on reader-provided parameters, draw and interact with mathematical functions, etc.
</div>
<span id="What_Wikifunctions_is_not"></span>
<div class="mw-translate-fuzzy">
=== 위키함수란 무엇인가요? ===
</div>
자세한 내용은 [[Special:MyLanguage/Wikifunctions:What Wikifunctions is not|위키함수:위키함수가 아닌 것]]을 참고하세요.
<span id="What_license_will_the_functions_and_derived_content_be_under?"></span>
=== 함수 및 파생 콘텐츠에는 어떤 라이선스가 적용되나요? ===
<div lang="en" dir="ltr" class="mw-content-ltr">
Per the discussion happened [[:m:Special:MyLanguage/Abstract Wikipedia/Licensing discussion|on Meta between November and December 2021]], all contributions to Wikifunctions and the wider Abstract Wikipedia projects will be published under free licenses. In particular:
</div>
* 위키함수의 [[Special:MyLanguage/Wikifunctions:Glossary#Content|텍스트 내용]]은 [[w:ko:크리에이티브 커먼즈 라이선스|CC BY-SA 4.0]]에 따라 게시됩니다.
* [[Special:MyLanguage/Wikifunctions:Glossary#Function|함수 서명]] 및 위키함수의 기타 구조화된 콘텐츠는 [[w:ko:크리에이티브 커먼즈 라이선스#CC0|CC0]]으로 게시됩니다.
* 위키함수의 [[Special:MyLanguage/Wikifunctions:Glossary#Implementation|코드 구현]]은 [[w:ko:아파치 라이선스|아파치 2 라이선스]]에 따라 게시됩니다.
* 추상 위키백과의 [[Special:MyLanguage/Wikifunctions:Glossary#Content|추상 내용]]은 CC BY-SA 4.0에 따라 게시됩니다.
<div lang="en" dir="ltr" class="mw-content-ltr">
There are still some points that will need to be addressed in the future, such as the license of the generated content from the abstract content. We plan on drafting a more comprehensive document with the Legal department about how people can re-use code from Wikifunctions as painlessly as possible, while adhering to the license.
</div>
<span id="Contributing"></span>
== 기여 ==
<span id="I'm_new_here._What_is_there_for_me_to_do_and_how_can_I_help?"></span>
=== 제가 처음 와 봤는데, 제가 무엇을 해야 하고 어떻게 도와드려야 하나요? ===
<div lang="en" dir="ltr" class="mw-content-ltr">
Welcome! We're very happy to have you here! There are many opportunities for contributing to Wikifunctions, from creating new functions to improving and translating documentation. If you are looking for ways to get involved, we recommend that maybe, depending on your level of comfort, you suggest a new function on a topic you are interested in. Or even create such a function. Provide some tests. Try your hand at an implementation. Help with translations. Read and improve our documentation. Help with organizing the community.
</div>
<span id="How_do_I_create_a_new_function,_implementation,_or_test?"></span>
=== 새 함수, 구현, 테스트는 어떻게 만드나요? ===
새 기능, 구현, 테스트를 만드는 방법에 대해서는 [[Special:MyLanguage/Wikifunctions:Introduction|위키함수:소개]]를 참고하세요.
구현을 만드는 방법에 대해서는 [[Special:MyLanguage/Wikifunctions:How to create implementations|위키함수:구현을 만드는 방법]]을 참고하세요.
<span id="What_should_I_edit_first?"></span>
=== 무엇을 먼저 편집해야 하나요? ===
<div lang="en" dir="ltr" class="mw-content-ltr">
If you can write several languages, find functions that don't have labels and descriptions in your languages yet on the page [[Special:ListMissingLabels]], and help to add them.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
If you have some interest in a domain that could feature functions in Wikifunctions, but yet doesn't, or if you have more ideas for functions, go to the page for [[Wikifunctions:Suggest a new function|suggesting new functions]] and present your ideas.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
If you are a coder in JavaScript or Python, maybe you want to check for functions that don't yet have implementations in JavaScript or Python, and try to write them.
</div>
<span id="Where_can_I_go_for_help?"></span>
=== 어디에서 도움을 받을 수 있나요? ===
<div lang="en" dir="ltr" class="mw-content-ltr">
Your first stop should be the [[Special:MyLanguage/Help:Contents|Help portal]], where you'll find all the documentation related to using and editing Wikifunctions. If you're still stuck, post a message on [[Wikifunctions:Project chat|Project chat]], and someone will answer your question.
</div>
<span id="How_do_we_sort_or_categorize_functions?"></span>
=== 함수를 어떻게 정렬하거나 분류하나요? ===
{{Tracked|T285424}}
<div lang="en" dir="ltr" class="mw-content-ltr">
For now, the best way to sort or categorize functions is to do it by hand through [[Special:MyLanguage/Wikifunctions:Catalogue|pages in the Wikifunctions namespace]]. Another option would be through the talk page of the given function. We will monitor these efforts and discuss with the community which changes to the system would be helpful for this task.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== How can I setup the software locally to hack on it? ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
See [[Special:MyLanguage/Wikifunctions:Hacking on the evaluator and orchestrator|Hacking on the evaluator and orchestrator]].
</div>
[[Category:FAQ| {{#translation:}}]]
1hk36iwtf3l3kzytkw7wey5rpxi65ol
307388
307386
2026-09-02T10:33:39Z
Glocal Campus
102029
307388
wikitext
text/x-wiki
<languages/>
{{shortcut|[[WF:FAQ]]}}
이 문서는 위키함수에 관련된 자주 묻는 질문을 다룬 문서입니다. 원하는 답변이 없으시다면 [[Wikifunctions talk:FAQ|토론 문서]]에서 직접 물어보시기 바랍니다!
또한, 위키함수와 추상 위키백과에 대한 보다 구체적인 질문에 대해서는 [[:m:Special:MyLanguage/Abstract Wikipedia/FAQ|메타에 대한 FAQ]]를 고려하시기 바랍니다.
__TOC__
<span id="Introduction"></span>
== 소개 ==
<span id="What_is_this_project_about?"></span>
=== 이 프로젝트는 무엇에 관한 것인가요? ===
위키함수는 누구나 호출, 작성, 유지, 사용할 수 있는 모든 종류의 기능 카탈로그를 제공하는 새로운 위키미디어 프로젝트이다. 또한 궁극적으로 추상 위키백과에서 언어 독립적인 기사를 모든 위키피디아의 언어로 번역할 수 있는 기본 기술을 제공한다. 이를 통해 모든 사람이 원하는 언어로 기사를 기고하고 읽을 수 있습니다.
<span id="What_is_a_function?"></span>
=== 함수가 무엇인가요? ===
함수는 질문에 답할 수 있는 지식의 한 형태입니다. 예를 들어서 두 날짜 사이에 며칠이 지났는지 또는 두 도시 사이의 거리를 말합니다. 더 복잡한 함수는 3차원 형태의 부피, 특정 날짜에 화성과 금성 사이의 거리, 또는 두 종이 동시에 살아 있었는지와 같은 더 복잡한 질문에 답할 수 있다.
<span style="color:blue; font-weight:700;">홍명보는 한국 축구계를 떠나십시오.</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We already use functions in many types of knowledge inquiries, such as asking a question to a search engine. The templates, such as [[:w:en:Template:Convert|Template:Convert]] and [[:w:en:Template:Age|Template:Age]] on English Wikipedia, are also examples of functions that are already used in many Wikipedias, written in wikitext and Lua and manually copied to each wiki where they're wanted.
</div>
<span id="What_is_an_implementation?"></span>
=== 구현이 무엇인가요? ===
<div lang="en" dir="ltr" class="mw-content-ltr">
An implementation is a particular way to execute a function. An implementation is a recipe that lists the steps that are needed to run the function. It may be a piece of code in a programming language or a combination of calls to other functions. A function may have many implementations, which should all be equivalent.
</div>
<span id="What_is_a_test?"></span>
=== 테스트가 무엇인가요? ===
<div lang="en" dir="ltr" class="mw-content-ltr">
A test is a way to determine if a given function is doing the right thing. A function will typically have multiple testers, each specifying some input to the function and the conditions the output for the given input must fulfill.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
For example, testers for a “title case” function might include: “<span dir="ltr" lang="en">abc</span>” should become “<span dir="ltr" lang="en">Abc</span>”; “<span dir="ltr" lang="en">war and peace</span>” should become “<span dir="ltr" lang="en">War and Peace</span>”; “<span dir="ltr" lang="ru">война и мир</span>” should become “<span dir="ltr" lang="ru">Война и мир</span>”; and “<span dir="ltr" lang="en">123</span>” should remain “<span dir="ltr" lang="en">123</span>”.
</div>
<span id="Which_features_are_available_now,_which_will_be_soon_available,_and_which_are_further_away?"></span>
=== 현재 사용 가능할지, 곧 사용 가능해질지, 언제 사용될지 모르는 함수가 무엇인가요? ===
* <span lang="en" dir="ltr" class="mw-content-ltr">At launch:</span>
** 문자열과 불리언을 다루는 함수를 가질 수 있습니다.
** 위키함수는 처음부터 완전히 국제화되었습니다. 어떤 언어로든 사용할 수 있습니다.
* [[Wikifunctions:Status|진행 중인 개발]]:
** 일반적인 유형과 함수는 완전히 지원되지 않습니다.
** <span lang="en" dir="ltr" class="mw-content-ltr">Adding types will, for now, be something that is limited to the development team. In the future, the community will be able to add more types. There is a lot of work to be done in the future to make types behave much more smoothly.</span>
*** <span lang="en" dir="ltr" class="mw-content-ltr">One particularly interesting type will be binary data, and particularly files.</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">We currently support two programming languages for implementations: JavaScript and Python. In the future, we want to support many more.</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">Currently, it is ''not'' possible to call other functions from implementations written in any programming language. This is currently only possible through composition.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">In the future:</span>
** 다른 위키미디어 프로젝트에서 함수를 호출하여 해당 결과를 문서 출력에 통합할 수 있습니다.
** 함수 내에서 위키데이터의 데이터를 사용할 수 있습니다.
** Commons Data 네임스페이스에서 데이터 세트를 호출할 수 있습니다.
<span id="How_is_Wikifunctions_multilingual?"></span>
=== 위키함수는 어떻게 다국어를 지원하나요? ===
{{main|Special:MyLanguage/Help:Multilingual}}
위키함수와 추상 위키백과는 서로 영향을 미치지 않는 여러 가지 방식으로 다국어를 사용합니다:
* '''위키함수는 콘텐츠와 사용자 인터페이스 모두 다국어를 지원합니다.''' 사용자는 모든 자연어로 위키함수의 함수를 읽고 호출할 수 있습니다. 예를 들어, "문자열 추가" 함수에는 [https://www.wikifunctions.org/view/en/Z10000 영어], [https://www.wikifunctions.org/view/pl/Z10000 폴란드어], [https://www.wikifunctions.org/view/he/Z10000 히브리어] 버전이 있으나, 더 많은 언어로도 제공됩니다.
* <span lang="en" dir="ltr" class="mw-content-ltr">'''Contributors can edit and improve Wikifunctions using their language.''' Even implementations can be edited in the natural language of the contributor. For example, the composition of the “and” function can be edited in [https://www.wikifunctions.org/wiki/Z11223?action=edit&uselang=de German], [https://www.wikifunctions.org/wiki/Z11223?action=edit&uselang=en English], or any other of about 300 languages.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">'''Wikifunctions functions can be used to create results for any natural language.''' The community is creating a growing number of functions to support the generation of text in many natural languages. We have functions for [[Wikifunctions:Catalogue#Breton|Breton]], [[Wikifunctions:Catalogue#Rohingya|Rohingya]], [[Wikifunctions:Catalogue#English|English]], and many other languages.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">'''Functions in Wikifunctions can be implemented in various different programming languages.''' For example, the [[Z10000|join function]] is implemented in both [[Z10005|JavaScript]] and [[Z10004|Python]].</span>
<span id="Which_programming_languages_does_Wikifunctions_currently_support?_Which_programming_languages_will_be_supported_in_the_future?"></span>
=== 현재 위키함수는 어떤 프로그래밍 언어를 지원하나요? 앞으로 어떤 프로그래밍 언어가 지원되나요? ===
{{main|WF:programming languages}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Currently, Wikifunctions supports implementations written in JavaScript and Python. We plan to add support for more programming languages in the future. We hope to add at least one further programming language in 2025 (but have not yet decided which one).
</div>
<span id="How_will_Wikifunctions_be_integrated_into_other_projects?"></span>
=== 위키함수는 다른 프로젝트에 어떻게 통합되나요? ===
<div lang="en" dir="ltr" class="mw-content-ltr">
Wikifunctions is the first step towards building Abstract Wikipedia. Our near-term focus will be on supporting the community and making improvements based on feedback. Concurrently, we will begin the process of integrating it with Wikipedia and Wikidata, which will enable broader real-life applications and get us closer to the vision of Abstract Wikipedia.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Contributors will be able to call functions stored on the Wikifunctions site from within their wikis. The result of the function call will be displayed to readers of the wiki. This can be used, for example, to calculate the age of a person, the population density based on population and area data from Wikidata, or to draw a graph and integrate it into a given article.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Another option to integrate Wikifunctions will be to integrate an interactive function call interface within their wiki. This could be used, for example, in a Wikipedia article to dynamically calculate the result of a physical equation based on reader-provided parameters, draw and interact with mathematical functions, etc.
</div>
<span id="What_Wikifunctions_is_not"></span>
<div class="mw-translate-fuzzy">
=== 위키함수란 무엇인가요? ===
</div>
자세한 내용은 [[Special:MyLanguage/Wikifunctions:What Wikifunctions is not|위키함수:위키함수가 아닌 것]]을 참고하세요.
<span id="What_license_will_the_functions_and_derived_content_be_under?"></span>
=== 함수 및 파생 콘텐츠에는 어떤 라이선스가 적용되나요? ===
<div lang="en" dir="ltr" class="mw-content-ltr">
Per the discussion happened [[:m:Special:MyLanguage/Abstract Wikipedia/Licensing discussion|on Meta between November and December 2021]], all contributions to Wikifunctions and the wider Abstract Wikipedia projects will be published under free licenses. In particular:
</div>
* 위키함수의 [[Special:MyLanguage/Wikifunctions:Glossary#Content|텍스트 내용]]은 [[w:ko:크리에이티브 커먼즈 라이선스|CC BY-SA 4.0]]에 따라 게시됩니다.
* [[Special:MyLanguage/Wikifunctions:Glossary#Function|함수 서명]] 및 위키함수의 기타 구조화된 콘텐츠는 [[w:ko:크리에이티브 커먼즈 라이선스#CC0|CC0]]으로 게시됩니다.
* 위키함수의 [[Special:MyLanguage/Wikifunctions:Glossary#Implementation|코드 구현]]은 [[w:ko:아파치 라이선스|아파치 2 라이선스]]에 따라 게시됩니다.
* 추상 위키백과의 [[Special:MyLanguage/Wikifunctions:Glossary#Content|추상 내용]]은 CC BY-SA 4.0에 따라 게시됩니다.
<div lang="en" dir="ltr" class="mw-content-ltr">
There are still some points that will need to be addressed in the future, such as the license of the generated content from the abstract content. We plan on drafting a more comprehensive document with the Legal department about how people can re-use code from Wikifunctions as painlessly as possible, while adhering to the license.
</div>
<span id="Contributing"></span>
== 기여 ==
<span id="I'm_new_here._What_is_there_for_me_to_do_and_how_can_I_help?"></span>
=== 제가 처음 와 봤는데, 제가 무엇을 해야 하고 어떻게 도와드려야 하나요? ===
<div lang="en" dir="ltr" class="mw-content-ltr">
Welcome! We're very happy to have you here! There are many opportunities for contributing to Wikifunctions, from creating new functions to improving and translating documentation. If you are looking for ways to get involved, we recommend that maybe, depending on your level of comfort, you suggest a new function on a topic you are interested in. Or even create such a function. Provide some tests. Try your hand at an implementation. Help with translations. Read and improve our documentation. Help with organizing the community.
</div>
<span id="How_do_I_create_a_new_function,_implementation,_or_test?"></span>
=== 새 함수, 구현, 테스트는 어떻게 만드나요? ===
새 기능, 구현, 테스트를 만드는 방법에 대해서는 [[Special:MyLanguage/Wikifunctions:Introduction|위키함수:소개]]를 참고하세요.
구현을 만드는 방법에 대해서는 [[Special:MyLanguage/Wikifunctions:How to create implementations|위키함수:구현을 만드는 방법]]을 참고하세요.
<span id="What_should_I_edit_first?"></span>
=== 무엇을 먼저 편집해야 하나요? ===
<div lang="en" dir="ltr" class="mw-content-ltr">
If you can write several languages, find functions that don't have labels and descriptions in your languages yet on the page [[Special:ListMissingLabels]], and help to add them.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
If you have some interest in a domain that could feature functions in Wikifunctions, but yet doesn't, or if you have more ideas for functions, go to the page for [[Wikifunctions:Suggest a new function|suggesting new functions]] and present your ideas.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
If you are a coder in JavaScript or Python, maybe you want to check for functions that don't yet have implementations in JavaScript or Python, and try to write them.
</div>
<span id="Where_can_I_go_for_help?"></span>
=== 어디에서 도움을 받을 수 있나요? ===
<div lang="en" dir="ltr" class="mw-content-ltr">
Your first stop should be the [[Special:MyLanguage/Help:Contents|Help portal]], where you'll find all the documentation related to using and editing Wikifunctions. If you're still stuck, post a message on [[Wikifunctions:Project chat|Project chat]], and someone will answer your question.
</div>
<span id="How_do_we_sort_or_categorize_functions?"></span>
=== 함수를 어떻게 정렬하거나 분류하나요? ===
{{Tracked|T285424}}
<div lang="en" dir="ltr" class="mw-content-ltr">
For now, the best way to sort or categorize functions is to do it by hand through [[Special:MyLanguage/Wikifunctions:Catalogue|pages in the Wikifunctions namespace]]. Another option would be through the talk page of the given function. We will monitor these efforts and discuss with the community which changes to the system would be helpful for this task.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== How can I setup the software locally to hack on it? ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
See [[Special:MyLanguage/Wikifunctions:Hacking on the evaluator and orchestrator|Hacking on the evaluator and orchestrator]].
</div>
[[Category:FAQ| {{#translation:}}]]
f3ksn2ssq1v5dhny04hqha8i8587oqb
307390
307388
2026-09-02T10:34:42Z
Glocal Campus
102029
Created page with "우리는 이미 검색 엔진에 질문을 하는 것과 같이 다양한 지식 문의에서 함수를 사용합니다. 영어 위키피디아의 [[$1|Template:Convert]] 및 [[$2|Template:Age]]와 같은 틀은 위키텍스트와 Lua로 작성되고 원하는 각 위키에 수동으로 복사되는 많은 위키백과에서 이미 사용되는 함수의 예이기도 합니다."
307390
wikitext
text/x-wiki
<languages/>
{{shortcut|[[WF:FAQ]]}}
이 문서는 위키함수에 관련된 자주 묻는 질문을 다룬 문서입니다. 원하는 답변이 없으시다면 [[Wikifunctions talk:FAQ|토론 문서]]에서 직접 물어보시기 바랍니다!
또한, 위키함수와 추상 위키백과에 대한 보다 구체적인 질문에 대해서는 [[:m:Special:MyLanguage/Abstract Wikipedia/FAQ|메타에 대한 FAQ]]를 고려하시기 바랍니다.
__TOC__
<span id="Introduction"></span>
== 소개 ==
<span id="What_is_this_project_about?"></span>
=== 이 프로젝트는 무엇에 관한 것인가요? ===
위키함수는 누구나 호출, 작성, 유지, 사용할 수 있는 모든 종류의 기능 카탈로그를 제공하는 새로운 위키미디어 프로젝트이다. 또한 궁극적으로 추상 위키백과에서 언어 독립적인 기사를 모든 위키피디아의 언어로 번역할 수 있는 기본 기술을 제공한다. 이를 통해 모든 사람이 원하는 언어로 기사를 기고하고 읽을 수 있습니다.
<span id="What_is_a_function?"></span>
=== 함수가 무엇인가요? ===
함수는 질문에 답할 수 있는 지식의 한 형태입니다. 예를 들어서 두 날짜 사이에 며칠이 지났는지 또는 두 도시 사이의 거리를 말합니다. 더 복잡한 함수는 3차원 형태의 부피, 특정 날짜에 화성과 금성 사이의 거리, 또는 두 종이 동시에 살아 있었는지와 같은 더 복잡한 질문에 답할 수 있다.
<span style="color:blue; font-weight:700;">홍명보는 한국 축구계를 떠나십시오.</div>
우리는 이미 검색 엔진에 질문을 하는 것과 같이 다양한 지식 문의에서 함수를 사용합니다. 영어 위키피디아의 [[:w:en:Template:Convert|Template:Convert]] 및 [[:w:en:Template:Age|Template:Age]]와 같은 틀은 위키텍스트와 Lua로 작성되고 원하는 각 위키에 수동으로 복사되는 많은 위키백과에서 이미 사용되는 함수의 예이기도 합니다.
<span id="What_is_an_implementation?"></span>
=== 구현이 무엇인가요? ===
<div lang="en" dir="ltr" class="mw-content-ltr">
An implementation is a particular way to execute a function. An implementation is a recipe that lists the steps that are needed to run the function. It may be a piece of code in a programming language or a combination of calls to other functions. A function may have many implementations, which should all be equivalent.
</div>
<span id="What_is_a_test?"></span>
=== 테스트가 무엇인가요? ===
<div lang="en" dir="ltr" class="mw-content-ltr">
A test is a way to determine if a given function is doing the right thing. A function will typically have multiple testers, each specifying some input to the function and the conditions the output for the given input must fulfill.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
For example, testers for a “title case” function might include: “<span dir="ltr" lang="en">abc</span>” should become “<span dir="ltr" lang="en">Abc</span>”; “<span dir="ltr" lang="en">war and peace</span>” should become “<span dir="ltr" lang="en">War and Peace</span>”; “<span dir="ltr" lang="ru">война и мир</span>” should become “<span dir="ltr" lang="ru">Война и мир</span>”; and “<span dir="ltr" lang="en">123</span>” should remain “<span dir="ltr" lang="en">123</span>”.
</div>
<span id="Which_features_are_available_now,_which_will_be_soon_available,_and_which_are_further_away?"></span>
=== 현재 사용 가능할지, 곧 사용 가능해질지, 언제 사용될지 모르는 함수가 무엇인가요? ===
* <span lang="en" dir="ltr" class="mw-content-ltr">At launch:</span>
** 문자열과 불리언을 다루는 함수를 가질 수 있습니다.
** 위키함수는 처음부터 완전히 국제화되었습니다. 어떤 언어로든 사용할 수 있습니다.
* [[Wikifunctions:Status|진행 중인 개발]]:
** 일반적인 유형과 함수는 완전히 지원되지 않습니다.
** <span lang="en" dir="ltr" class="mw-content-ltr">Adding types will, for now, be something that is limited to the development team. In the future, the community will be able to add more types. There is a lot of work to be done in the future to make types behave much more smoothly.</span>
*** <span lang="en" dir="ltr" class="mw-content-ltr">One particularly interesting type will be binary data, and particularly files.</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">We currently support two programming languages for implementations: JavaScript and Python. In the future, we want to support many more.</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">Currently, it is ''not'' possible to call other functions from implementations written in any programming language. This is currently only possible through composition.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">In the future:</span>
** 다른 위키미디어 프로젝트에서 함수를 호출하여 해당 결과를 문서 출력에 통합할 수 있습니다.
** 함수 내에서 위키데이터의 데이터를 사용할 수 있습니다.
** Commons Data 네임스페이스에서 데이터 세트를 호출할 수 있습니다.
<span id="How_is_Wikifunctions_multilingual?"></span>
=== 위키함수는 어떻게 다국어를 지원하나요? ===
{{main|Special:MyLanguage/Help:Multilingual}}
위키함수와 추상 위키백과는 서로 영향을 미치지 않는 여러 가지 방식으로 다국어를 사용합니다:
* '''위키함수는 콘텐츠와 사용자 인터페이스 모두 다국어를 지원합니다.''' 사용자는 모든 자연어로 위키함수의 함수를 읽고 호출할 수 있습니다. 예를 들어, "문자열 추가" 함수에는 [https://www.wikifunctions.org/view/en/Z10000 영어], [https://www.wikifunctions.org/view/pl/Z10000 폴란드어], [https://www.wikifunctions.org/view/he/Z10000 히브리어] 버전이 있으나, 더 많은 언어로도 제공됩니다.
* <span lang="en" dir="ltr" class="mw-content-ltr">'''Contributors can edit and improve Wikifunctions using their language.''' Even implementations can be edited in the natural language of the contributor. For example, the composition of the “and” function can be edited in [https://www.wikifunctions.org/wiki/Z11223?action=edit&uselang=de German], [https://www.wikifunctions.org/wiki/Z11223?action=edit&uselang=en English], or any other of about 300 languages.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">'''Wikifunctions functions can be used to create results for any natural language.''' The community is creating a growing number of functions to support the generation of text in many natural languages. We have functions for [[Wikifunctions:Catalogue#Breton|Breton]], [[Wikifunctions:Catalogue#Rohingya|Rohingya]], [[Wikifunctions:Catalogue#English|English]], and many other languages.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">'''Functions in Wikifunctions can be implemented in various different programming languages.''' For example, the [[Z10000|join function]] is implemented in both [[Z10005|JavaScript]] and [[Z10004|Python]].</span>
<span id="Which_programming_languages_does_Wikifunctions_currently_support?_Which_programming_languages_will_be_supported_in_the_future?"></span>
=== 현재 위키함수는 어떤 프로그래밍 언어를 지원하나요? 앞으로 어떤 프로그래밍 언어가 지원되나요? ===
{{main|WF:programming languages}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Currently, Wikifunctions supports implementations written in JavaScript and Python. We plan to add support for more programming languages in the future. We hope to add at least one further programming language in 2025 (but have not yet decided which one).
</div>
<span id="How_will_Wikifunctions_be_integrated_into_other_projects?"></span>
=== 위키함수는 다른 프로젝트에 어떻게 통합되나요? ===
<div lang="en" dir="ltr" class="mw-content-ltr">
Wikifunctions is the first step towards building Abstract Wikipedia. Our near-term focus will be on supporting the community and making improvements based on feedback. Concurrently, we will begin the process of integrating it with Wikipedia and Wikidata, which will enable broader real-life applications and get us closer to the vision of Abstract Wikipedia.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Contributors will be able to call functions stored on the Wikifunctions site from within their wikis. The result of the function call will be displayed to readers of the wiki. This can be used, for example, to calculate the age of a person, the population density based on population and area data from Wikidata, or to draw a graph and integrate it into a given article.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Another option to integrate Wikifunctions will be to integrate an interactive function call interface within their wiki. This could be used, for example, in a Wikipedia article to dynamically calculate the result of a physical equation based on reader-provided parameters, draw and interact with mathematical functions, etc.
</div>
<span id="What_Wikifunctions_is_not"></span>
<div class="mw-translate-fuzzy">
=== 위키함수란 무엇인가요? ===
</div>
자세한 내용은 [[Special:MyLanguage/Wikifunctions:What Wikifunctions is not|위키함수:위키함수가 아닌 것]]을 참고하세요.
<span id="What_license_will_the_functions_and_derived_content_be_under?"></span>
=== 함수 및 파생 콘텐츠에는 어떤 라이선스가 적용되나요? ===
<div lang="en" dir="ltr" class="mw-content-ltr">
Per the discussion happened [[:m:Special:MyLanguage/Abstract Wikipedia/Licensing discussion|on Meta between November and December 2021]], all contributions to Wikifunctions and the wider Abstract Wikipedia projects will be published under free licenses. In particular:
</div>
* 위키함수의 [[Special:MyLanguage/Wikifunctions:Glossary#Content|텍스트 내용]]은 [[w:ko:크리에이티브 커먼즈 라이선스|CC BY-SA 4.0]]에 따라 게시됩니다.
* [[Special:MyLanguage/Wikifunctions:Glossary#Function|함수 서명]] 및 위키함수의 기타 구조화된 콘텐츠는 [[w:ko:크리에이티브 커먼즈 라이선스#CC0|CC0]]으로 게시됩니다.
* 위키함수의 [[Special:MyLanguage/Wikifunctions:Glossary#Implementation|코드 구현]]은 [[w:ko:아파치 라이선스|아파치 2 라이선스]]에 따라 게시됩니다.
* 추상 위키백과의 [[Special:MyLanguage/Wikifunctions:Glossary#Content|추상 내용]]은 CC BY-SA 4.0에 따라 게시됩니다.
<div lang="en" dir="ltr" class="mw-content-ltr">
There are still some points that will need to be addressed in the future, such as the license of the generated content from the abstract content. We plan on drafting a more comprehensive document with the Legal department about how people can re-use code from Wikifunctions as painlessly as possible, while adhering to the license.
</div>
<span id="Contributing"></span>
== 기여 ==
<span id="I'm_new_here._What_is_there_for_me_to_do_and_how_can_I_help?"></span>
=== 제가 처음 와 봤는데, 제가 무엇을 해야 하고 어떻게 도와드려야 하나요? ===
<div lang="en" dir="ltr" class="mw-content-ltr">
Welcome! We're very happy to have you here! There are many opportunities for contributing to Wikifunctions, from creating new functions to improving and translating documentation. If you are looking for ways to get involved, we recommend that maybe, depending on your level of comfort, you suggest a new function on a topic you are interested in. Or even create such a function. Provide some tests. Try your hand at an implementation. Help with translations. Read and improve our documentation. Help with organizing the community.
</div>
<span id="How_do_I_create_a_new_function,_implementation,_or_test?"></span>
=== 새 함수, 구현, 테스트는 어떻게 만드나요? ===
새 기능, 구현, 테스트를 만드는 방법에 대해서는 [[Special:MyLanguage/Wikifunctions:Introduction|위키함수:소개]]를 참고하세요.
구현을 만드는 방법에 대해서는 [[Special:MyLanguage/Wikifunctions:How to create implementations|위키함수:구현을 만드는 방법]]을 참고하세요.
<span id="What_should_I_edit_first?"></span>
=== 무엇을 먼저 편집해야 하나요? ===
<div lang="en" dir="ltr" class="mw-content-ltr">
If you can write several languages, find functions that don't have labels and descriptions in your languages yet on the page [[Special:ListMissingLabels]], and help to add them.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
If you have some interest in a domain that could feature functions in Wikifunctions, but yet doesn't, or if you have more ideas for functions, go to the page for [[Wikifunctions:Suggest a new function|suggesting new functions]] and present your ideas.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
If you are a coder in JavaScript or Python, maybe you want to check for functions that don't yet have implementations in JavaScript or Python, and try to write them.
</div>
<span id="Where_can_I_go_for_help?"></span>
=== 어디에서 도움을 받을 수 있나요? ===
<div lang="en" dir="ltr" class="mw-content-ltr">
Your first stop should be the [[Special:MyLanguage/Help:Contents|Help portal]], where you'll find all the documentation related to using and editing Wikifunctions. If you're still stuck, post a message on [[Wikifunctions:Project chat|Project chat]], and someone will answer your question.
</div>
<span id="How_do_we_sort_or_categorize_functions?"></span>
=== 함수를 어떻게 정렬하거나 분류하나요? ===
{{Tracked|T285424}}
<div lang="en" dir="ltr" class="mw-content-ltr">
For now, the best way to sort or categorize functions is to do it by hand through [[Special:MyLanguage/Wikifunctions:Catalogue|pages in the Wikifunctions namespace]]. Another option would be through the talk page of the given function. We will monitor these efforts and discuss with the community which changes to the system would be helpful for this task.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== How can I setup the software locally to hack on it? ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
See [[Special:MyLanguage/Wikifunctions:Hacking on the evaluator and orchestrator|Hacking on the evaluator and orchestrator]].
</div>
[[Category:FAQ| {{#translation:}}]]
49lwgxkxi5va20399ldmrttp129498k
307392
307390
2026-09-02T10:35:20Z
Glocal Campus
102029
Created page with "구현은 함수를 실행하는 특정한 방식을 의미합니다. 구현은 함수를 실행하는 데 필요한 단계를 나열하는 '레시피'입니다. 프로그래밍 언어의 코드 조각일 수도 있고 다른 함수에 대한 호출의 조합일 수도 있습니다. 함수는 많은 구현을 가질 수 있으며, 이는 모두 동등해야 합니다."
307392
wikitext
text/x-wiki
<languages/>
{{shortcut|[[WF:FAQ]]}}
이 문서는 위키함수에 관련된 자주 묻는 질문을 다룬 문서입니다. 원하는 답변이 없으시다면 [[Wikifunctions talk:FAQ|토론 문서]]에서 직접 물어보시기 바랍니다!
또한, 위키함수와 추상 위키백과에 대한 보다 구체적인 질문에 대해서는 [[:m:Special:MyLanguage/Abstract Wikipedia/FAQ|메타에 대한 FAQ]]를 고려하시기 바랍니다.
__TOC__
<span id="Introduction"></span>
== 소개 ==
<span id="What_is_this_project_about?"></span>
=== 이 프로젝트는 무엇에 관한 것인가요? ===
위키함수는 누구나 호출, 작성, 유지, 사용할 수 있는 모든 종류의 기능 카탈로그를 제공하는 새로운 위키미디어 프로젝트이다. 또한 궁극적으로 추상 위키백과에서 언어 독립적인 기사를 모든 위키피디아의 언어로 번역할 수 있는 기본 기술을 제공한다. 이를 통해 모든 사람이 원하는 언어로 기사를 기고하고 읽을 수 있습니다.
<span id="What_is_a_function?"></span>
=== 함수가 무엇인가요? ===
함수는 질문에 답할 수 있는 지식의 한 형태입니다. 예를 들어서 두 날짜 사이에 며칠이 지났는지 또는 두 도시 사이의 거리를 말합니다. 더 복잡한 함수는 3차원 형태의 부피, 특정 날짜에 화성과 금성 사이의 거리, 또는 두 종이 동시에 살아 있었는지와 같은 더 복잡한 질문에 답할 수 있다.
<span style="color:blue; font-weight:700;">홍명보는 한국 축구계를 떠나십시오.</div>
우리는 이미 검색 엔진에 질문을 하는 것과 같이 다양한 지식 문의에서 함수를 사용합니다. 영어 위키피디아의 [[:w:en:Template:Convert|Template:Convert]] 및 [[:w:en:Template:Age|Template:Age]]와 같은 틀은 위키텍스트와 Lua로 작성되고 원하는 각 위키에 수동으로 복사되는 많은 위키백과에서 이미 사용되는 함수의 예이기도 합니다.
<span id="What_is_an_implementation?"></span>
=== 구현이 무엇인가요? ===
구현은 함수를 실행하는 특정한 방식을 의미합니다. 구현은 함수를 실행하는 데 필요한 단계를 나열하는 '레시피'입니다. 프로그래밍 언어의 코드 조각일 수도 있고 다른 함수에 대한 호출의 조합일 수도 있습니다. 함수는 많은 구현을 가질 수 있으며, 이는 모두 동등해야 합니다.
<span id="What_is_a_test?"></span>
=== 테스트가 무엇인가요? ===
<div lang="en" dir="ltr" class="mw-content-ltr">
A test is a way to determine if a given function is doing the right thing. A function will typically have multiple testers, each specifying some input to the function and the conditions the output for the given input must fulfill.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
For example, testers for a “title case” function might include: “<span dir="ltr" lang="en">abc</span>” should become “<span dir="ltr" lang="en">Abc</span>”; “<span dir="ltr" lang="en">war and peace</span>” should become “<span dir="ltr" lang="en">War and Peace</span>”; “<span dir="ltr" lang="ru">война и мир</span>” should become “<span dir="ltr" lang="ru">Война и мир</span>”; and “<span dir="ltr" lang="en">123</span>” should remain “<span dir="ltr" lang="en">123</span>”.
</div>
<span id="Which_features_are_available_now,_which_will_be_soon_available,_and_which_are_further_away?"></span>
=== 현재 사용 가능할지, 곧 사용 가능해질지, 언제 사용될지 모르는 함수가 무엇인가요? ===
* <span lang="en" dir="ltr" class="mw-content-ltr">At launch:</span>
** 문자열과 불리언을 다루는 함수를 가질 수 있습니다.
** 위키함수는 처음부터 완전히 국제화되었습니다. 어떤 언어로든 사용할 수 있습니다.
* [[Wikifunctions:Status|진행 중인 개발]]:
** 일반적인 유형과 함수는 완전히 지원되지 않습니다.
** <span lang="en" dir="ltr" class="mw-content-ltr">Adding types will, for now, be something that is limited to the development team. In the future, the community will be able to add more types. There is a lot of work to be done in the future to make types behave much more smoothly.</span>
*** <span lang="en" dir="ltr" class="mw-content-ltr">One particularly interesting type will be binary data, and particularly files.</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">We currently support two programming languages for implementations: JavaScript and Python. In the future, we want to support many more.</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">Currently, it is ''not'' possible to call other functions from implementations written in any programming language. This is currently only possible through composition.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">In the future:</span>
** 다른 위키미디어 프로젝트에서 함수를 호출하여 해당 결과를 문서 출력에 통합할 수 있습니다.
** 함수 내에서 위키데이터의 데이터를 사용할 수 있습니다.
** Commons Data 네임스페이스에서 데이터 세트를 호출할 수 있습니다.
<span id="How_is_Wikifunctions_multilingual?"></span>
=== 위키함수는 어떻게 다국어를 지원하나요? ===
{{main|Special:MyLanguage/Help:Multilingual}}
위키함수와 추상 위키백과는 서로 영향을 미치지 않는 여러 가지 방식으로 다국어를 사용합니다:
* '''위키함수는 콘텐츠와 사용자 인터페이스 모두 다국어를 지원합니다.''' 사용자는 모든 자연어로 위키함수의 함수를 읽고 호출할 수 있습니다. 예를 들어, "문자열 추가" 함수에는 [https://www.wikifunctions.org/view/en/Z10000 영어], [https://www.wikifunctions.org/view/pl/Z10000 폴란드어], [https://www.wikifunctions.org/view/he/Z10000 히브리어] 버전이 있으나, 더 많은 언어로도 제공됩니다.
* <span lang="en" dir="ltr" class="mw-content-ltr">'''Contributors can edit and improve Wikifunctions using their language.''' Even implementations can be edited in the natural language of the contributor. For example, the composition of the “and” function can be edited in [https://www.wikifunctions.org/wiki/Z11223?action=edit&uselang=de German], [https://www.wikifunctions.org/wiki/Z11223?action=edit&uselang=en English], or any other of about 300 languages.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">'''Wikifunctions functions can be used to create results for any natural language.''' The community is creating a growing number of functions to support the generation of text in many natural languages. We have functions for [[Wikifunctions:Catalogue#Breton|Breton]], [[Wikifunctions:Catalogue#Rohingya|Rohingya]], [[Wikifunctions:Catalogue#English|English]], and many other languages.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">'''Functions in Wikifunctions can be implemented in various different programming languages.''' For example, the [[Z10000|join function]] is implemented in both [[Z10005|JavaScript]] and [[Z10004|Python]].</span>
<span id="Which_programming_languages_does_Wikifunctions_currently_support?_Which_programming_languages_will_be_supported_in_the_future?"></span>
=== 현재 위키함수는 어떤 프로그래밍 언어를 지원하나요? 앞으로 어떤 프로그래밍 언어가 지원되나요? ===
{{main|WF:programming languages}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Currently, Wikifunctions supports implementations written in JavaScript and Python. We plan to add support for more programming languages in the future. We hope to add at least one further programming language in 2025 (but have not yet decided which one).
</div>
<span id="How_will_Wikifunctions_be_integrated_into_other_projects?"></span>
=== 위키함수는 다른 프로젝트에 어떻게 통합되나요? ===
<div lang="en" dir="ltr" class="mw-content-ltr">
Wikifunctions is the first step towards building Abstract Wikipedia. Our near-term focus will be on supporting the community and making improvements based on feedback. Concurrently, we will begin the process of integrating it with Wikipedia and Wikidata, which will enable broader real-life applications and get us closer to the vision of Abstract Wikipedia.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Contributors will be able to call functions stored on the Wikifunctions site from within their wikis. The result of the function call will be displayed to readers of the wiki. This can be used, for example, to calculate the age of a person, the population density based on population and area data from Wikidata, or to draw a graph and integrate it into a given article.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Another option to integrate Wikifunctions will be to integrate an interactive function call interface within their wiki. This could be used, for example, in a Wikipedia article to dynamically calculate the result of a physical equation based on reader-provided parameters, draw and interact with mathematical functions, etc.
</div>
<span id="What_Wikifunctions_is_not"></span>
<div class="mw-translate-fuzzy">
=== 위키함수란 무엇인가요? ===
</div>
자세한 내용은 [[Special:MyLanguage/Wikifunctions:What Wikifunctions is not|위키함수:위키함수가 아닌 것]]을 참고하세요.
<span id="What_license_will_the_functions_and_derived_content_be_under?"></span>
=== 함수 및 파생 콘텐츠에는 어떤 라이선스가 적용되나요? ===
<div lang="en" dir="ltr" class="mw-content-ltr">
Per the discussion happened [[:m:Special:MyLanguage/Abstract Wikipedia/Licensing discussion|on Meta between November and December 2021]], all contributions to Wikifunctions and the wider Abstract Wikipedia projects will be published under free licenses. In particular:
</div>
* 위키함수의 [[Special:MyLanguage/Wikifunctions:Glossary#Content|텍스트 내용]]은 [[w:ko:크리에이티브 커먼즈 라이선스|CC BY-SA 4.0]]에 따라 게시됩니다.
* [[Special:MyLanguage/Wikifunctions:Glossary#Function|함수 서명]] 및 위키함수의 기타 구조화된 콘텐츠는 [[w:ko:크리에이티브 커먼즈 라이선스#CC0|CC0]]으로 게시됩니다.
* 위키함수의 [[Special:MyLanguage/Wikifunctions:Glossary#Implementation|코드 구현]]은 [[w:ko:아파치 라이선스|아파치 2 라이선스]]에 따라 게시됩니다.
* 추상 위키백과의 [[Special:MyLanguage/Wikifunctions:Glossary#Content|추상 내용]]은 CC BY-SA 4.0에 따라 게시됩니다.
<div lang="en" dir="ltr" class="mw-content-ltr">
There are still some points that will need to be addressed in the future, such as the license of the generated content from the abstract content. We plan on drafting a more comprehensive document with the Legal department about how people can re-use code from Wikifunctions as painlessly as possible, while adhering to the license.
</div>
<span id="Contributing"></span>
== 기여 ==
<span id="I'm_new_here._What_is_there_for_me_to_do_and_how_can_I_help?"></span>
=== 제가 처음 와 봤는데, 제가 무엇을 해야 하고 어떻게 도와드려야 하나요? ===
<div lang="en" dir="ltr" class="mw-content-ltr">
Welcome! We're very happy to have you here! There are many opportunities for contributing to Wikifunctions, from creating new functions to improving and translating documentation. If you are looking for ways to get involved, we recommend that maybe, depending on your level of comfort, you suggest a new function on a topic you are interested in. Or even create such a function. Provide some tests. Try your hand at an implementation. Help with translations. Read and improve our documentation. Help with organizing the community.
</div>
<span id="How_do_I_create_a_new_function,_implementation,_or_test?"></span>
=== 새 함수, 구현, 테스트는 어떻게 만드나요? ===
새 기능, 구현, 테스트를 만드는 방법에 대해서는 [[Special:MyLanguage/Wikifunctions:Introduction|위키함수:소개]]를 참고하세요.
구현을 만드는 방법에 대해서는 [[Special:MyLanguage/Wikifunctions:How to create implementations|위키함수:구현을 만드는 방법]]을 참고하세요.
<span id="What_should_I_edit_first?"></span>
=== 무엇을 먼저 편집해야 하나요? ===
<div lang="en" dir="ltr" class="mw-content-ltr">
If you can write several languages, find functions that don't have labels and descriptions in your languages yet on the page [[Special:ListMissingLabels]], and help to add them.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
If you have some interest in a domain that could feature functions in Wikifunctions, but yet doesn't, or if you have more ideas for functions, go to the page for [[Wikifunctions:Suggest a new function|suggesting new functions]] and present your ideas.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
If you are a coder in JavaScript or Python, maybe you want to check for functions that don't yet have implementations in JavaScript or Python, and try to write them.
</div>
<span id="Where_can_I_go_for_help?"></span>
=== 어디에서 도움을 받을 수 있나요? ===
<div lang="en" dir="ltr" class="mw-content-ltr">
Your first stop should be the [[Special:MyLanguage/Help:Contents|Help portal]], where you'll find all the documentation related to using and editing Wikifunctions. If you're still stuck, post a message on [[Wikifunctions:Project chat|Project chat]], and someone will answer your question.
</div>
<span id="How_do_we_sort_or_categorize_functions?"></span>
=== 함수를 어떻게 정렬하거나 분류하나요? ===
{{Tracked|T285424}}
<div lang="en" dir="ltr" class="mw-content-ltr">
For now, the best way to sort or categorize functions is to do it by hand through [[Special:MyLanguage/Wikifunctions:Catalogue|pages in the Wikifunctions namespace]]. Another option would be through the talk page of the given function. We will monitor these efforts and discuss with the community which changes to the system would be helpful for this task.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== How can I setup the software locally to hack on it? ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
See [[Special:MyLanguage/Wikifunctions:Hacking on the evaluator and orchestrator|Hacking on the evaluator and orchestrator]].
</div>
[[Category:FAQ| {{#translation:}}]]
4eypngc2o7wm4z3lvzh4f9l1qmfnxef
Z6011
0
58408
307100
268741
2026-09-01T14:03:06Z
JhowieNitnek
1044
307100
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z6011"
},
"Z2K2": {
"Z1K1": "Z4",
"Z4K1": "Z6011",
"Z4K2": [
"Z3",
{
"Z1K1": "Z3",
"Z3K1": "Z19677",
"Z3K2": "Z6011K1",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "latitude"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "latitudine"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "অক্ষাংশ"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Breite"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1181",
"Z11K2": "географска ширина"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "Lintang"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "अक्षांश"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "zeměpisná šířka"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "緯度"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "breedtegraad"
}
]
},
"Z3K4": "Z42"
},
{
"Z1K1": "Z3",
"Z3K1": "Z19677",
"Z3K2": "Z6011K2",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "longitude"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "longitudine"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "দ্রাঘিমাংশ"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Länge"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1181",
"Z11K2": "географска дужина"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "Bujur"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "देशांतर"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "zeměpisná délka"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "経度"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "lengtegraad"
}
]
},
"Z3K4": "Z42"
},
{
"Z1K1": "Z3",
"Z3K1": "Z19677",
"Z3K2": "Z6011K3",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "precision"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "precisione"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "যথাযথতা"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Präzision"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1181",
"Z11K2": "прецизност"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "Presisi"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "यथार्थता"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "přesnost"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "精度"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "precisie"
}
]
},
"Z3K4": "Z42"
},
{
"Z1K1": "Z3",
"Z3K1": "Z6091",
"Z3K2": "Z6011K4",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "globe"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "globo"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "গোলক"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Globus"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1181",
"Z11K2": "глобус"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "Globe"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "ग्लोब"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "glóbus"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "globe"
}
]
},
"Z3K4": "Z42"
}
],
"Z4K3": "Z101",
"Z4K4": "Z25932",
"Z4K5": "Z25629",
"Z4K6": "Z26344",
"Z4K7": [
"Z46",
"Z25954",
"Z26186"
],
"Z4K8": [
"Z64",
"Z25955",
"Z26187"
]
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Wikidata geo-coordinate"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "Coordinata geografica Wikidata"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "উইকিউপাত্ত ভৌগোলিক স্থানাঙ্ক"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Wikidata-Geokoordinaten"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1672",
"Z11K2": "Wikidata地理座標"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1820",
"Z11K2": "विकिडेटा भौगोलिक निर्देशांक"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "Souřadnice na Wikidatech"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "coordonnées géographiques Wikidata"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "ウィキデータの位置座標"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Wikidata-geocoördinaat"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"Wikidata geocoordinates",
"Wikidata GlobeCoordinates",
"Geographic location"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1787",
"Z31K2": [
"Z6",
"Geocoordinata Wikidata"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1011",
"Z31K2": [
"Z6",
"উইকিউপাত্ত স্থানাঙ্ক",
"উইকিডাটা স্থানাঙ্ক"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1062",
"Z31K2": [
"Z6",
"Wikidata-souřadnice",
"Zeměpisné souřadnice na Wikidatech"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1157",
"Z31K2": [
"Z6",
"Geografische ligging"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Corresponds to https://www.mediawiki.org/wiki/Wikibase/DataModel#Geographic_locations"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "Corrisponde a https://www.mediawiki.org/wiki/Wikibase/DataModel#Geographic_locations"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "entspricht den Geokoordinaten in Wikibase"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1672",
"Z11K2": "對應於 https://www.mediawiki.org/wiki/Wikibase/DataModel#Geographic_locations"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "suit https://www.mediawiki.org/wiki/Wikibase/DataModel#Geographic_locations"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "Odpovídá datovému typu Zeměpisné souřadnice na Wikidatech: https://www.mediawiki.org/wiki/Wikibase/DataModel#Geographic_locations"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Komt overeen met https://www.mediawiki.org/wiki/Wikibase/DataModel#Geographic_locations"
}
]
}
}
rjpyn6snmxcxfux40fm4jfm8uqsyh0k
Wikifunctions:Status updates/nl
4
59496
307259
304789
2026-09-01T19:46:32Z
HanV
6833
Created page with "$1: Wikifuncties Object Referentie"
307259
wikitext
text/x-wiki
<languages/>
{{shortcut|WF:SU}}{{notice|1='''[[:m:Global message delivery/Targets/Wikifunctions & Abstract Wikipedia|Meld u aan]]''' om korte on-wiki MassMessage-meldingen over elk nieuw onderwerp te ontvangen}}
{{Wikifunctions updates
| prevlabel = Vorige update
| prev = 2024-02-01
| nextlabel = Laatste update
| next = 2026-08-28
}}
Er gebeurt veel rond Wikifunctions en Abstract Wikipedia. Dit is de pagina waar onze updates worden geplaatst, inclusief de [[Special:MyLanguage/WF:function of the Week|functie van de week]].
U kunt u ook aanmelden op de [[:m:Global message delivery/Targets/Wikifunctions & Abstract Wikipedia|on-wiki nieuwsbrief]] om ze op uw overlegpagina of bij de kroeg van uw project te laten bezorgen.
<inputbox>
type=fulltext
prefix={{NAMESPACE}}:{{PAGENAME}}/
break=no
width=30
searchbuttonlabel={{int:Search}}
placeholder=Alle statusupdates zoeken
</inputbox>
<span id="Newsletters"></span>
== Nieuwsbrieven ==
<!--<nowiki> Newsletter entry template:
* <translate><tvar name="1">{{Status updates|2026-0?-??}}</tvar>: Title</translate>
NOTE: Remember to also update the "next =" date at the top of this page.
</nowiki>-->
=== 2026 ===
* {{Status updates|2026-08-28}}: Wikifuncties Object Referentie
* <span lang="en" dir="ltr" class="mw-content-ltr">{{Status updates|2026-08-20}}: Mayors and the North</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">{{Status updates|2026-08-13}}: Shoutout to 99of9!</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">{{Status updates|2026-08-05}}: An apple is a fruit</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">{{Status updates|2026-07-29}}: Abstract Wikipedia at Wikimania</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">{{Status updates|2026-07-16}}: Beyond syntactic tables</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">{{Status updates|2026-07-08}}: Moving toward our first Abstract Wikipedia integration milestone</span>
* {{Status updates|2026-07-01}}: Integratie op test-wiki en jaarplan
* {{Status updates|2026-06-26}}: Samen werken aan Functies
* {{Status updates|2026-06-19}}: De of niet de, dit is (de?) vraag
* {{Status updates|2026-06-12}}: Het laden en weergeven van de testresultaten is verbeterd.
* {{Status updates|2026-06-05}}: De geïllustreerde encyclopedie
* {{Status updates|2026-05-30}}: Terugkijken en vooruitkijken
* {{Status updates|2026-05-23}}: Jaarplan 2026-2027
* {{Status updates|2026-05-15}}: Een hogere betekenis
* {{Status updates|2026-05-08}}: Referenties van Wikidata zijn nu beschikbaar
* {{Status updates|2026-05-02}}: Vraag om feedback: wat moeten we tellen voor Abstract Wikipedia?
* {{Status updates|2026-04-25}}: De zoektocht van de Foundation naar de perfecte taal
* {{Status updates|2026-04-16}}: Mijlpalen; er zijn enkele belangrijke problemen hopelijk opgelost
* {{Status updates|2026-04-10}}: Voorstellen van gemeenschap voor het vastleggen van betekenis
* {{Status updates|2026-04-02}}: Verzoek tot overleg: Syntactische tabellen
* {{Status updates|2026-03-26}}: Eerste dagen van de Abstract Wikipedia Beta; Status van de compositie-taal v2
* {{Status updates|2026-03-19}}: Abstract Wikipedia in Beta
* {{Status updates|2026-03-11}}: Een nieuwe compositie-taal
* {{Status updates|2026-03-06}}: Citeren en kopiëren en plakken
* {{Status updates|2026-02-26}}: Gracieuze overrides en fallbacks
* {{Status updates|2026-02-20}}: Een vroeg concept voor het voorvertonen van Abstract Wikipedia
* {{Status updates|2026-02-13}}: Elkaars zinnen afmaken: Dingen beginnen; Buiten locatie in Istanbul
* {{Status updates|2026-01-29}}: Integratie van Abstract Wikipedia
* {{Status updates|2026-01-22}}: Kwartaalplan voor januari-maart 2026
* {{Status updates|2026-01-15}}: 25 jaar Wikipedia
=== 2025 ===
* {{Status updates|2025-12-18}}: We wensen u een gelukkig nieuwjaar!
* {{Status updates|2025-12-11}}: Betere foutberichten schrijven
* {{Status updates|2025-12-04}}: En de naam is Abstract Wikipedia
* {{Status updates|2025-11-27}}: Stem voor de naam van de nieuwe wiki! Het afmaken van elkaars zinnen
* {{Status updates|2025-11-20}}: Tweede ronde van de stemming voor de naam van de wiki met taal-onafhankelijke inhoud; Functie-aanroepen delen
* {{Status updates|2025-11-13}}: Klaarmaken voor de tweede ronde van de stemming voor de naamgeving van de wiki met abstracte inhoud; Het herschrijven van de backend: Waarom Rust?
* {{Status updates|2025-11-05}}: De eerste ronde van de stemming voor de naamgeving van de wiki voor abstracte inhoud is gesloten; Oproep voor Wiktionary-functies; Ingebedde Wikifuncties op Bengalese Wikipedia en nog zeven Wiktionaries meer
* {{Status updates|2025-10-29}}: De eerste ronde van de stemming voor de naamgeving van de "abstract content wiki" eindigt maandag; Een voorbeeld van korte beschrijvingen
* {{Status updates|2025-10-23}}: Welkom Zaree en Laura! De eerste ronde van wedstrijd voor het benoemen is begonnen .
* {{Status updates|2025-10-15}}: Start van de naamgevingswedstijd voor Abstract Wikipedia; Visualisatie van functies
* {{Status updates|2025-10-08}}: Besluit over de locatie voor abstracte content en kwartaalplanning voor oktober-december
* {{Status updates|2025-10-03}}: Rich text nu beschikbaar in embedded functie-aanroepen op 148 Wiktionaries en Incubator
* {{Status updates|2025-09-26}}: Toegang tot kwalificaties in Wikidata-verklaringen
* {{Status updates|2025-09-19}}: Wikifuncties beschikbaar in 123 Wiktionary-talen
* {{Status updates|2025-09-12}}: Meer dan 3.000 functies op Wikifuncties
* {{Status updates|2025-09-07}}: Kopiëren van functie-aanroepen van de ene Wikipedia naar de andere
* {{Status updates|2025-08-29}}: Toegang tot Wikidata-items is nu mogelijk via ingebouwde functie-aanroepen; Wikifuncties beschikbaar op 65 Wiktionaries
* {{Status updates|2025-08-22}}: Opname van Wikimania-sessie: Wikifuncties komt binnenkort naar een wiki in uw buurt!
* {{Status updates|2025-08-01}}: Binnenkort is er Wikimania 2025!
* {{Status updates|2025-07-26}}: "Wikipedia is een encyclopedie"; Twee jaar Wikifuncties
* {{Status updates|2025-07-19}}: Er zijn nu Wikidata-gebaseerde opsommingen
* {{Status updates|2025-07-10}}: Lengtelimieten voor labels en beschrijvingen
* {{Status updates|2025-07-04}}: Dekking van 1298
* {{Status updates|2025-06-27}}: Hoeveel mensen zijn nodig om een encyclopedie te schrijven?
* {{Status updates|2025-06-21}}: Kwartaalplanning juli-september 2025
* {{Status updates|2025-06-15}}: Beëindiging van de raadpleging over de locatie van de abstracte inhoud
* {{Status updates|2025-06-06}}: Waar gaat abstracte inhoud naartoe?
* {{Status updates|2025-05-29}}: Uitrol naar vijf Wiktionaries; Rekenen met de datum van vandaag
* {{Status updates|2025-05-23}}: Lopende raadpleging over de locatie van de abstracte inhoud
* {{Status updates|2025-05-15}}: Locatie van de abstracte inhoud
* {{Status updates|2025-05-09}}: Abstract Wikipedia en de Wikimedia AI Strategie
* {{Status updates|2025-04-30}}: Abstract Wikipedia is een finalist van MacArthur 100 & Change
* {{Status updates|2025-04-25}}: Welkom, Gregory!
* {{Status updates|2025-04-16}}: Wikifuncties geïntegreerd in Dagbani - en Wikifuncties; en de datum van Pasen
* {{Status updates|2025-04-11}}: Kwartaal in terugblik
* {{Status updates|2025-04-05}}: Kwartaalplanning voor april-juni 2025; We zoeken een Senior Product Manager
* {{Status updates|2025-03-28}}: Het is tijd.
* {{Status updates|2025-03-20}}: Wikidata-gebaseerde eenvoudige opsommingen
* {{Status updates|2025-03-15}}: Komende NLG-bijeenkomst, recente softwarewijzigingen
* {{Status updates|2025-03-07}}: Recente wijzigingen in de software, opname van vrijwilligershoek, en gesprekken in Londen
* {{Status updates|2025-02-26}}: Van dingen naar woorden
* {{Status updates|2025-02-19}}: Een voorstel voor typen per taal en woordsoorten
* {{Status updates|2025-02-13}}: Beperking van de wereld, redux
* {{Status updates|2025-02-06}}: Uitnodiging van de Natural Language Generation Special Interest Group
* {{Status updates|2025-01-29}}: Met 2000 functies het nieuwe jaar in: tijd voor statistieken
* {{Status updates|2025-01-22}}: Welkom, David! De aanbevelingen voor naamconventies
* {{Status updates|2025-01-15}}: Gelukkige Wikipedia dag! Kwartaalplanning
=== 2024 ===
* {{Status updates|2024-12-19}}: Functie van de week: leeftijd; Introducties voor jaarartikelen; Nieuw type: Floating-point number
* {{Status updates|2024-12-12}}: Het schetsen van een pad naar Abstract Wikipedia; Team Offsite in Lissabon; en nog veel meer
* {{Status updates|2024-11-27}}: WordGraph release; Nieuwe speciale pagina: lijst van functies per test; nieuw type voor de dag van het jaar, en nog veel meer
* {{Status updates|2024-11-21}}: Nieuwe speciale pagina voor ontbrekende labels, nieuw type voor Gregoriaanse jaren en nog veel meer
* {{Status updates|2024-11-13}}: Nieuw type: Rational number; Documentatie op Wikidata-gebaseerde typen; en meer
* {{Status updates|2024-11-07}}: De droom over een universele taal
* {{Status updates|2024-11-01}}: Het herschrijven van de backend
* {{Status updates|2024-10-25}}: Ons doel voor dit kwartaal: Overeenkomst
* {{Status updates|2024-10-17}}: Hoe zou abstracte inhoud eruit kunnen zien?
* {{Status updates|2024-10-11}}: Binnenkort Wikidata Lexemen in Wikifuncties
* {{Status updates|2024-10-02}}: Focus onderwerp: Voeding
* {{Status updates|2024-09-26}}: Kwartaalplanning voor oktober-december 2024; Morgen presentatie op Celtic Knot
* {{Status updates|2024-09-20}}: Inleiding tot focus aandachtsgebieden
* {{Status updates|2024-09-13}}: Dagbani Wikipedia zal onze eerste wiki zijn voor de Wikifuncties-integratie
* {{Status updates|2024-09-06}}: Vrijwilligershoek en andere updates
* {{Status updates|2024-08-29}}: Limieten van lengte naam en beschrijving
* {{Status updates|2024-08-23}}: WasmEdge, nu 300 ms minder lang wachten
* {{Status updates|2024-08-16}}: Wikimania 2024 editie
* {{Status updates|2024-08-02}}: Vernieuwen widget 'About'
* {{Status updates|2024-07-26}}: Binnenkort is er Wikimania 2024!
* {{Status updates|2024-07-18}}: Onderzoeksrapport over het integreren van Wikifuncties uit Wikipedia
* {{Status updates|2024-07-10}}: Voorstellen types voor toegang tot Lexemen
* {{Status updates|2024-07-03}}: Kwartaalplanning
* {{Status updates|2024-06-26}}: Welkom, Daphne!
* {{Status updates|2024-06-20}}: Nieuw type: Integers
* {{Status updates|2024-06-13}}: Nieuw type: Igbo-kalendermaanden
* {{Status updates|2024-06-06}}: Nieuw type: Sign
* {{Status updates|2024-05-30}}: Een enkelvoud of een meervoud van meervouden?
* {{Status updates|2024-05-22}}: Nieuw type: Gregoriaanse kalendermaanden
* {{Status updates|2024-05-15}}: Oproep voor functies: Spel het nummer!
* {{Status updates|2024-05-10}}: Vlaggenschiptype voor opsommingen: Maanden van de Gregoriaanse kalender
* {{Status updates|2024-05-03}}: Teamvergadering en kwartaalplan
* {{Status updates|2024-04-19}}: Welkom, Sharvani!
* {{Status updates|2024-04-11}}: Nieuwe API voor het aanroepen van Wikifuncties en het vieren van de duizendste functie
* {{Status updates|2024-04-03}}: Product Update op Diff en komende API-verbeteringen
* {{Status updates|2024-03-28}}: Het aanmaken van tests is nu veel makkelijker!
* {{Status updates|2024-03-21}}: Op weg naar internationalisatie van nummers
* {{Status updates|2024-03-13}}: Over identiteit
* {{Status updates|2024-03-07}}: We introduceren ons tweede nieuwe type: natuurlijke getallen
* {{Status updates|2024-02-28}}: Voorstel type voor natuurlijke getallen
* {{Status updates|2024-02-22}}: Update van het functiemodel
* {{Status updates|2024-02-14}}: Week voor fouten herstellen
* {{Status updates|2024-02-07}}: Kwartaalplanning. Bedankt, Nick! Functie van de Week: is permutatie
* {{Status updates|2024-02-01}}: Het Igbo Imperatief!
<span id="Before_February_2024"></span>
=== Voor februari 2024 ===
De updates van voor februari 2024 zijn [[:m:Special:MyLanguage/Abstract Wikipedia/Updates|beschikbaar op Meta-Wiki]].
[[Category:Status updates{{#translation:}}| ]]
lq6fqy7y1h9wfngs7bo8kfxjcdu2hll
307261
307259
2026-09-01T19:46:34Z
HanV
6833
Created page with "$1: Burgemeesters en het Noorden"
307261
wikitext
text/x-wiki
<languages/>
{{shortcut|WF:SU}}{{notice|1='''[[:m:Global message delivery/Targets/Wikifunctions & Abstract Wikipedia|Meld u aan]]''' om korte on-wiki MassMessage-meldingen over elk nieuw onderwerp te ontvangen}}
{{Wikifunctions updates
| prevlabel = Vorige update
| prev = 2024-02-01
| nextlabel = Laatste update
| next = 2026-08-28
}}
Er gebeurt veel rond Wikifunctions en Abstract Wikipedia. Dit is de pagina waar onze updates worden geplaatst, inclusief de [[Special:MyLanguage/WF:function of the Week|functie van de week]].
U kunt u ook aanmelden op de [[:m:Global message delivery/Targets/Wikifunctions & Abstract Wikipedia|on-wiki nieuwsbrief]] om ze op uw overlegpagina of bij de kroeg van uw project te laten bezorgen.
<inputbox>
type=fulltext
prefix={{NAMESPACE}}:{{PAGENAME}}/
break=no
width=30
searchbuttonlabel={{int:Search}}
placeholder=Alle statusupdates zoeken
</inputbox>
<span id="Newsletters"></span>
== Nieuwsbrieven ==
<!--<nowiki> Newsletter entry template:
* <translate><tvar name="1">{{Status updates|2026-0?-??}}</tvar>: Title</translate>
NOTE: Remember to also update the "next =" date at the top of this page.
</nowiki>-->
=== 2026 ===
* {{Status updates|2026-08-28}}: Wikifuncties Object Referentie
* {{Status updates|2026-08-20}}: Burgemeesters en het Noorden
* <span lang="en" dir="ltr" class="mw-content-ltr">{{Status updates|2026-08-13}}: Shoutout to 99of9!</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">{{Status updates|2026-08-05}}: An apple is a fruit</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">{{Status updates|2026-07-29}}: Abstract Wikipedia at Wikimania</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">{{Status updates|2026-07-16}}: Beyond syntactic tables</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">{{Status updates|2026-07-08}}: Moving toward our first Abstract Wikipedia integration milestone</span>
* {{Status updates|2026-07-01}}: Integratie op test-wiki en jaarplan
* {{Status updates|2026-06-26}}: Samen werken aan Functies
* {{Status updates|2026-06-19}}: De of niet de, dit is (de?) vraag
* {{Status updates|2026-06-12}}: Het laden en weergeven van de testresultaten is verbeterd.
* {{Status updates|2026-06-05}}: De geïllustreerde encyclopedie
* {{Status updates|2026-05-30}}: Terugkijken en vooruitkijken
* {{Status updates|2026-05-23}}: Jaarplan 2026-2027
* {{Status updates|2026-05-15}}: Een hogere betekenis
* {{Status updates|2026-05-08}}: Referenties van Wikidata zijn nu beschikbaar
* {{Status updates|2026-05-02}}: Vraag om feedback: wat moeten we tellen voor Abstract Wikipedia?
* {{Status updates|2026-04-25}}: De zoektocht van de Foundation naar de perfecte taal
* {{Status updates|2026-04-16}}: Mijlpalen; er zijn enkele belangrijke problemen hopelijk opgelost
* {{Status updates|2026-04-10}}: Voorstellen van gemeenschap voor het vastleggen van betekenis
* {{Status updates|2026-04-02}}: Verzoek tot overleg: Syntactische tabellen
* {{Status updates|2026-03-26}}: Eerste dagen van de Abstract Wikipedia Beta; Status van de compositie-taal v2
* {{Status updates|2026-03-19}}: Abstract Wikipedia in Beta
* {{Status updates|2026-03-11}}: Een nieuwe compositie-taal
* {{Status updates|2026-03-06}}: Citeren en kopiëren en plakken
* {{Status updates|2026-02-26}}: Gracieuze overrides en fallbacks
* {{Status updates|2026-02-20}}: Een vroeg concept voor het voorvertonen van Abstract Wikipedia
* {{Status updates|2026-02-13}}: Elkaars zinnen afmaken: Dingen beginnen; Buiten locatie in Istanbul
* {{Status updates|2026-01-29}}: Integratie van Abstract Wikipedia
* {{Status updates|2026-01-22}}: Kwartaalplan voor januari-maart 2026
* {{Status updates|2026-01-15}}: 25 jaar Wikipedia
=== 2025 ===
* {{Status updates|2025-12-18}}: We wensen u een gelukkig nieuwjaar!
* {{Status updates|2025-12-11}}: Betere foutberichten schrijven
* {{Status updates|2025-12-04}}: En de naam is Abstract Wikipedia
* {{Status updates|2025-11-27}}: Stem voor de naam van de nieuwe wiki! Het afmaken van elkaars zinnen
* {{Status updates|2025-11-20}}: Tweede ronde van de stemming voor de naam van de wiki met taal-onafhankelijke inhoud; Functie-aanroepen delen
* {{Status updates|2025-11-13}}: Klaarmaken voor de tweede ronde van de stemming voor de naamgeving van de wiki met abstracte inhoud; Het herschrijven van de backend: Waarom Rust?
* {{Status updates|2025-11-05}}: De eerste ronde van de stemming voor de naamgeving van de wiki voor abstracte inhoud is gesloten; Oproep voor Wiktionary-functies; Ingebedde Wikifuncties op Bengalese Wikipedia en nog zeven Wiktionaries meer
* {{Status updates|2025-10-29}}: De eerste ronde van de stemming voor de naamgeving van de "abstract content wiki" eindigt maandag; Een voorbeeld van korte beschrijvingen
* {{Status updates|2025-10-23}}: Welkom Zaree en Laura! De eerste ronde van wedstrijd voor het benoemen is begonnen .
* {{Status updates|2025-10-15}}: Start van de naamgevingswedstijd voor Abstract Wikipedia; Visualisatie van functies
* {{Status updates|2025-10-08}}: Besluit over de locatie voor abstracte content en kwartaalplanning voor oktober-december
* {{Status updates|2025-10-03}}: Rich text nu beschikbaar in embedded functie-aanroepen op 148 Wiktionaries en Incubator
* {{Status updates|2025-09-26}}: Toegang tot kwalificaties in Wikidata-verklaringen
* {{Status updates|2025-09-19}}: Wikifuncties beschikbaar in 123 Wiktionary-talen
* {{Status updates|2025-09-12}}: Meer dan 3.000 functies op Wikifuncties
* {{Status updates|2025-09-07}}: Kopiëren van functie-aanroepen van de ene Wikipedia naar de andere
* {{Status updates|2025-08-29}}: Toegang tot Wikidata-items is nu mogelijk via ingebouwde functie-aanroepen; Wikifuncties beschikbaar op 65 Wiktionaries
* {{Status updates|2025-08-22}}: Opname van Wikimania-sessie: Wikifuncties komt binnenkort naar een wiki in uw buurt!
* {{Status updates|2025-08-01}}: Binnenkort is er Wikimania 2025!
* {{Status updates|2025-07-26}}: "Wikipedia is een encyclopedie"; Twee jaar Wikifuncties
* {{Status updates|2025-07-19}}: Er zijn nu Wikidata-gebaseerde opsommingen
* {{Status updates|2025-07-10}}: Lengtelimieten voor labels en beschrijvingen
* {{Status updates|2025-07-04}}: Dekking van 1298
* {{Status updates|2025-06-27}}: Hoeveel mensen zijn nodig om een encyclopedie te schrijven?
* {{Status updates|2025-06-21}}: Kwartaalplanning juli-september 2025
* {{Status updates|2025-06-15}}: Beëindiging van de raadpleging over de locatie van de abstracte inhoud
* {{Status updates|2025-06-06}}: Waar gaat abstracte inhoud naartoe?
* {{Status updates|2025-05-29}}: Uitrol naar vijf Wiktionaries; Rekenen met de datum van vandaag
* {{Status updates|2025-05-23}}: Lopende raadpleging over de locatie van de abstracte inhoud
* {{Status updates|2025-05-15}}: Locatie van de abstracte inhoud
* {{Status updates|2025-05-09}}: Abstract Wikipedia en de Wikimedia AI Strategie
* {{Status updates|2025-04-30}}: Abstract Wikipedia is een finalist van MacArthur 100 & Change
* {{Status updates|2025-04-25}}: Welkom, Gregory!
* {{Status updates|2025-04-16}}: Wikifuncties geïntegreerd in Dagbani - en Wikifuncties; en de datum van Pasen
* {{Status updates|2025-04-11}}: Kwartaal in terugblik
* {{Status updates|2025-04-05}}: Kwartaalplanning voor april-juni 2025; We zoeken een Senior Product Manager
* {{Status updates|2025-03-28}}: Het is tijd.
* {{Status updates|2025-03-20}}: Wikidata-gebaseerde eenvoudige opsommingen
* {{Status updates|2025-03-15}}: Komende NLG-bijeenkomst, recente softwarewijzigingen
* {{Status updates|2025-03-07}}: Recente wijzigingen in de software, opname van vrijwilligershoek, en gesprekken in Londen
* {{Status updates|2025-02-26}}: Van dingen naar woorden
* {{Status updates|2025-02-19}}: Een voorstel voor typen per taal en woordsoorten
* {{Status updates|2025-02-13}}: Beperking van de wereld, redux
* {{Status updates|2025-02-06}}: Uitnodiging van de Natural Language Generation Special Interest Group
* {{Status updates|2025-01-29}}: Met 2000 functies het nieuwe jaar in: tijd voor statistieken
* {{Status updates|2025-01-22}}: Welkom, David! De aanbevelingen voor naamconventies
* {{Status updates|2025-01-15}}: Gelukkige Wikipedia dag! Kwartaalplanning
=== 2024 ===
* {{Status updates|2024-12-19}}: Functie van de week: leeftijd; Introducties voor jaarartikelen; Nieuw type: Floating-point number
* {{Status updates|2024-12-12}}: Het schetsen van een pad naar Abstract Wikipedia; Team Offsite in Lissabon; en nog veel meer
* {{Status updates|2024-11-27}}: WordGraph release; Nieuwe speciale pagina: lijst van functies per test; nieuw type voor de dag van het jaar, en nog veel meer
* {{Status updates|2024-11-21}}: Nieuwe speciale pagina voor ontbrekende labels, nieuw type voor Gregoriaanse jaren en nog veel meer
* {{Status updates|2024-11-13}}: Nieuw type: Rational number; Documentatie op Wikidata-gebaseerde typen; en meer
* {{Status updates|2024-11-07}}: De droom over een universele taal
* {{Status updates|2024-11-01}}: Het herschrijven van de backend
* {{Status updates|2024-10-25}}: Ons doel voor dit kwartaal: Overeenkomst
* {{Status updates|2024-10-17}}: Hoe zou abstracte inhoud eruit kunnen zien?
* {{Status updates|2024-10-11}}: Binnenkort Wikidata Lexemen in Wikifuncties
* {{Status updates|2024-10-02}}: Focus onderwerp: Voeding
* {{Status updates|2024-09-26}}: Kwartaalplanning voor oktober-december 2024; Morgen presentatie op Celtic Knot
* {{Status updates|2024-09-20}}: Inleiding tot focus aandachtsgebieden
* {{Status updates|2024-09-13}}: Dagbani Wikipedia zal onze eerste wiki zijn voor de Wikifuncties-integratie
* {{Status updates|2024-09-06}}: Vrijwilligershoek en andere updates
* {{Status updates|2024-08-29}}: Limieten van lengte naam en beschrijving
* {{Status updates|2024-08-23}}: WasmEdge, nu 300 ms minder lang wachten
* {{Status updates|2024-08-16}}: Wikimania 2024 editie
* {{Status updates|2024-08-02}}: Vernieuwen widget 'About'
* {{Status updates|2024-07-26}}: Binnenkort is er Wikimania 2024!
* {{Status updates|2024-07-18}}: Onderzoeksrapport over het integreren van Wikifuncties uit Wikipedia
* {{Status updates|2024-07-10}}: Voorstellen types voor toegang tot Lexemen
* {{Status updates|2024-07-03}}: Kwartaalplanning
* {{Status updates|2024-06-26}}: Welkom, Daphne!
* {{Status updates|2024-06-20}}: Nieuw type: Integers
* {{Status updates|2024-06-13}}: Nieuw type: Igbo-kalendermaanden
* {{Status updates|2024-06-06}}: Nieuw type: Sign
* {{Status updates|2024-05-30}}: Een enkelvoud of een meervoud van meervouden?
* {{Status updates|2024-05-22}}: Nieuw type: Gregoriaanse kalendermaanden
* {{Status updates|2024-05-15}}: Oproep voor functies: Spel het nummer!
* {{Status updates|2024-05-10}}: Vlaggenschiptype voor opsommingen: Maanden van de Gregoriaanse kalender
* {{Status updates|2024-05-03}}: Teamvergadering en kwartaalplan
* {{Status updates|2024-04-19}}: Welkom, Sharvani!
* {{Status updates|2024-04-11}}: Nieuwe API voor het aanroepen van Wikifuncties en het vieren van de duizendste functie
* {{Status updates|2024-04-03}}: Product Update op Diff en komende API-verbeteringen
* {{Status updates|2024-03-28}}: Het aanmaken van tests is nu veel makkelijker!
* {{Status updates|2024-03-21}}: Op weg naar internationalisatie van nummers
* {{Status updates|2024-03-13}}: Over identiteit
* {{Status updates|2024-03-07}}: We introduceren ons tweede nieuwe type: natuurlijke getallen
* {{Status updates|2024-02-28}}: Voorstel type voor natuurlijke getallen
* {{Status updates|2024-02-22}}: Update van het functiemodel
* {{Status updates|2024-02-14}}: Week voor fouten herstellen
* {{Status updates|2024-02-07}}: Kwartaalplanning. Bedankt, Nick! Functie van de Week: is permutatie
* {{Status updates|2024-02-01}}: Het Igbo Imperatief!
<span id="Before_February_2024"></span>
=== Voor februari 2024 ===
De updates van voor februari 2024 zijn [[:m:Special:MyLanguage/Abstract Wikipedia/Updates|beschikbaar op Meta-Wiki]].
[[Category:Status updates{{#translation:}}| ]]
ked3eg36ayadnffc6yxvfpqaol4u6w8
307263
307261
2026-09-01T19:46:41Z
HanV
6833
Created page with "$1: Shoutout naar 99of9!"
307263
wikitext
text/x-wiki
<languages/>
{{shortcut|WF:SU}}{{notice|1='''[[:m:Global message delivery/Targets/Wikifunctions & Abstract Wikipedia|Meld u aan]]''' om korte on-wiki MassMessage-meldingen over elk nieuw onderwerp te ontvangen}}
{{Wikifunctions updates
| prevlabel = Vorige update
| prev = 2024-02-01
| nextlabel = Laatste update
| next = 2026-08-28
}}
Er gebeurt veel rond Wikifunctions en Abstract Wikipedia. Dit is de pagina waar onze updates worden geplaatst, inclusief de [[Special:MyLanguage/WF:function of the Week|functie van de week]].
U kunt u ook aanmelden op de [[:m:Global message delivery/Targets/Wikifunctions & Abstract Wikipedia|on-wiki nieuwsbrief]] om ze op uw overlegpagina of bij de kroeg van uw project te laten bezorgen.
<inputbox>
type=fulltext
prefix={{NAMESPACE}}:{{PAGENAME}}/
break=no
width=30
searchbuttonlabel={{int:Search}}
placeholder=Alle statusupdates zoeken
</inputbox>
<span id="Newsletters"></span>
== Nieuwsbrieven ==
<!--<nowiki> Newsletter entry template:
* <translate><tvar name="1">{{Status updates|2026-0?-??}}</tvar>: Title</translate>
NOTE: Remember to also update the "next =" date at the top of this page.
</nowiki>-->
=== 2026 ===
* {{Status updates|2026-08-28}}: Wikifuncties Object Referentie
* {{Status updates|2026-08-20}}: Burgemeesters en het Noorden
* {{Status updates|2026-08-13}}: Shoutout naar 99of9!
* <span lang="en" dir="ltr" class="mw-content-ltr">{{Status updates|2026-08-05}}: An apple is a fruit</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">{{Status updates|2026-07-29}}: Abstract Wikipedia at Wikimania</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">{{Status updates|2026-07-16}}: Beyond syntactic tables</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">{{Status updates|2026-07-08}}: Moving toward our first Abstract Wikipedia integration milestone</span>
* {{Status updates|2026-07-01}}: Integratie op test-wiki en jaarplan
* {{Status updates|2026-06-26}}: Samen werken aan Functies
* {{Status updates|2026-06-19}}: De of niet de, dit is (de?) vraag
* {{Status updates|2026-06-12}}: Het laden en weergeven van de testresultaten is verbeterd.
* {{Status updates|2026-06-05}}: De geïllustreerde encyclopedie
* {{Status updates|2026-05-30}}: Terugkijken en vooruitkijken
* {{Status updates|2026-05-23}}: Jaarplan 2026-2027
* {{Status updates|2026-05-15}}: Een hogere betekenis
* {{Status updates|2026-05-08}}: Referenties van Wikidata zijn nu beschikbaar
* {{Status updates|2026-05-02}}: Vraag om feedback: wat moeten we tellen voor Abstract Wikipedia?
* {{Status updates|2026-04-25}}: De zoektocht van de Foundation naar de perfecte taal
* {{Status updates|2026-04-16}}: Mijlpalen; er zijn enkele belangrijke problemen hopelijk opgelost
* {{Status updates|2026-04-10}}: Voorstellen van gemeenschap voor het vastleggen van betekenis
* {{Status updates|2026-04-02}}: Verzoek tot overleg: Syntactische tabellen
* {{Status updates|2026-03-26}}: Eerste dagen van de Abstract Wikipedia Beta; Status van de compositie-taal v2
* {{Status updates|2026-03-19}}: Abstract Wikipedia in Beta
* {{Status updates|2026-03-11}}: Een nieuwe compositie-taal
* {{Status updates|2026-03-06}}: Citeren en kopiëren en plakken
* {{Status updates|2026-02-26}}: Gracieuze overrides en fallbacks
* {{Status updates|2026-02-20}}: Een vroeg concept voor het voorvertonen van Abstract Wikipedia
* {{Status updates|2026-02-13}}: Elkaars zinnen afmaken: Dingen beginnen; Buiten locatie in Istanbul
* {{Status updates|2026-01-29}}: Integratie van Abstract Wikipedia
* {{Status updates|2026-01-22}}: Kwartaalplan voor januari-maart 2026
* {{Status updates|2026-01-15}}: 25 jaar Wikipedia
=== 2025 ===
* {{Status updates|2025-12-18}}: We wensen u een gelukkig nieuwjaar!
* {{Status updates|2025-12-11}}: Betere foutberichten schrijven
* {{Status updates|2025-12-04}}: En de naam is Abstract Wikipedia
* {{Status updates|2025-11-27}}: Stem voor de naam van de nieuwe wiki! Het afmaken van elkaars zinnen
* {{Status updates|2025-11-20}}: Tweede ronde van de stemming voor de naam van de wiki met taal-onafhankelijke inhoud; Functie-aanroepen delen
* {{Status updates|2025-11-13}}: Klaarmaken voor de tweede ronde van de stemming voor de naamgeving van de wiki met abstracte inhoud; Het herschrijven van de backend: Waarom Rust?
* {{Status updates|2025-11-05}}: De eerste ronde van de stemming voor de naamgeving van de wiki voor abstracte inhoud is gesloten; Oproep voor Wiktionary-functies; Ingebedde Wikifuncties op Bengalese Wikipedia en nog zeven Wiktionaries meer
* {{Status updates|2025-10-29}}: De eerste ronde van de stemming voor de naamgeving van de "abstract content wiki" eindigt maandag; Een voorbeeld van korte beschrijvingen
* {{Status updates|2025-10-23}}: Welkom Zaree en Laura! De eerste ronde van wedstrijd voor het benoemen is begonnen .
* {{Status updates|2025-10-15}}: Start van de naamgevingswedstijd voor Abstract Wikipedia; Visualisatie van functies
* {{Status updates|2025-10-08}}: Besluit over de locatie voor abstracte content en kwartaalplanning voor oktober-december
* {{Status updates|2025-10-03}}: Rich text nu beschikbaar in embedded functie-aanroepen op 148 Wiktionaries en Incubator
* {{Status updates|2025-09-26}}: Toegang tot kwalificaties in Wikidata-verklaringen
* {{Status updates|2025-09-19}}: Wikifuncties beschikbaar in 123 Wiktionary-talen
* {{Status updates|2025-09-12}}: Meer dan 3.000 functies op Wikifuncties
* {{Status updates|2025-09-07}}: Kopiëren van functie-aanroepen van de ene Wikipedia naar de andere
* {{Status updates|2025-08-29}}: Toegang tot Wikidata-items is nu mogelijk via ingebouwde functie-aanroepen; Wikifuncties beschikbaar op 65 Wiktionaries
* {{Status updates|2025-08-22}}: Opname van Wikimania-sessie: Wikifuncties komt binnenkort naar een wiki in uw buurt!
* {{Status updates|2025-08-01}}: Binnenkort is er Wikimania 2025!
* {{Status updates|2025-07-26}}: "Wikipedia is een encyclopedie"; Twee jaar Wikifuncties
* {{Status updates|2025-07-19}}: Er zijn nu Wikidata-gebaseerde opsommingen
* {{Status updates|2025-07-10}}: Lengtelimieten voor labels en beschrijvingen
* {{Status updates|2025-07-04}}: Dekking van 1298
* {{Status updates|2025-06-27}}: Hoeveel mensen zijn nodig om een encyclopedie te schrijven?
* {{Status updates|2025-06-21}}: Kwartaalplanning juli-september 2025
* {{Status updates|2025-06-15}}: Beëindiging van de raadpleging over de locatie van de abstracte inhoud
* {{Status updates|2025-06-06}}: Waar gaat abstracte inhoud naartoe?
* {{Status updates|2025-05-29}}: Uitrol naar vijf Wiktionaries; Rekenen met de datum van vandaag
* {{Status updates|2025-05-23}}: Lopende raadpleging over de locatie van de abstracte inhoud
* {{Status updates|2025-05-15}}: Locatie van de abstracte inhoud
* {{Status updates|2025-05-09}}: Abstract Wikipedia en de Wikimedia AI Strategie
* {{Status updates|2025-04-30}}: Abstract Wikipedia is een finalist van MacArthur 100 & Change
* {{Status updates|2025-04-25}}: Welkom, Gregory!
* {{Status updates|2025-04-16}}: Wikifuncties geïntegreerd in Dagbani - en Wikifuncties; en de datum van Pasen
* {{Status updates|2025-04-11}}: Kwartaal in terugblik
* {{Status updates|2025-04-05}}: Kwartaalplanning voor april-juni 2025; We zoeken een Senior Product Manager
* {{Status updates|2025-03-28}}: Het is tijd.
* {{Status updates|2025-03-20}}: Wikidata-gebaseerde eenvoudige opsommingen
* {{Status updates|2025-03-15}}: Komende NLG-bijeenkomst, recente softwarewijzigingen
* {{Status updates|2025-03-07}}: Recente wijzigingen in de software, opname van vrijwilligershoek, en gesprekken in Londen
* {{Status updates|2025-02-26}}: Van dingen naar woorden
* {{Status updates|2025-02-19}}: Een voorstel voor typen per taal en woordsoorten
* {{Status updates|2025-02-13}}: Beperking van de wereld, redux
* {{Status updates|2025-02-06}}: Uitnodiging van de Natural Language Generation Special Interest Group
* {{Status updates|2025-01-29}}: Met 2000 functies het nieuwe jaar in: tijd voor statistieken
* {{Status updates|2025-01-22}}: Welkom, David! De aanbevelingen voor naamconventies
* {{Status updates|2025-01-15}}: Gelukkige Wikipedia dag! Kwartaalplanning
=== 2024 ===
* {{Status updates|2024-12-19}}: Functie van de week: leeftijd; Introducties voor jaarartikelen; Nieuw type: Floating-point number
* {{Status updates|2024-12-12}}: Het schetsen van een pad naar Abstract Wikipedia; Team Offsite in Lissabon; en nog veel meer
* {{Status updates|2024-11-27}}: WordGraph release; Nieuwe speciale pagina: lijst van functies per test; nieuw type voor de dag van het jaar, en nog veel meer
* {{Status updates|2024-11-21}}: Nieuwe speciale pagina voor ontbrekende labels, nieuw type voor Gregoriaanse jaren en nog veel meer
* {{Status updates|2024-11-13}}: Nieuw type: Rational number; Documentatie op Wikidata-gebaseerde typen; en meer
* {{Status updates|2024-11-07}}: De droom over een universele taal
* {{Status updates|2024-11-01}}: Het herschrijven van de backend
* {{Status updates|2024-10-25}}: Ons doel voor dit kwartaal: Overeenkomst
* {{Status updates|2024-10-17}}: Hoe zou abstracte inhoud eruit kunnen zien?
* {{Status updates|2024-10-11}}: Binnenkort Wikidata Lexemen in Wikifuncties
* {{Status updates|2024-10-02}}: Focus onderwerp: Voeding
* {{Status updates|2024-09-26}}: Kwartaalplanning voor oktober-december 2024; Morgen presentatie op Celtic Knot
* {{Status updates|2024-09-20}}: Inleiding tot focus aandachtsgebieden
* {{Status updates|2024-09-13}}: Dagbani Wikipedia zal onze eerste wiki zijn voor de Wikifuncties-integratie
* {{Status updates|2024-09-06}}: Vrijwilligershoek en andere updates
* {{Status updates|2024-08-29}}: Limieten van lengte naam en beschrijving
* {{Status updates|2024-08-23}}: WasmEdge, nu 300 ms minder lang wachten
* {{Status updates|2024-08-16}}: Wikimania 2024 editie
* {{Status updates|2024-08-02}}: Vernieuwen widget 'About'
* {{Status updates|2024-07-26}}: Binnenkort is er Wikimania 2024!
* {{Status updates|2024-07-18}}: Onderzoeksrapport over het integreren van Wikifuncties uit Wikipedia
* {{Status updates|2024-07-10}}: Voorstellen types voor toegang tot Lexemen
* {{Status updates|2024-07-03}}: Kwartaalplanning
* {{Status updates|2024-06-26}}: Welkom, Daphne!
* {{Status updates|2024-06-20}}: Nieuw type: Integers
* {{Status updates|2024-06-13}}: Nieuw type: Igbo-kalendermaanden
* {{Status updates|2024-06-06}}: Nieuw type: Sign
* {{Status updates|2024-05-30}}: Een enkelvoud of een meervoud van meervouden?
* {{Status updates|2024-05-22}}: Nieuw type: Gregoriaanse kalendermaanden
* {{Status updates|2024-05-15}}: Oproep voor functies: Spel het nummer!
* {{Status updates|2024-05-10}}: Vlaggenschiptype voor opsommingen: Maanden van de Gregoriaanse kalender
* {{Status updates|2024-05-03}}: Teamvergadering en kwartaalplan
* {{Status updates|2024-04-19}}: Welkom, Sharvani!
* {{Status updates|2024-04-11}}: Nieuwe API voor het aanroepen van Wikifuncties en het vieren van de duizendste functie
* {{Status updates|2024-04-03}}: Product Update op Diff en komende API-verbeteringen
* {{Status updates|2024-03-28}}: Het aanmaken van tests is nu veel makkelijker!
* {{Status updates|2024-03-21}}: Op weg naar internationalisatie van nummers
* {{Status updates|2024-03-13}}: Over identiteit
* {{Status updates|2024-03-07}}: We introduceren ons tweede nieuwe type: natuurlijke getallen
* {{Status updates|2024-02-28}}: Voorstel type voor natuurlijke getallen
* {{Status updates|2024-02-22}}: Update van het functiemodel
* {{Status updates|2024-02-14}}: Week voor fouten herstellen
* {{Status updates|2024-02-07}}: Kwartaalplanning. Bedankt, Nick! Functie van de Week: is permutatie
* {{Status updates|2024-02-01}}: Het Igbo Imperatief!
<span id="Before_February_2024"></span>
=== Voor februari 2024 ===
De updates van voor februari 2024 zijn [[:m:Special:MyLanguage/Abstract Wikipedia/Updates|beschikbaar op Meta-Wiki]].
[[Category:Status updates{{#translation:}}| ]]
rh0xuhq7z3lp2vc6g0dv4kqv4lz4kt3
307266
307263
2026-09-01T19:46:44Z
HanV
6833
Created page with "$1: Een appel is een vrucht"
307266
wikitext
text/x-wiki
<languages/>
{{shortcut|WF:SU}}{{notice|1='''[[:m:Global message delivery/Targets/Wikifunctions & Abstract Wikipedia|Meld u aan]]''' om korte on-wiki MassMessage-meldingen over elk nieuw onderwerp te ontvangen}}
{{Wikifunctions updates
| prevlabel = Vorige update
| prev = 2024-02-01
| nextlabel = Laatste update
| next = 2026-08-28
}}
Er gebeurt veel rond Wikifunctions en Abstract Wikipedia. Dit is de pagina waar onze updates worden geplaatst, inclusief de [[Special:MyLanguage/WF:function of the Week|functie van de week]].
U kunt u ook aanmelden op de [[:m:Global message delivery/Targets/Wikifunctions & Abstract Wikipedia|on-wiki nieuwsbrief]] om ze op uw overlegpagina of bij de kroeg van uw project te laten bezorgen.
<inputbox>
type=fulltext
prefix={{NAMESPACE}}:{{PAGENAME}}/
break=no
width=30
searchbuttonlabel={{int:Search}}
placeholder=Alle statusupdates zoeken
</inputbox>
<span id="Newsletters"></span>
== Nieuwsbrieven ==
<!--<nowiki> Newsletter entry template:
* <translate><tvar name="1">{{Status updates|2026-0?-??}}</tvar>: Title</translate>
NOTE: Remember to also update the "next =" date at the top of this page.
</nowiki>-->
=== 2026 ===
* {{Status updates|2026-08-28}}: Wikifuncties Object Referentie
* {{Status updates|2026-08-20}}: Burgemeesters en het Noorden
* {{Status updates|2026-08-13}}: Shoutout naar 99of9!
* {{Status updates|2026-08-05}}: Een appel is een vrucht
* <span lang="en" dir="ltr" class="mw-content-ltr">{{Status updates|2026-07-29}}: Abstract Wikipedia at Wikimania</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">{{Status updates|2026-07-16}}: Beyond syntactic tables</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">{{Status updates|2026-07-08}}: Moving toward our first Abstract Wikipedia integration milestone</span>
* {{Status updates|2026-07-01}}: Integratie op test-wiki en jaarplan
* {{Status updates|2026-06-26}}: Samen werken aan Functies
* {{Status updates|2026-06-19}}: De of niet de, dit is (de?) vraag
* {{Status updates|2026-06-12}}: Het laden en weergeven van de testresultaten is verbeterd.
* {{Status updates|2026-06-05}}: De geïllustreerde encyclopedie
* {{Status updates|2026-05-30}}: Terugkijken en vooruitkijken
* {{Status updates|2026-05-23}}: Jaarplan 2026-2027
* {{Status updates|2026-05-15}}: Een hogere betekenis
* {{Status updates|2026-05-08}}: Referenties van Wikidata zijn nu beschikbaar
* {{Status updates|2026-05-02}}: Vraag om feedback: wat moeten we tellen voor Abstract Wikipedia?
* {{Status updates|2026-04-25}}: De zoektocht van de Foundation naar de perfecte taal
* {{Status updates|2026-04-16}}: Mijlpalen; er zijn enkele belangrijke problemen hopelijk opgelost
* {{Status updates|2026-04-10}}: Voorstellen van gemeenschap voor het vastleggen van betekenis
* {{Status updates|2026-04-02}}: Verzoek tot overleg: Syntactische tabellen
* {{Status updates|2026-03-26}}: Eerste dagen van de Abstract Wikipedia Beta; Status van de compositie-taal v2
* {{Status updates|2026-03-19}}: Abstract Wikipedia in Beta
* {{Status updates|2026-03-11}}: Een nieuwe compositie-taal
* {{Status updates|2026-03-06}}: Citeren en kopiëren en plakken
* {{Status updates|2026-02-26}}: Gracieuze overrides en fallbacks
* {{Status updates|2026-02-20}}: Een vroeg concept voor het voorvertonen van Abstract Wikipedia
* {{Status updates|2026-02-13}}: Elkaars zinnen afmaken: Dingen beginnen; Buiten locatie in Istanbul
* {{Status updates|2026-01-29}}: Integratie van Abstract Wikipedia
* {{Status updates|2026-01-22}}: Kwartaalplan voor januari-maart 2026
* {{Status updates|2026-01-15}}: 25 jaar Wikipedia
=== 2025 ===
* {{Status updates|2025-12-18}}: We wensen u een gelukkig nieuwjaar!
* {{Status updates|2025-12-11}}: Betere foutberichten schrijven
* {{Status updates|2025-12-04}}: En de naam is Abstract Wikipedia
* {{Status updates|2025-11-27}}: Stem voor de naam van de nieuwe wiki! Het afmaken van elkaars zinnen
* {{Status updates|2025-11-20}}: Tweede ronde van de stemming voor de naam van de wiki met taal-onafhankelijke inhoud; Functie-aanroepen delen
* {{Status updates|2025-11-13}}: Klaarmaken voor de tweede ronde van de stemming voor de naamgeving van de wiki met abstracte inhoud; Het herschrijven van de backend: Waarom Rust?
* {{Status updates|2025-11-05}}: De eerste ronde van de stemming voor de naamgeving van de wiki voor abstracte inhoud is gesloten; Oproep voor Wiktionary-functies; Ingebedde Wikifuncties op Bengalese Wikipedia en nog zeven Wiktionaries meer
* {{Status updates|2025-10-29}}: De eerste ronde van de stemming voor de naamgeving van de "abstract content wiki" eindigt maandag; Een voorbeeld van korte beschrijvingen
* {{Status updates|2025-10-23}}: Welkom Zaree en Laura! De eerste ronde van wedstrijd voor het benoemen is begonnen .
* {{Status updates|2025-10-15}}: Start van de naamgevingswedstijd voor Abstract Wikipedia; Visualisatie van functies
* {{Status updates|2025-10-08}}: Besluit over de locatie voor abstracte content en kwartaalplanning voor oktober-december
* {{Status updates|2025-10-03}}: Rich text nu beschikbaar in embedded functie-aanroepen op 148 Wiktionaries en Incubator
* {{Status updates|2025-09-26}}: Toegang tot kwalificaties in Wikidata-verklaringen
* {{Status updates|2025-09-19}}: Wikifuncties beschikbaar in 123 Wiktionary-talen
* {{Status updates|2025-09-12}}: Meer dan 3.000 functies op Wikifuncties
* {{Status updates|2025-09-07}}: Kopiëren van functie-aanroepen van de ene Wikipedia naar de andere
* {{Status updates|2025-08-29}}: Toegang tot Wikidata-items is nu mogelijk via ingebouwde functie-aanroepen; Wikifuncties beschikbaar op 65 Wiktionaries
* {{Status updates|2025-08-22}}: Opname van Wikimania-sessie: Wikifuncties komt binnenkort naar een wiki in uw buurt!
* {{Status updates|2025-08-01}}: Binnenkort is er Wikimania 2025!
* {{Status updates|2025-07-26}}: "Wikipedia is een encyclopedie"; Twee jaar Wikifuncties
* {{Status updates|2025-07-19}}: Er zijn nu Wikidata-gebaseerde opsommingen
* {{Status updates|2025-07-10}}: Lengtelimieten voor labels en beschrijvingen
* {{Status updates|2025-07-04}}: Dekking van 1298
* {{Status updates|2025-06-27}}: Hoeveel mensen zijn nodig om een encyclopedie te schrijven?
* {{Status updates|2025-06-21}}: Kwartaalplanning juli-september 2025
* {{Status updates|2025-06-15}}: Beëindiging van de raadpleging over de locatie van de abstracte inhoud
* {{Status updates|2025-06-06}}: Waar gaat abstracte inhoud naartoe?
* {{Status updates|2025-05-29}}: Uitrol naar vijf Wiktionaries; Rekenen met de datum van vandaag
* {{Status updates|2025-05-23}}: Lopende raadpleging over de locatie van de abstracte inhoud
* {{Status updates|2025-05-15}}: Locatie van de abstracte inhoud
* {{Status updates|2025-05-09}}: Abstract Wikipedia en de Wikimedia AI Strategie
* {{Status updates|2025-04-30}}: Abstract Wikipedia is een finalist van MacArthur 100 & Change
* {{Status updates|2025-04-25}}: Welkom, Gregory!
* {{Status updates|2025-04-16}}: Wikifuncties geïntegreerd in Dagbani - en Wikifuncties; en de datum van Pasen
* {{Status updates|2025-04-11}}: Kwartaal in terugblik
* {{Status updates|2025-04-05}}: Kwartaalplanning voor april-juni 2025; We zoeken een Senior Product Manager
* {{Status updates|2025-03-28}}: Het is tijd.
* {{Status updates|2025-03-20}}: Wikidata-gebaseerde eenvoudige opsommingen
* {{Status updates|2025-03-15}}: Komende NLG-bijeenkomst, recente softwarewijzigingen
* {{Status updates|2025-03-07}}: Recente wijzigingen in de software, opname van vrijwilligershoek, en gesprekken in Londen
* {{Status updates|2025-02-26}}: Van dingen naar woorden
* {{Status updates|2025-02-19}}: Een voorstel voor typen per taal en woordsoorten
* {{Status updates|2025-02-13}}: Beperking van de wereld, redux
* {{Status updates|2025-02-06}}: Uitnodiging van de Natural Language Generation Special Interest Group
* {{Status updates|2025-01-29}}: Met 2000 functies het nieuwe jaar in: tijd voor statistieken
* {{Status updates|2025-01-22}}: Welkom, David! De aanbevelingen voor naamconventies
* {{Status updates|2025-01-15}}: Gelukkige Wikipedia dag! Kwartaalplanning
=== 2024 ===
* {{Status updates|2024-12-19}}: Functie van de week: leeftijd; Introducties voor jaarartikelen; Nieuw type: Floating-point number
* {{Status updates|2024-12-12}}: Het schetsen van een pad naar Abstract Wikipedia; Team Offsite in Lissabon; en nog veel meer
* {{Status updates|2024-11-27}}: WordGraph release; Nieuwe speciale pagina: lijst van functies per test; nieuw type voor de dag van het jaar, en nog veel meer
* {{Status updates|2024-11-21}}: Nieuwe speciale pagina voor ontbrekende labels, nieuw type voor Gregoriaanse jaren en nog veel meer
* {{Status updates|2024-11-13}}: Nieuw type: Rational number; Documentatie op Wikidata-gebaseerde typen; en meer
* {{Status updates|2024-11-07}}: De droom over een universele taal
* {{Status updates|2024-11-01}}: Het herschrijven van de backend
* {{Status updates|2024-10-25}}: Ons doel voor dit kwartaal: Overeenkomst
* {{Status updates|2024-10-17}}: Hoe zou abstracte inhoud eruit kunnen zien?
* {{Status updates|2024-10-11}}: Binnenkort Wikidata Lexemen in Wikifuncties
* {{Status updates|2024-10-02}}: Focus onderwerp: Voeding
* {{Status updates|2024-09-26}}: Kwartaalplanning voor oktober-december 2024; Morgen presentatie op Celtic Knot
* {{Status updates|2024-09-20}}: Inleiding tot focus aandachtsgebieden
* {{Status updates|2024-09-13}}: Dagbani Wikipedia zal onze eerste wiki zijn voor de Wikifuncties-integratie
* {{Status updates|2024-09-06}}: Vrijwilligershoek en andere updates
* {{Status updates|2024-08-29}}: Limieten van lengte naam en beschrijving
* {{Status updates|2024-08-23}}: WasmEdge, nu 300 ms minder lang wachten
* {{Status updates|2024-08-16}}: Wikimania 2024 editie
* {{Status updates|2024-08-02}}: Vernieuwen widget 'About'
* {{Status updates|2024-07-26}}: Binnenkort is er Wikimania 2024!
* {{Status updates|2024-07-18}}: Onderzoeksrapport over het integreren van Wikifuncties uit Wikipedia
* {{Status updates|2024-07-10}}: Voorstellen types voor toegang tot Lexemen
* {{Status updates|2024-07-03}}: Kwartaalplanning
* {{Status updates|2024-06-26}}: Welkom, Daphne!
* {{Status updates|2024-06-20}}: Nieuw type: Integers
* {{Status updates|2024-06-13}}: Nieuw type: Igbo-kalendermaanden
* {{Status updates|2024-06-06}}: Nieuw type: Sign
* {{Status updates|2024-05-30}}: Een enkelvoud of een meervoud van meervouden?
* {{Status updates|2024-05-22}}: Nieuw type: Gregoriaanse kalendermaanden
* {{Status updates|2024-05-15}}: Oproep voor functies: Spel het nummer!
* {{Status updates|2024-05-10}}: Vlaggenschiptype voor opsommingen: Maanden van de Gregoriaanse kalender
* {{Status updates|2024-05-03}}: Teamvergadering en kwartaalplan
* {{Status updates|2024-04-19}}: Welkom, Sharvani!
* {{Status updates|2024-04-11}}: Nieuwe API voor het aanroepen van Wikifuncties en het vieren van de duizendste functie
* {{Status updates|2024-04-03}}: Product Update op Diff en komende API-verbeteringen
* {{Status updates|2024-03-28}}: Het aanmaken van tests is nu veel makkelijker!
* {{Status updates|2024-03-21}}: Op weg naar internationalisatie van nummers
* {{Status updates|2024-03-13}}: Over identiteit
* {{Status updates|2024-03-07}}: We introduceren ons tweede nieuwe type: natuurlijke getallen
* {{Status updates|2024-02-28}}: Voorstel type voor natuurlijke getallen
* {{Status updates|2024-02-22}}: Update van het functiemodel
* {{Status updates|2024-02-14}}: Week voor fouten herstellen
* {{Status updates|2024-02-07}}: Kwartaalplanning. Bedankt, Nick! Functie van de Week: is permutatie
* {{Status updates|2024-02-01}}: Het Igbo Imperatief!
<span id="Before_February_2024"></span>
=== Voor februari 2024 ===
De updates van voor februari 2024 zijn [[:m:Special:MyLanguage/Abstract Wikipedia/Updates|beschikbaar op Meta-Wiki]].
[[Category:Status updates{{#translation:}}| ]]
ft64hi6kwtd3ixj8217ovoouiv6agae
307268
307266
2026-09-01T19:46:58Z
HanV
6833
Created page with "$1: Abstract Wikipedia op Wikimania"
307268
wikitext
text/x-wiki
<languages/>
{{shortcut|WF:SU}}{{notice|1='''[[:m:Global message delivery/Targets/Wikifunctions & Abstract Wikipedia|Meld u aan]]''' om korte on-wiki MassMessage-meldingen over elk nieuw onderwerp te ontvangen}}
{{Wikifunctions updates
| prevlabel = Vorige update
| prev = 2024-02-01
| nextlabel = Laatste update
| next = 2026-08-28
}}
Er gebeurt veel rond Wikifunctions en Abstract Wikipedia. Dit is de pagina waar onze updates worden geplaatst, inclusief de [[Special:MyLanguage/WF:function of the Week|functie van de week]].
U kunt u ook aanmelden op de [[:m:Global message delivery/Targets/Wikifunctions & Abstract Wikipedia|on-wiki nieuwsbrief]] om ze op uw overlegpagina of bij de kroeg van uw project te laten bezorgen.
<inputbox>
type=fulltext
prefix={{NAMESPACE}}:{{PAGENAME}}/
break=no
width=30
searchbuttonlabel={{int:Search}}
placeholder=Alle statusupdates zoeken
</inputbox>
<span id="Newsletters"></span>
== Nieuwsbrieven ==
<!--<nowiki> Newsletter entry template:
* <translate><tvar name="1">{{Status updates|2026-0?-??}}</tvar>: Title</translate>
NOTE: Remember to also update the "next =" date at the top of this page.
</nowiki>-->
=== 2026 ===
* {{Status updates|2026-08-28}}: Wikifuncties Object Referentie
* {{Status updates|2026-08-20}}: Burgemeesters en het Noorden
* {{Status updates|2026-08-13}}: Shoutout naar 99of9!
* {{Status updates|2026-08-05}}: Een appel is een vrucht
* {{Status updates|2026-07-29}}: Abstract Wikipedia op Wikimania
* <span lang="en" dir="ltr" class="mw-content-ltr">{{Status updates|2026-07-16}}: Beyond syntactic tables</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">{{Status updates|2026-07-08}}: Moving toward our first Abstract Wikipedia integration milestone</span>
* {{Status updates|2026-07-01}}: Integratie op test-wiki en jaarplan
* {{Status updates|2026-06-26}}: Samen werken aan Functies
* {{Status updates|2026-06-19}}: De of niet de, dit is (de?) vraag
* {{Status updates|2026-06-12}}: Het laden en weergeven van de testresultaten is verbeterd.
* {{Status updates|2026-06-05}}: De geïllustreerde encyclopedie
* {{Status updates|2026-05-30}}: Terugkijken en vooruitkijken
* {{Status updates|2026-05-23}}: Jaarplan 2026-2027
* {{Status updates|2026-05-15}}: Een hogere betekenis
* {{Status updates|2026-05-08}}: Referenties van Wikidata zijn nu beschikbaar
* {{Status updates|2026-05-02}}: Vraag om feedback: wat moeten we tellen voor Abstract Wikipedia?
* {{Status updates|2026-04-25}}: De zoektocht van de Foundation naar de perfecte taal
* {{Status updates|2026-04-16}}: Mijlpalen; er zijn enkele belangrijke problemen hopelijk opgelost
* {{Status updates|2026-04-10}}: Voorstellen van gemeenschap voor het vastleggen van betekenis
* {{Status updates|2026-04-02}}: Verzoek tot overleg: Syntactische tabellen
* {{Status updates|2026-03-26}}: Eerste dagen van de Abstract Wikipedia Beta; Status van de compositie-taal v2
* {{Status updates|2026-03-19}}: Abstract Wikipedia in Beta
* {{Status updates|2026-03-11}}: Een nieuwe compositie-taal
* {{Status updates|2026-03-06}}: Citeren en kopiëren en plakken
* {{Status updates|2026-02-26}}: Gracieuze overrides en fallbacks
* {{Status updates|2026-02-20}}: Een vroeg concept voor het voorvertonen van Abstract Wikipedia
* {{Status updates|2026-02-13}}: Elkaars zinnen afmaken: Dingen beginnen; Buiten locatie in Istanbul
* {{Status updates|2026-01-29}}: Integratie van Abstract Wikipedia
* {{Status updates|2026-01-22}}: Kwartaalplan voor januari-maart 2026
* {{Status updates|2026-01-15}}: 25 jaar Wikipedia
=== 2025 ===
* {{Status updates|2025-12-18}}: We wensen u een gelukkig nieuwjaar!
* {{Status updates|2025-12-11}}: Betere foutberichten schrijven
* {{Status updates|2025-12-04}}: En de naam is Abstract Wikipedia
* {{Status updates|2025-11-27}}: Stem voor de naam van de nieuwe wiki! Het afmaken van elkaars zinnen
* {{Status updates|2025-11-20}}: Tweede ronde van de stemming voor de naam van de wiki met taal-onafhankelijke inhoud; Functie-aanroepen delen
* {{Status updates|2025-11-13}}: Klaarmaken voor de tweede ronde van de stemming voor de naamgeving van de wiki met abstracte inhoud; Het herschrijven van de backend: Waarom Rust?
* {{Status updates|2025-11-05}}: De eerste ronde van de stemming voor de naamgeving van de wiki voor abstracte inhoud is gesloten; Oproep voor Wiktionary-functies; Ingebedde Wikifuncties op Bengalese Wikipedia en nog zeven Wiktionaries meer
* {{Status updates|2025-10-29}}: De eerste ronde van de stemming voor de naamgeving van de "abstract content wiki" eindigt maandag; Een voorbeeld van korte beschrijvingen
* {{Status updates|2025-10-23}}: Welkom Zaree en Laura! De eerste ronde van wedstrijd voor het benoemen is begonnen .
* {{Status updates|2025-10-15}}: Start van de naamgevingswedstijd voor Abstract Wikipedia; Visualisatie van functies
* {{Status updates|2025-10-08}}: Besluit over de locatie voor abstracte content en kwartaalplanning voor oktober-december
* {{Status updates|2025-10-03}}: Rich text nu beschikbaar in embedded functie-aanroepen op 148 Wiktionaries en Incubator
* {{Status updates|2025-09-26}}: Toegang tot kwalificaties in Wikidata-verklaringen
* {{Status updates|2025-09-19}}: Wikifuncties beschikbaar in 123 Wiktionary-talen
* {{Status updates|2025-09-12}}: Meer dan 3.000 functies op Wikifuncties
* {{Status updates|2025-09-07}}: Kopiëren van functie-aanroepen van de ene Wikipedia naar de andere
* {{Status updates|2025-08-29}}: Toegang tot Wikidata-items is nu mogelijk via ingebouwde functie-aanroepen; Wikifuncties beschikbaar op 65 Wiktionaries
* {{Status updates|2025-08-22}}: Opname van Wikimania-sessie: Wikifuncties komt binnenkort naar een wiki in uw buurt!
* {{Status updates|2025-08-01}}: Binnenkort is er Wikimania 2025!
* {{Status updates|2025-07-26}}: "Wikipedia is een encyclopedie"; Twee jaar Wikifuncties
* {{Status updates|2025-07-19}}: Er zijn nu Wikidata-gebaseerde opsommingen
* {{Status updates|2025-07-10}}: Lengtelimieten voor labels en beschrijvingen
* {{Status updates|2025-07-04}}: Dekking van 1298
* {{Status updates|2025-06-27}}: Hoeveel mensen zijn nodig om een encyclopedie te schrijven?
* {{Status updates|2025-06-21}}: Kwartaalplanning juli-september 2025
* {{Status updates|2025-06-15}}: Beëindiging van de raadpleging over de locatie van de abstracte inhoud
* {{Status updates|2025-06-06}}: Waar gaat abstracte inhoud naartoe?
* {{Status updates|2025-05-29}}: Uitrol naar vijf Wiktionaries; Rekenen met de datum van vandaag
* {{Status updates|2025-05-23}}: Lopende raadpleging over de locatie van de abstracte inhoud
* {{Status updates|2025-05-15}}: Locatie van de abstracte inhoud
* {{Status updates|2025-05-09}}: Abstract Wikipedia en de Wikimedia AI Strategie
* {{Status updates|2025-04-30}}: Abstract Wikipedia is een finalist van MacArthur 100 & Change
* {{Status updates|2025-04-25}}: Welkom, Gregory!
* {{Status updates|2025-04-16}}: Wikifuncties geïntegreerd in Dagbani - en Wikifuncties; en de datum van Pasen
* {{Status updates|2025-04-11}}: Kwartaal in terugblik
* {{Status updates|2025-04-05}}: Kwartaalplanning voor april-juni 2025; We zoeken een Senior Product Manager
* {{Status updates|2025-03-28}}: Het is tijd.
* {{Status updates|2025-03-20}}: Wikidata-gebaseerde eenvoudige opsommingen
* {{Status updates|2025-03-15}}: Komende NLG-bijeenkomst, recente softwarewijzigingen
* {{Status updates|2025-03-07}}: Recente wijzigingen in de software, opname van vrijwilligershoek, en gesprekken in Londen
* {{Status updates|2025-02-26}}: Van dingen naar woorden
* {{Status updates|2025-02-19}}: Een voorstel voor typen per taal en woordsoorten
* {{Status updates|2025-02-13}}: Beperking van de wereld, redux
* {{Status updates|2025-02-06}}: Uitnodiging van de Natural Language Generation Special Interest Group
* {{Status updates|2025-01-29}}: Met 2000 functies het nieuwe jaar in: tijd voor statistieken
* {{Status updates|2025-01-22}}: Welkom, David! De aanbevelingen voor naamconventies
* {{Status updates|2025-01-15}}: Gelukkige Wikipedia dag! Kwartaalplanning
=== 2024 ===
* {{Status updates|2024-12-19}}: Functie van de week: leeftijd; Introducties voor jaarartikelen; Nieuw type: Floating-point number
* {{Status updates|2024-12-12}}: Het schetsen van een pad naar Abstract Wikipedia; Team Offsite in Lissabon; en nog veel meer
* {{Status updates|2024-11-27}}: WordGraph release; Nieuwe speciale pagina: lijst van functies per test; nieuw type voor de dag van het jaar, en nog veel meer
* {{Status updates|2024-11-21}}: Nieuwe speciale pagina voor ontbrekende labels, nieuw type voor Gregoriaanse jaren en nog veel meer
* {{Status updates|2024-11-13}}: Nieuw type: Rational number; Documentatie op Wikidata-gebaseerde typen; en meer
* {{Status updates|2024-11-07}}: De droom over een universele taal
* {{Status updates|2024-11-01}}: Het herschrijven van de backend
* {{Status updates|2024-10-25}}: Ons doel voor dit kwartaal: Overeenkomst
* {{Status updates|2024-10-17}}: Hoe zou abstracte inhoud eruit kunnen zien?
* {{Status updates|2024-10-11}}: Binnenkort Wikidata Lexemen in Wikifuncties
* {{Status updates|2024-10-02}}: Focus onderwerp: Voeding
* {{Status updates|2024-09-26}}: Kwartaalplanning voor oktober-december 2024; Morgen presentatie op Celtic Knot
* {{Status updates|2024-09-20}}: Inleiding tot focus aandachtsgebieden
* {{Status updates|2024-09-13}}: Dagbani Wikipedia zal onze eerste wiki zijn voor de Wikifuncties-integratie
* {{Status updates|2024-09-06}}: Vrijwilligershoek en andere updates
* {{Status updates|2024-08-29}}: Limieten van lengte naam en beschrijving
* {{Status updates|2024-08-23}}: WasmEdge, nu 300 ms minder lang wachten
* {{Status updates|2024-08-16}}: Wikimania 2024 editie
* {{Status updates|2024-08-02}}: Vernieuwen widget 'About'
* {{Status updates|2024-07-26}}: Binnenkort is er Wikimania 2024!
* {{Status updates|2024-07-18}}: Onderzoeksrapport over het integreren van Wikifuncties uit Wikipedia
* {{Status updates|2024-07-10}}: Voorstellen types voor toegang tot Lexemen
* {{Status updates|2024-07-03}}: Kwartaalplanning
* {{Status updates|2024-06-26}}: Welkom, Daphne!
* {{Status updates|2024-06-20}}: Nieuw type: Integers
* {{Status updates|2024-06-13}}: Nieuw type: Igbo-kalendermaanden
* {{Status updates|2024-06-06}}: Nieuw type: Sign
* {{Status updates|2024-05-30}}: Een enkelvoud of een meervoud van meervouden?
* {{Status updates|2024-05-22}}: Nieuw type: Gregoriaanse kalendermaanden
* {{Status updates|2024-05-15}}: Oproep voor functies: Spel het nummer!
* {{Status updates|2024-05-10}}: Vlaggenschiptype voor opsommingen: Maanden van de Gregoriaanse kalender
* {{Status updates|2024-05-03}}: Teamvergadering en kwartaalplan
* {{Status updates|2024-04-19}}: Welkom, Sharvani!
* {{Status updates|2024-04-11}}: Nieuwe API voor het aanroepen van Wikifuncties en het vieren van de duizendste functie
* {{Status updates|2024-04-03}}: Product Update op Diff en komende API-verbeteringen
* {{Status updates|2024-03-28}}: Het aanmaken van tests is nu veel makkelijker!
* {{Status updates|2024-03-21}}: Op weg naar internationalisatie van nummers
* {{Status updates|2024-03-13}}: Over identiteit
* {{Status updates|2024-03-07}}: We introduceren ons tweede nieuwe type: natuurlijke getallen
* {{Status updates|2024-02-28}}: Voorstel type voor natuurlijke getallen
* {{Status updates|2024-02-22}}: Update van het functiemodel
* {{Status updates|2024-02-14}}: Week voor fouten herstellen
* {{Status updates|2024-02-07}}: Kwartaalplanning. Bedankt, Nick! Functie van de Week: is permutatie
* {{Status updates|2024-02-01}}: Het Igbo Imperatief!
<span id="Before_February_2024"></span>
=== Voor februari 2024 ===
De updates van voor februari 2024 zijn [[:m:Special:MyLanguage/Abstract Wikipedia/Updates|beschikbaar op Meta-Wiki]].
[[Category:Status updates{{#translation:}}| ]]
qw2r0zyy7kcw53wz9ypsdrnhhtlprr6
307270
307268
2026-09-01T19:47:02Z
HanV
6833
Created page with "$1: Verder dan syntactische tabellen"
307270
wikitext
text/x-wiki
<languages/>
{{shortcut|WF:SU}}{{notice|1='''[[:m:Global message delivery/Targets/Wikifunctions & Abstract Wikipedia|Meld u aan]]''' om korte on-wiki MassMessage-meldingen over elk nieuw onderwerp te ontvangen}}
{{Wikifunctions updates
| prevlabel = Vorige update
| prev = 2024-02-01
| nextlabel = Laatste update
| next = 2026-08-28
}}
Er gebeurt veel rond Wikifunctions en Abstract Wikipedia. Dit is de pagina waar onze updates worden geplaatst, inclusief de [[Special:MyLanguage/WF:function of the Week|functie van de week]].
U kunt u ook aanmelden op de [[:m:Global message delivery/Targets/Wikifunctions & Abstract Wikipedia|on-wiki nieuwsbrief]] om ze op uw overlegpagina of bij de kroeg van uw project te laten bezorgen.
<inputbox>
type=fulltext
prefix={{NAMESPACE}}:{{PAGENAME}}/
break=no
width=30
searchbuttonlabel={{int:Search}}
placeholder=Alle statusupdates zoeken
</inputbox>
<span id="Newsletters"></span>
== Nieuwsbrieven ==
<!--<nowiki> Newsletter entry template:
* <translate><tvar name="1">{{Status updates|2026-0?-??}}</tvar>: Title</translate>
NOTE: Remember to also update the "next =" date at the top of this page.
</nowiki>-->
=== 2026 ===
* {{Status updates|2026-08-28}}: Wikifuncties Object Referentie
* {{Status updates|2026-08-20}}: Burgemeesters en het Noorden
* {{Status updates|2026-08-13}}: Shoutout naar 99of9!
* {{Status updates|2026-08-05}}: Een appel is een vrucht
* {{Status updates|2026-07-29}}: Abstract Wikipedia op Wikimania
* {{Status updates|2026-07-16}}: Verder dan syntactische tabellen
* <span lang="en" dir="ltr" class="mw-content-ltr">{{Status updates|2026-07-08}}: Moving toward our first Abstract Wikipedia integration milestone</span>
* {{Status updates|2026-07-01}}: Integratie op test-wiki en jaarplan
* {{Status updates|2026-06-26}}: Samen werken aan Functies
* {{Status updates|2026-06-19}}: De of niet de, dit is (de?) vraag
* {{Status updates|2026-06-12}}: Het laden en weergeven van de testresultaten is verbeterd.
* {{Status updates|2026-06-05}}: De geïllustreerde encyclopedie
* {{Status updates|2026-05-30}}: Terugkijken en vooruitkijken
* {{Status updates|2026-05-23}}: Jaarplan 2026-2027
* {{Status updates|2026-05-15}}: Een hogere betekenis
* {{Status updates|2026-05-08}}: Referenties van Wikidata zijn nu beschikbaar
* {{Status updates|2026-05-02}}: Vraag om feedback: wat moeten we tellen voor Abstract Wikipedia?
* {{Status updates|2026-04-25}}: De zoektocht van de Foundation naar de perfecte taal
* {{Status updates|2026-04-16}}: Mijlpalen; er zijn enkele belangrijke problemen hopelijk opgelost
* {{Status updates|2026-04-10}}: Voorstellen van gemeenschap voor het vastleggen van betekenis
* {{Status updates|2026-04-02}}: Verzoek tot overleg: Syntactische tabellen
* {{Status updates|2026-03-26}}: Eerste dagen van de Abstract Wikipedia Beta; Status van de compositie-taal v2
* {{Status updates|2026-03-19}}: Abstract Wikipedia in Beta
* {{Status updates|2026-03-11}}: Een nieuwe compositie-taal
* {{Status updates|2026-03-06}}: Citeren en kopiëren en plakken
* {{Status updates|2026-02-26}}: Gracieuze overrides en fallbacks
* {{Status updates|2026-02-20}}: Een vroeg concept voor het voorvertonen van Abstract Wikipedia
* {{Status updates|2026-02-13}}: Elkaars zinnen afmaken: Dingen beginnen; Buiten locatie in Istanbul
* {{Status updates|2026-01-29}}: Integratie van Abstract Wikipedia
* {{Status updates|2026-01-22}}: Kwartaalplan voor januari-maart 2026
* {{Status updates|2026-01-15}}: 25 jaar Wikipedia
=== 2025 ===
* {{Status updates|2025-12-18}}: We wensen u een gelukkig nieuwjaar!
* {{Status updates|2025-12-11}}: Betere foutberichten schrijven
* {{Status updates|2025-12-04}}: En de naam is Abstract Wikipedia
* {{Status updates|2025-11-27}}: Stem voor de naam van de nieuwe wiki! Het afmaken van elkaars zinnen
* {{Status updates|2025-11-20}}: Tweede ronde van de stemming voor de naam van de wiki met taal-onafhankelijke inhoud; Functie-aanroepen delen
* {{Status updates|2025-11-13}}: Klaarmaken voor de tweede ronde van de stemming voor de naamgeving van de wiki met abstracte inhoud; Het herschrijven van de backend: Waarom Rust?
* {{Status updates|2025-11-05}}: De eerste ronde van de stemming voor de naamgeving van de wiki voor abstracte inhoud is gesloten; Oproep voor Wiktionary-functies; Ingebedde Wikifuncties op Bengalese Wikipedia en nog zeven Wiktionaries meer
* {{Status updates|2025-10-29}}: De eerste ronde van de stemming voor de naamgeving van de "abstract content wiki" eindigt maandag; Een voorbeeld van korte beschrijvingen
* {{Status updates|2025-10-23}}: Welkom Zaree en Laura! De eerste ronde van wedstrijd voor het benoemen is begonnen .
* {{Status updates|2025-10-15}}: Start van de naamgevingswedstijd voor Abstract Wikipedia; Visualisatie van functies
* {{Status updates|2025-10-08}}: Besluit over de locatie voor abstracte content en kwartaalplanning voor oktober-december
* {{Status updates|2025-10-03}}: Rich text nu beschikbaar in embedded functie-aanroepen op 148 Wiktionaries en Incubator
* {{Status updates|2025-09-26}}: Toegang tot kwalificaties in Wikidata-verklaringen
* {{Status updates|2025-09-19}}: Wikifuncties beschikbaar in 123 Wiktionary-talen
* {{Status updates|2025-09-12}}: Meer dan 3.000 functies op Wikifuncties
* {{Status updates|2025-09-07}}: Kopiëren van functie-aanroepen van de ene Wikipedia naar de andere
* {{Status updates|2025-08-29}}: Toegang tot Wikidata-items is nu mogelijk via ingebouwde functie-aanroepen; Wikifuncties beschikbaar op 65 Wiktionaries
* {{Status updates|2025-08-22}}: Opname van Wikimania-sessie: Wikifuncties komt binnenkort naar een wiki in uw buurt!
* {{Status updates|2025-08-01}}: Binnenkort is er Wikimania 2025!
* {{Status updates|2025-07-26}}: "Wikipedia is een encyclopedie"; Twee jaar Wikifuncties
* {{Status updates|2025-07-19}}: Er zijn nu Wikidata-gebaseerde opsommingen
* {{Status updates|2025-07-10}}: Lengtelimieten voor labels en beschrijvingen
* {{Status updates|2025-07-04}}: Dekking van 1298
* {{Status updates|2025-06-27}}: Hoeveel mensen zijn nodig om een encyclopedie te schrijven?
* {{Status updates|2025-06-21}}: Kwartaalplanning juli-september 2025
* {{Status updates|2025-06-15}}: Beëindiging van de raadpleging over de locatie van de abstracte inhoud
* {{Status updates|2025-06-06}}: Waar gaat abstracte inhoud naartoe?
* {{Status updates|2025-05-29}}: Uitrol naar vijf Wiktionaries; Rekenen met de datum van vandaag
* {{Status updates|2025-05-23}}: Lopende raadpleging over de locatie van de abstracte inhoud
* {{Status updates|2025-05-15}}: Locatie van de abstracte inhoud
* {{Status updates|2025-05-09}}: Abstract Wikipedia en de Wikimedia AI Strategie
* {{Status updates|2025-04-30}}: Abstract Wikipedia is een finalist van MacArthur 100 & Change
* {{Status updates|2025-04-25}}: Welkom, Gregory!
* {{Status updates|2025-04-16}}: Wikifuncties geïntegreerd in Dagbani - en Wikifuncties; en de datum van Pasen
* {{Status updates|2025-04-11}}: Kwartaal in terugblik
* {{Status updates|2025-04-05}}: Kwartaalplanning voor april-juni 2025; We zoeken een Senior Product Manager
* {{Status updates|2025-03-28}}: Het is tijd.
* {{Status updates|2025-03-20}}: Wikidata-gebaseerde eenvoudige opsommingen
* {{Status updates|2025-03-15}}: Komende NLG-bijeenkomst, recente softwarewijzigingen
* {{Status updates|2025-03-07}}: Recente wijzigingen in de software, opname van vrijwilligershoek, en gesprekken in Londen
* {{Status updates|2025-02-26}}: Van dingen naar woorden
* {{Status updates|2025-02-19}}: Een voorstel voor typen per taal en woordsoorten
* {{Status updates|2025-02-13}}: Beperking van de wereld, redux
* {{Status updates|2025-02-06}}: Uitnodiging van de Natural Language Generation Special Interest Group
* {{Status updates|2025-01-29}}: Met 2000 functies het nieuwe jaar in: tijd voor statistieken
* {{Status updates|2025-01-22}}: Welkom, David! De aanbevelingen voor naamconventies
* {{Status updates|2025-01-15}}: Gelukkige Wikipedia dag! Kwartaalplanning
=== 2024 ===
* {{Status updates|2024-12-19}}: Functie van de week: leeftijd; Introducties voor jaarartikelen; Nieuw type: Floating-point number
* {{Status updates|2024-12-12}}: Het schetsen van een pad naar Abstract Wikipedia; Team Offsite in Lissabon; en nog veel meer
* {{Status updates|2024-11-27}}: WordGraph release; Nieuwe speciale pagina: lijst van functies per test; nieuw type voor de dag van het jaar, en nog veel meer
* {{Status updates|2024-11-21}}: Nieuwe speciale pagina voor ontbrekende labels, nieuw type voor Gregoriaanse jaren en nog veel meer
* {{Status updates|2024-11-13}}: Nieuw type: Rational number; Documentatie op Wikidata-gebaseerde typen; en meer
* {{Status updates|2024-11-07}}: De droom over een universele taal
* {{Status updates|2024-11-01}}: Het herschrijven van de backend
* {{Status updates|2024-10-25}}: Ons doel voor dit kwartaal: Overeenkomst
* {{Status updates|2024-10-17}}: Hoe zou abstracte inhoud eruit kunnen zien?
* {{Status updates|2024-10-11}}: Binnenkort Wikidata Lexemen in Wikifuncties
* {{Status updates|2024-10-02}}: Focus onderwerp: Voeding
* {{Status updates|2024-09-26}}: Kwartaalplanning voor oktober-december 2024; Morgen presentatie op Celtic Knot
* {{Status updates|2024-09-20}}: Inleiding tot focus aandachtsgebieden
* {{Status updates|2024-09-13}}: Dagbani Wikipedia zal onze eerste wiki zijn voor de Wikifuncties-integratie
* {{Status updates|2024-09-06}}: Vrijwilligershoek en andere updates
* {{Status updates|2024-08-29}}: Limieten van lengte naam en beschrijving
* {{Status updates|2024-08-23}}: WasmEdge, nu 300 ms minder lang wachten
* {{Status updates|2024-08-16}}: Wikimania 2024 editie
* {{Status updates|2024-08-02}}: Vernieuwen widget 'About'
* {{Status updates|2024-07-26}}: Binnenkort is er Wikimania 2024!
* {{Status updates|2024-07-18}}: Onderzoeksrapport over het integreren van Wikifuncties uit Wikipedia
* {{Status updates|2024-07-10}}: Voorstellen types voor toegang tot Lexemen
* {{Status updates|2024-07-03}}: Kwartaalplanning
* {{Status updates|2024-06-26}}: Welkom, Daphne!
* {{Status updates|2024-06-20}}: Nieuw type: Integers
* {{Status updates|2024-06-13}}: Nieuw type: Igbo-kalendermaanden
* {{Status updates|2024-06-06}}: Nieuw type: Sign
* {{Status updates|2024-05-30}}: Een enkelvoud of een meervoud van meervouden?
* {{Status updates|2024-05-22}}: Nieuw type: Gregoriaanse kalendermaanden
* {{Status updates|2024-05-15}}: Oproep voor functies: Spel het nummer!
* {{Status updates|2024-05-10}}: Vlaggenschiptype voor opsommingen: Maanden van de Gregoriaanse kalender
* {{Status updates|2024-05-03}}: Teamvergadering en kwartaalplan
* {{Status updates|2024-04-19}}: Welkom, Sharvani!
* {{Status updates|2024-04-11}}: Nieuwe API voor het aanroepen van Wikifuncties en het vieren van de duizendste functie
* {{Status updates|2024-04-03}}: Product Update op Diff en komende API-verbeteringen
* {{Status updates|2024-03-28}}: Het aanmaken van tests is nu veel makkelijker!
* {{Status updates|2024-03-21}}: Op weg naar internationalisatie van nummers
* {{Status updates|2024-03-13}}: Over identiteit
* {{Status updates|2024-03-07}}: We introduceren ons tweede nieuwe type: natuurlijke getallen
* {{Status updates|2024-02-28}}: Voorstel type voor natuurlijke getallen
* {{Status updates|2024-02-22}}: Update van het functiemodel
* {{Status updates|2024-02-14}}: Week voor fouten herstellen
* {{Status updates|2024-02-07}}: Kwartaalplanning. Bedankt, Nick! Functie van de Week: is permutatie
* {{Status updates|2024-02-01}}: Het Igbo Imperatief!
<span id="Before_February_2024"></span>
=== Voor februari 2024 ===
De updates van voor februari 2024 zijn [[:m:Special:MyLanguage/Abstract Wikipedia/Updates|beschikbaar op Meta-Wiki]].
[[Category:Status updates{{#translation:}}| ]]
6slucix1lefqumphpzqvak2di70qjo0
307272
307270
2026-09-01T19:47:19Z
HanV
6833
Created page with "$1: Op weg naar onze eerste mijlpaal in de integratie van Abstract Wikipedia"
307272
wikitext
text/x-wiki
<languages/>
{{shortcut|WF:SU}}{{notice|1='''[[:m:Global message delivery/Targets/Wikifunctions & Abstract Wikipedia|Meld u aan]]''' om korte on-wiki MassMessage-meldingen over elk nieuw onderwerp te ontvangen}}
{{Wikifunctions updates
| prevlabel = Vorige update
| prev = 2024-02-01
| nextlabel = Laatste update
| next = 2026-08-28
}}
Er gebeurt veel rond Wikifunctions en Abstract Wikipedia. Dit is de pagina waar onze updates worden geplaatst, inclusief de [[Special:MyLanguage/WF:function of the Week|functie van de week]].
U kunt u ook aanmelden op de [[:m:Global message delivery/Targets/Wikifunctions & Abstract Wikipedia|on-wiki nieuwsbrief]] om ze op uw overlegpagina of bij de kroeg van uw project te laten bezorgen.
<inputbox>
type=fulltext
prefix={{NAMESPACE}}:{{PAGENAME}}/
break=no
width=30
searchbuttonlabel={{int:Search}}
placeholder=Alle statusupdates zoeken
</inputbox>
<span id="Newsletters"></span>
== Nieuwsbrieven ==
<!--<nowiki> Newsletter entry template:
* <translate><tvar name="1">{{Status updates|2026-0?-??}}</tvar>: Title</translate>
NOTE: Remember to also update the "next =" date at the top of this page.
</nowiki>-->
=== 2026 ===
* {{Status updates|2026-08-28}}: Wikifuncties Object Referentie
* {{Status updates|2026-08-20}}: Burgemeesters en het Noorden
* {{Status updates|2026-08-13}}: Shoutout naar 99of9!
* {{Status updates|2026-08-05}}: Een appel is een vrucht
* {{Status updates|2026-07-29}}: Abstract Wikipedia op Wikimania
* {{Status updates|2026-07-16}}: Verder dan syntactische tabellen
* {{Status updates|2026-07-08}}: Op weg naar onze eerste mijlpaal in de integratie van Abstract Wikipedia
* {{Status updates|2026-07-01}}: Integratie op test-wiki en jaarplan
* {{Status updates|2026-06-26}}: Samen werken aan Functies
* {{Status updates|2026-06-19}}: De of niet de, dit is (de?) vraag
* {{Status updates|2026-06-12}}: Het laden en weergeven van de testresultaten is verbeterd.
* {{Status updates|2026-06-05}}: De geïllustreerde encyclopedie
* {{Status updates|2026-05-30}}: Terugkijken en vooruitkijken
* {{Status updates|2026-05-23}}: Jaarplan 2026-2027
* {{Status updates|2026-05-15}}: Een hogere betekenis
* {{Status updates|2026-05-08}}: Referenties van Wikidata zijn nu beschikbaar
* {{Status updates|2026-05-02}}: Vraag om feedback: wat moeten we tellen voor Abstract Wikipedia?
* {{Status updates|2026-04-25}}: De zoektocht van de Foundation naar de perfecte taal
* {{Status updates|2026-04-16}}: Mijlpalen; er zijn enkele belangrijke problemen hopelijk opgelost
* {{Status updates|2026-04-10}}: Voorstellen van gemeenschap voor het vastleggen van betekenis
* {{Status updates|2026-04-02}}: Verzoek tot overleg: Syntactische tabellen
* {{Status updates|2026-03-26}}: Eerste dagen van de Abstract Wikipedia Beta; Status van de compositie-taal v2
* {{Status updates|2026-03-19}}: Abstract Wikipedia in Beta
* {{Status updates|2026-03-11}}: Een nieuwe compositie-taal
* {{Status updates|2026-03-06}}: Citeren en kopiëren en plakken
* {{Status updates|2026-02-26}}: Gracieuze overrides en fallbacks
* {{Status updates|2026-02-20}}: Een vroeg concept voor het voorvertonen van Abstract Wikipedia
* {{Status updates|2026-02-13}}: Elkaars zinnen afmaken: Dingen beginnen; Buiten locatie in Istanbul
* {{Status updates|2026-01-29}}: Integratie van Abstract Wikipedia
* {{Status updates|2026-01-22}}: Kwartaalplan voor januari-maart 2026
* {{Status updates|2026-01-15}}: 25 jaar Wikipedia
=== 2025 ===
* {{Status updates|2025-12-18}}: We wensen u een gelukkig nieuwjaar!
* {{Status updates|2025-12-11}}: Betere foutberichten schrijven
* {{Status updates|2025-12-04}}: En de naam is Abstract Wikipedia
* {{Status updates|2025-11-27}}: Stem voor de naam van de nieuwe wiki! Het afmaken van elkaars zinnen
* {{Status updates|2025-11-20}}: Tweede ronde van de stemming voor de naam van de wiki met taal-onafhankelijke inhoud; Functie-aanroepen delen
* {{Status updates|2025-11-13}}: Klaarmaken voor de tweede ronde van de stemming voor de naamgeving van de wiki met abstracte inhoud; Het herschrijven van de backend: Waarom Rust?
* {{Status updates|2025-11-05}}: De eerste ronde van de stemming voor de naamgeving van de wiki voor abstracte inhoud is gesloten; Oproep voor Wiktionary-functies; Ingebedde Wikifuncties op Bengalese Wikipedia en nog zeven Wiktionaries meer
* {{Status updates|2025-10-29}}: De eerste ronde van de stemming voor de naamgeving van de "abstract content wiki" eindigt maandag; Een voorbeeld van korte beschrijvingen
* {{Status updates|2025-10-23}}: Welkom Zaree en Laura! De eerste ronde van wedstrijd voor het benoemen is begonnen .
* {{Status updates|2025-10-15}}: Start van de naamgevingswedstijd voor Abstract Wikipedia; Visualisatie van functies
* {{Status updates|2025-10-08}}: Besluit over de locatie voor abstracte content en kwartaalplanning voor oktober-december
* {{Status updates|2025-10-03}}: Rich text nu beschikbaar in embedded functie-aanroepen op 148 Wiktionaries en Incubator
* {{Status updates|2025-09-26}}: Toegang tot kwalificaties in Wikidata-verklaringen
* {{Status updates|2025-09-19}}: Wikifuncties beschikbaar in 123 Wiktionary-talen
* {{Status updates|2025-09-12}}: Meer dan 3.000 functies op Wikifuncties
* {{Status updates|2025-09-07}}: Kopiëren van functie-aanroepen van de ene Wikipedia naar de andere
* {{Status updates|2025-08-29}}: Toegang tot Wikidata-items is nu mogelijk via ingebouwde functie-aanroepen; Wikifuncties beschikbaar op 65 Wiktionaries
* {{Status updates|2025-08-22}}: Opname van Wikimania-sessie: Wikifuncties komt binnenkort naar een wiki in uw buurt!
* {{Status updates|2025-08-01}}: Binnenkort is er Wikimania 2025!
* {{Status updates|2025-07-26}}: "Wikipedia is een encyclopedie"; Twee jaar Wikifuncties
* {{Status updates|2025-07-19}}: Er zijn nu Wikidata-gebaseerde opsommingen
* {{Status updates|2025-07-10}}: Lengtelimieten voor labels en beschrijvingen
* {{Status updates|2025-07-04}}: Dekking van 1298
* {{Status updates|2025-06-27}}: Hoeveel mensen zijn nodig om een encyclopedie te schrijven?
* {{Status updates|2025-06-21}}: Kwartaalplanning juli-september 2025
* {{Status updates|2025-06-15}}: Beëindiging van de raadpleging over de locatie van de abstracte inhoud
* {{Status updates|2025-06-06}}: Waar gaat abstracte inhoud naartoe?
* {{Status updates|2025-05-29}}: Uitrol naar vijf Wiktionaries; Rekenen met de datum van vandaag
* {{Status updates|2025-05-23}}: Lopende raadpleging over de locatie van de abstracte inhoud
* {{Status updates|2025-05-15}}: Locatie van de abstracte inhoud
* {{Status updates|2025-05-09}}: Abstract Wikipedia en de Wikimedia AI Strategie
* {{Status updates|2025-04-30}}: Abstract Wikipedia is een finalist van MacArthur 100 & Change
* {{Status updates|2025-04-25}}: Welkom, Gregory!
* {{Status updates|2025-04-16}}: Wikifuncties geïntegreerd in Dagbani - en Wikifuncties; en de datum van Pasen
* {{Status updates|2025-04-11}}: Kwartaal in terugblik
* {{Status updates|2025-04-05}}: Kwartaalplanning voor april-juni 2025; We zoeken een Senior Product Manager
* {{Status updates|2025-03-28}}: Het is tijd.
* {{Status updates|2025-03-20}}: Wikidata-gebaseerde eenvoudige opsommingen
* {{Status updates|2025-03-15}}: Komende NLG-bijeenkomst, recente softwarewijzigingen
* {{Status updates|2025-03-07}}: Recente wijzigingen in de software, opname van vrijwilligershoek, en gesprekken in Londen
* {{Status updates|2025-02-26}}: Van dingen naar woorden
* {{Status updates|2025-02-19}}: Een voorstel voor typen per taal en woordsoorten
* {{Status updates|2025-02-13}}: Beperking van de wereld, redux
* {{Status updates|2025-02-06}}: Uitnodiging van de Natural Language Generation Special Interest Group
* {{Status updates|2025-01-29}}: Met 2000 functies het nieuwe jaar in: tijd voor statistieken
* {{Status updates|2025-01-22}}: Welkom, David! De aanbevelingen voor naamconventies
* {{Status updates|2025-01-15}}: Gelukkige Wikipedia dag! Kwartaalplanning
=== 2024 ===
* {{Status updates|2024-12-19}}: Functie van de week: leeftijd; Introducties voor jaarartikelen; Nieuw type: Floating-point number
* {{Status updates|2024-12-12}}: Het schetsen van een pad naar Abstract Wikipedia; Team Offsite in Lissabon; en nog veel meer
* {{Status updates|2024-11-27}}: WordGraph release; Nieuwe speciale pagina: lijst van functies per test; nieuw type voor de dag van het jaar, en nog veel meer
* {{Status updates|2024-11-21}}: Nieuwe speciale pagina voor ontbrekende labels, nieuw type voor Gregoriaanse jaren en nog veel meer
* {{Status updates|2024-11-13}}: Nieuw type: Rational number; Documentatie op Wikidata-gebaseerde typen; en meer
* {{Status updates|2024-11-07}}: De droom over een universele taal
* {{Status updates|2024-11-01}}: Het herschrijven van de backend
* {{Status updates|2024-10-25}}: Ons doel voor dit kwartaal: Overeenkomst
* {{Status updates|2024-10-17}}: Hoe zou abstracte inhoud eruit kunnen zien?
* {{Status updates|2024-10-11}}: Binnenkort Wikidata Lexemen in Wikifuncties
* {{Status updates|2024-10-02}}: Focus onderwerp: Voeding
* {{Status updates|2024-09-26}}: Kwartaalplanning voor oktober-december 2024; Morgen presentatie op Celtic Knot
* {{Status updates|2024-09-20}}: Inleiding tot focus aandachtsgebieden
* {{Status updates|2024-09-13}}: Dagbani Wikipedia zal onze eerste wiki zijn voor de Wikifuncties-integratie
* {{Status updates|2024-09-06}}: Vrijwilligershoek en andere updates
* {{Status updates|2024-08-29}}: Limieten van lengte naam en beschrijving
* {{Status updates|2024-08-23}}: WasmEdge, nu 300 ms minder lang wachten
* {{Status updates|2024-08-16}}: Wikimania 2024 editie
* {{Status updates|2024-08-02}}: Vernieuwen widget 'About'
* {{Status updates|2024-07-26}}: Binnenkort is er Wikimania 2024!
* {{Status updates|2024-07-18}}: Onderzoeksrapport over het integreren van Wikifuncties uit Wikipedia
* {{Status updates|2024-07-10}}: Voorstellen types voor toegang tot Lexemen
* {{Status updates|2024-07-03}}: Kwartaalplanning
* {{Status updates|2024-06-26}}: Welkom, Daphne!
* {{Status updates|2024-06-20}}: Nieuw type: Integers
* {{Status updates|2024-06-13}}: Nieuw type: Igbo-kalendermaanden
* {{Status updates|2024-06-06}}: Nieuw type: Sign
* {{Status updates|2024-05-30}}: Een enkelvoud of een meervoud van meervouden?
* {{Status updates|2024-05-22}}: Nieuw type: Gregoriaanse kalendermaanden
* {{Status updates|2024-05-15}}: Oproep voor functies: Spel het nummer!
* {{Status updates|2024-05-10}}: Vlaggenschiptype voor opsommingen: Maanden van de Gregoriaanse kalender
* {{Status updates|2024-05-03}}: Teamvergadering en kwartaalplan
* {{Status updates|2024-04-19}}: Welkom, Sharvani!
* {{Status updates|2024-04-11}}: Nieuwe API voor het aanroepen van Wikifuncties en het vieren van de duizendste functie
* {{Status updates|2024-04-03}}: Product Update op Diff en komende API-verbeteringen
* {{Status updates|2024-03-28}}: Het aanmaken van tests is nu veel makkelijker!
* {{Status updates|2024-03-21}}: Op weg naar internationalisatie van nummers
* {{Status updates|2024-03-13}}: Over identiteit
* {{Status updates|2024-03-07}}: We introduceren ons tweede nieuwe type: natuurlijke getallen
* {{Status updates|2024-02-28}}: Voorstel type voor natuurlijke getallen
* {{Status updates|2024-02-22}}: Update van het functiemodel
* {{Status updates|2024-02-14}}: Week voor fouten herstellen
* {{Status updates|2024-02-07}}: Kwartaalplanning. Bedankt, Nick! Functie van de Week: is permutatie
* {{Status updates|2024-02-01}}: Het Igbo Imperatief!
<span id="Before_February_2024"></span>
=== Voor februari 2024 ===
De updates van voor februari 2024 zijn [[:m:Special:MyLanguage/Abstract Wikipedia/Updates|beschikbaar op Meta-Wiki]].
[[Category:Status updates{{#translation:}}| ]]
aa3n7c4hbm4t9x5zmcfyvk8m6t2plab
Z27951
0
64738
307091
277078
2026-09-01T13:40:07Z
JhowieNitnek
1044
307091
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z27951"
},
"Z2K2": {
"Z1K1": "Z7",
"Z7K1": "Z6884",
"Z6884K1": "Z6091",
"Z6884K2": [
"Z6091",
{
"Z1K1": "Z6091",
"Z6091K1": "Q556"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q560"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q568"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q569"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q618"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q623"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q627"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q629"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q650"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q654"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q658"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q660"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q663"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q670"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q674"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q682"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q688"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q696"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q703"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q706"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q713"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q716"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q722"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q725"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q731"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q677"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q740"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q744"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q753"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q758"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q861"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q867"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q871"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q876"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q879"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q888"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q895"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q938"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q941"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1038"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1046"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1053"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1054"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1086"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1087"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1089"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1090"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1091"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1094"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1096"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1099"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1100"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1103"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1106"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1108"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1112"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1801"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1385"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1386"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1388"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1809"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1819"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1396"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1832"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1838"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1843"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1846"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1849"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1853"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1855"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1857"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1119"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1123"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q743"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q737"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q751"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q877"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q880"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q897"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q925"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q932"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q708"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q942"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q979"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q999"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1133"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q671"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1128"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1121"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1115"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1109"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1098"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1105"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1102"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1872"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1876"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1882"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1888"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1892"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1896"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1898"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1901"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1905"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1226"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1232"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1234"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1249"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1252"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1258"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1266"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1272"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1278"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1301"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1302"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1303"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1304"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1306"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1307"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1139"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1146"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1466"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q7425"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q428758"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q428741"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q428685"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q54377"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q428692"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q428703"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q428640"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q428648"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q428629"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q428635"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q3552041"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q3552040"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q3552038"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q868375"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1366419"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q869681"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q548592"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q3029913"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q3551935"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q3551927"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q3551933"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q3551931"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q3551930"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q3551926"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q3551929"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q3551928"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q2399140"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q3551919"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q3551921"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q3551918"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q3551924"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q22313918"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q22314315"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q91655950"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q91655961"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q91655977"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q92113383"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q91655999"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q113084035"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q113084037"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q113084040"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q30929350"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q16307178"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q113084043"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q16307173"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q16307168"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q19599218"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q113084046"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q113084048"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q16307164"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q11289368"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q116976565"
}
],
"Z6884K3": {
"Z1K1": "Z6",
"Z6K1": "Z27951"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Chemical element"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "Elemento chimico"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "chemisches Element"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "রাসায়নিক পদার্থ"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "Chemický prvek"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Chemisch element"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"atomic number"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1157",
"Z31K2": [
"Z6",
"atoomnummer"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "represents one of the elements of the periodic table, a collective label for all atoms with a certain atomic number, including isotopes thereof"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "vertegenwoordigt een van de elementen uit het periodiek systeem, een verzamelnaam voor alle atomen met een bepaald atoomnummer, inclusief de isotopen daarvan"
}
]
}
}
r24eaf7yq7re71td7en0ot6haf8h2cs
Z27962
0
64750
307092
254780
2026-09-01T13:41:43Z
JhowieNitnek
1044
307092
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z27962"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z27951",
"Z17K2": "Z27962K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "chemical element"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "elemento chimico"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1272",
"Z11K2": "kemijski element"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "chemisch element"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20",
"Z27963",
"Z27964",
"Z27966",
"Z27968"
],
"Z8K4": [
"Z14",
"Z27965"
],
"Z8K5": "Z27962"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "chemical element symbol"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "simbolo dell'elemento chimico"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1272",
"Z11K2": "simbol kemijskog elementa"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "chemisch elementsymbool"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"atomic symbol"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1787",
"Z31K2": [
"Z6",
"simbolo chimico",
"simbolo elemento chimico"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1157",
"Z31K2": [
"Z6",
"atoomsymbool"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "returns the chemical element's symbol when a Chemical element object is given"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "retourneert het symbool van het chemische element wanneer een Chemisch element-object wordt opgegeven"
}
]
}
}
3031ya06ixdh1nqy1bgmsx9lsr6cov9
Z28515
0
66187
307078
277125
2026-09-01T13:31:53Z
JhowieNitnek
1044
307078
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z28515"
},
"Z2K2": {
"Z1K1": "Z7",
"Z7K1": "Z6884",
"Z6884K1": "Z6091",
"Z6884K2": [
"Z6091",
{
"Z1K1": "Z6091",
"Z6091K1": "Q110786"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q489410"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q113890342"
}
],
"Z6884K3": {
"Z1K1": "Z6",
"Z6K1": "Z28515"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Grammatical number (singular / paucal / multal)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "grammatikalische Zahl (Singular/Paukal/Multal)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Grammaticaal getal (enkelvoud / paucaal / multaal)"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "three-valued grammatical number system (1, \"few\", \u003E\"few\")"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "driewaardig grammaticaal getallensysteem (1, “weinig”, \u003E“weinig”)"
}
]
}
}
3gkgxotlbwd4g2ypbg0mbr70fxd5zpq
Z28516
0
66188
307079
277120
2026-09-01T13:32:53Z
JhowieNitnek
1044
307079
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z28516"
},
"Z2K2": {
"Z1K1": "Z7",
"Z7K1": "Z6884",
"Z6884K1": "Z6091",
"Z6884K2": [
"Z6091",
{
"Z1K1": "Z6091",
"Z6091K1": "Q53997851"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q53997857"
}
],
"Z6884K3": {
"Z1K1": "Z6",
"Z6K1": "Z28516"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Grammatical definiteness"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "définitude grammaticale"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "ব্যাকরণগত নির্দিষ্টতা (নির্দিষ্ট/ অনির্দিষ্ট)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "grammatikalische Bestimmtheit"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Grammaticale bepaaldheid"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "an enumeration of only 'definite' and 'indefinite', for languages which make such a binary distinction when inflecting words"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "een opsomming van uitsluitend ‘bepaald’ en ‘onbepaald’, voor talen waarin bij de verbuiging van woorden een dergelijk binair onderscheid wordt gemaakt"
}
]
}
}
77shdejbic45a9pbgapvsa0re23hd31
Z28517
0
66189
307080
277129
2026-09-01T13:33:30Z
JhowieNitnek
1044
307080
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z28517"
},
"Z2K2": {
"Z1K1": "Z7",
"Z7K1": "Z6884",
"Z6884K1": "Z6091",
"Z6884K2": [
"Z6091",
{
"Z1K1": "Z6091",
"Z6091K1": "Q1317831"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1194697"
}
],
"Z6884K3": {
"Z1K1": "Z6",
"Z6K1": "Z28517"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Grammatical voice (active / passive)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "voie grammaticale (active / passive)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "ব্যাকরণগত বাচ্য (কর্তৃ /কর্ম)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "grammatikalische Diathese (Aktiv/Passiv)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "Rod sloves (činný/trpný)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "Diatesi grammaticale (attiva / passiva)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Grammaticale diathese (actief / passief)"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1062",
"Z31K2": [
"Z6",
"Gramatický rod sloves"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "Výčtový typ pro gramatický rod sloves (činný nebo trpný)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "an enumeration of only 'active' and 'passive', for languages which make such a binary distinction when inflecting words"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "een opsomming van uitsluitend ‘actief’ en ‘passief’, voor talen waarin bij de verbuiging van woorden een dergelijk binair onderscheid wordt gemaakt"
}
]
}
}
0flwgbec9x34geo90rmhlnpzyr6kfgn
Z28518
0
66190
307082
277126
2026-09-01T13:34:09Z
JhowieNitnek
1044
307082
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z28518"
},
"Z2K2": {
"Z1K1": "Z7",
"Z7K1": "Z6884",
"Z6884K1": "Z6091",
"Z6884K2": [
"Z6091",
{
"Z1K1": "Z6091",
"Z6091K1": "Q109267112"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1478451"
}
],
"Z6884K3": {
"Z1K1": "Z6",
"Z6K1": "Z28518"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Grammatical polarity (affirmative / negation)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "polarité grammaticale (affirmation / négation)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "grammatikalische Polarität (Affirmation/Negation)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Grammaticale polariteit (bevestigend / ontkennend)"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "an enumeration of 'affirmative' and 'negative', a binary distinction languages make between assertions of truth and falsehood, or in response to an assertion or question"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "een opsomming van ‘ja’ en ‘nee’, een binair onderscheid dat talen maken tussen beweringen die waar of onwaar zijn, of in reactie op een bewering of vraag"
}
]
}
}
jnu5ks17t1mt1myyw9mlv9238x2uzsd
Z28519
0
66191
307086
277119
2026-09-01T13:36:19Z
JhowieNitnek
1044
307086
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z28519"
},
"Z2K2": {
"Z1K1": "Z7",
"Z7K1": "Z6884",
"Z6884K1": "Z6091",
"Z6884K2": [
"Z6091",
{
"Z1K1": "Z6091",
"Z6091K1": "Q131105"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q146233"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q145599"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q146078"
}
],
"Z6884K3": {
"Z1K1": "Z6",
"Z6K1": "Z28519"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Grammatical case (Nom/Gen/Dat/Acc)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "cas grammaticaux (nom./gén./dat./acc.)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "ব্যাকরণগত কারক (কর্তৃ/ সম্বন্ধ/ সম্প্রদান/ কর্ম)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "grammatikalischer Fall (Nom./Gen./Dat./Akk.)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "Caso grammaticale (Nom/Gen/Dat/Acc)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Naamval (Nominatief/Genitief/Datief/Accusatief)"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1787",
"Z31K2": [
"Z6",
"Caso grammaticale tedesco"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"German grammatical case",
"Icelandic grammatical case"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1157",
"Z31K2": [
"Z6",
"Duitse naamval",
"IJslandse naamval"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "an enumeration Type for the 4 'cases' of inflection in German (and Icelandic)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "een Opsommingstype voor de vier naamvallen in het Duits en IJslands"
}
]
}
}
kvmrwoqnqzymhg20aa0t5jxmh5q2qys
Z28520
0
66192
307089
277122
2026-09-01T13:37:33Z
JhowieNitnek
1044
307089
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z28520"
},
"Z2K2": {
"Z1K1": "Z7",
"Z7K1": "Z6884",
"Z6884K1": "Z6091",
"Z6884K2": [
"Z6091",
{
"Z1K1": "Z6091",
"Z6091K1": "Q3482678"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q14169499"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1817208"
}
],
"Z6884K3": {
"Z1K1": "Z6",
"Z6K1": "Z28520"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Grammatical degree of comparison (pos/comp/super)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "degré de comparaison (pos./comp./super.)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "grammatikalische Komparation (Pos./Komp./Sup.)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "Grado di comparazione (pos/comp/super)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "Gramatický stupeň (poz/komp/super)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Grammaticale vergelijkingsgraad (pos/comp/super)"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1062",
"Z31K2": [
"Z6",
"Stupeň"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "Výčtový typ pro gramatický stupeň (pozitiv, komparativ nebo superlativ)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "an enumeration of 'positive', 'comparative', and 'superlative', a three-way distinction of the forms adjectives/adverbs can take across languages"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "een opsomming van ‘positief’, ‘comparatief’ en ‘superlatief’, een driedeling van de vormen die bijvoeglijke naamwoorden en bijwoorden in verschillende talen kunnen aannemen"
}
]
}
}
hv7lkiwdv03we5jubrf0j3dsy69fp1i
Z28579
0
66324
307069
274543
2026-09-01T13:26:37Z
JhowieNitnek
1044
307069
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z28579"
},
"Z2K2": {
"Z1K1": "Z4",
"Z4K1": "Z28579",
"Z4K2": [
"Z3",
{
"Z1K1": "Z3",
"Z3K1": "Z19677",
"Z3K2": "Z28579K1",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "red"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "rosso"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Rot"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1003",
"Z11K2": "rojo"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "rouge"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1005",
"Z11K2": "Красный"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1827",
"Z11K2": "Κόκκινο"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1730",
"Z11K2": "Roud"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1859",
"Z11K2": "Rot"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1531",
"Z11K2": "Merah"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "Merah"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1592",
"Z11K2": "Röd"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1532",
"Z11K2": "Rooi"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1001",
"Z11K2": "أحمر"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "rood"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "লাল"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "červená"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1645",
"Z11K2": "红"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1672",
"Z11K2": "紅"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1762",
"Z11K2": "loje"
}
]
},
"Z3K4": {
"Z1K1": "Z40",
"Z40K1": "Z42"
}
},
{
"Z1K1": "Z3",
"Z3K1": "Z19677",
"Z3K2": "Z28579K2",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "green"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "verde"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Grün"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1003",
"Z11K2": "verde"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "vert"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1005",
"Z11K2": "Зелёный"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1827",
"Z11K2": "Πράσινο"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1730",
"Z11K2": "Grea"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1859",
"Z11K2": "Grie"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "Hijau"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1531",
"Z11K2": "Hijau"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1592",
"Z11K2": "Grön"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1532",
"Z11K2": "Groen"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1001",
"Z11K2": " أخضر"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "সবুজ"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "zelená"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1645",
"Z11K2": "绿"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1672",
"Z11K2": "綠"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "groen"
}
]
},
"Z3K4": {
"Z1K1": "Z40",
"Z40K1": "Z42"
}
},
{
"Z1K1": "Z3",
"Z3K1": "Z19677",
"Z3K2": "Z28579K3",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "blue"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "blu"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1003",
"Z11K2": "azul"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Blau"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "bleu"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1005",
"Z11K2": "Синий"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1827",
"Z11K2": "Μπλε"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1730",
"Z11K2": "Blau"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1859",
"Z11K2": "Bloh"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "Biru"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1531",
"Z11K2": "Biru"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1592",
"Z11K2": "Blå"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1532",
"Z11K2": "Blou"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1001",
"Z11K2": " أزرق"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "blauw"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "নীল"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "modrá"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1645",
"Z11K2": "蓝"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1672",
"Z11K2": "藍"
}
]
},
"Z3K4": {
"Z1K1": "Z40",
"Z40K1": "Z42"
}
},
{
"Z1K1": "Z3",
"Z3K1": "Z19677",
"Z3K2": "Z28579K4",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "alpha"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "alfa"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1003",
"Z11K2": "alfa"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Alpha"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "alpha"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1005",
"Z11K2": "Альфа"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1827",
"Z11K2": "Άλφα"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1730",
"Z11K2": "Alpha"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1859",
"Z11K2": "Alpha"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "Alfa"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1531",
"Z11K2": "Alfa"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1592",
"Z11K2": "Alfa"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1532",
"Z11K2": "Alfa"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1001",
"Z11K2": "ألفا"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "alfa"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "আলফা"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "alfa"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1645",
"Z11K2": "alpha"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1672",
"Z11K2": "alpha"
}
]
},
"Z3K4": {
"Z1K1": "Z40",
"Z40K1": "Z42"
}
}
],
"Z4K3": "Z101",
"Z4K4": "Z28580",
"Z4K5": "Z28650",
"Z4K6": "Z28624",
"Z4K7": [
"Z46",
"Z28584",
"Z28591"
],
"Z4K8": [
"Z64",
"Z28586",
"Z28593"
]
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "RGBA color"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1592",
"Z11K2": "RGBA-färg"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "colore RGBA"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1689",
"Z11K2": "RGBA color"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1199",
"Z11K2": "RGBA colour"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "RGBA-Farbe"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1003",
"Z11K2": "color RGBA"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "লাল সবুজ নীল আলফা রঙ"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "couleur RVBA"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "RGBA barva"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1762",
"Z11K2": "kule kepeken ilo RGBA"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "RGBA-kleur"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"color",
"RGB color",
"colour",
"RGB colour",
"RGBA colour"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1592",
"Z31K2": [
"Z6",
"RGBA färg",
"färg",
"RGB-färg"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1430",
"Z31K2": [
"Z6",
"Farbe",
"RGB-Farbe"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1003",
"Z31K2": [
"Z6",
"color",
"color RGB"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1011",
"Z31K2": [
"Z6",
"রঙ",
"বর্ণ",
"আরজিবিএ রঙ"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1062",
"Z31K2": [
"Z6",
"Barva",
"RGB barva"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1762",
"Z31K2": [
"Z6",
"kule"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1157",
"Z31K2": [
"Z6",
"kleur",
"RGB-kleur"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "A color value with four values, the fourth being alpha (high=opacity, low=transparency)."
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Ein Farbwert mit vier Werten, der Vierte davon ist Alpha (hoch = undurchsichtig, niedrig = transparent)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1003",
"Z11K2": "Un valor de colores con cuatro valores, el cuarto es alfa (alto = opaco, bajo = transparente)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1592",
"Z11K2": "en färg med fyra värden (primärfärgerna rött, grönt, blått, samt genomskinlighet)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1689",
"Z11K2": "A color value with four values, the fourth being alpha (high=opacity, low=transparency)."
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "base = rouge vert(Green en anglais) bleu alpha(valeur du canal 0 min=transparent, max=opaque)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "Barva popsaná čtyřmi hodnotami RGB a hodnotou alfa (čím nižší, tím průhlednější)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": " Een kleurwaarde met vier componenten, waarvan de vierde de alfa-waarde is (hoog = dekking, laag = transparantie)."
}
]
}
}
mbeeoayegs2cop91wf5mvaeks9bq49a
Z28580
0
66325
307072
281701
2026-09-01T13:27:24Z
JhowieNitnek
1044
307072
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z28580"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z28579",
"Z17K2": "Z28580K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "this"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "primo colore"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "dies"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "dit"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z28579",
"Z17K2": "Z28580K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "that"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "secondo colore"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "das"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "dat"
}
]
}
}
],
"Z8K2": "Z40",
"Z8K3": [
"Z20",
"Z28581",
"Z28582"
],
"Z8K4": [
"Z14",
"Z28592",
"Z28585",
"Z28583"
],
"Z8K5": "Z28580"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "same RGBA color"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "stesso colore RGBA"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "gleiche RGBA-Farbe"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "同じRGBAカラー値"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1199",
"Z11K2": "same RGBA colour"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "zelfde RGBA-kleur"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "入力された2つのRGBAカラー値が一致するかどうか調べる。"
}
]
}
}
biuf6apb3ccc46wsfrs5xxdlnwicuww
Z28650
0
66488
307074
274296
2026-09-01T13:29:13Z
JhowieNitnek
1044
307074
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z28650"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z28579",
"Z17K2": "Z28650K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "RGBA color"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "colore"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1689",
"Z11K2": "RGBA color"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "RGBA-Farbe"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "RGBA-kleur"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z28650K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language to display in"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "lingua"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1689",
"Z11K2": "language to display in"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Sprache, in der die Farbe angezeigt werden soll"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "weergavetaal"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20",
"Z28652",
"Z28653"
],
"Z8K4": [
"Z14",
"Z28651"
],
"Z8K5": "Z28650"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "display RGBA color"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "stampa colore RGBA"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1689",
"Z11K2": "display RGBA color"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "RGBA-Farbe anzeigen"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1860",
"Z11K2": "manampilkan warna RGBA"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "RGBA-kleur weergeven"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "display function for Type Z28579"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Anzeigefunktion für Typ Z28579"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1860",
"Z11K2": "manampilkan warna RGBA"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "weergavefunctie voor Type Z28579"
}
]
}
}
da7rerk9mzhvokyif4cq10c17uwvi72
Z28884
0
67121
307355
257929
2026-09-02T03:47:34Z
DMartin (WMF)
24
Removed "WIP" from the English label; see Discussion page for more info
307355
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z28884"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z28874",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z802",
"Z802K1": {
"Z1K1": "Z7",
"Z7K1": "Z12755",
"Z12755K1": {
"Z1K1": "Z18",
"Z18K1": "Z28874K1"
}
},
"Z802K2": {
"Z1K1": "Z7",
"Z7K1": "Z811",
"Z811K1": {
"Z1K1": "Z18",
"Z18K1": "Z28874K1"
}
},
"Z802K3": {
"Z1K1": "Z7",
"Z7K1": "Z802",
"Z802K1": {
"Z1K1": "Z7",
"Z7K1": "Z28846",
"Z28846K1": {
"Z1K1": "Z7",
"Z7K1": "Z811",
"Z811K1": {
"Z1K1": "Z7",
"Z7K1": "Z28321",
"Z28321K1": {
"Z1K1": "Z7",
"Z7K1": "Z811",
"Z811K1": {
"Z1K1": "Z18",
"Z18K1": "Z28874K1"
}
},
"Z28321K2": {
"Z1K1": "Z6092",
"Z6092K1": "P585"
}
}
},
"Z28846K2": {
"Z1K1": "Z7",
"Z7K1": "Z811",
"Z811K1": {
"Z1K1": "Z7",
"Z7K1": "Z28321",
"Z28321K1": {
"Z1K1": "Z7",
"Z7K1": "Z28874",
"Z28874K1": {
"Z1K1": "Z7",
"Z7K1": "Z812",
"Z812K1": {
"Z1K1": "Z18",
"Z18K1": "Z28874K1"
}
}
},
"Z28321K2": {
"Z1K1": "Z6092",
"Z6092K1": "P585"
}
}
}
},
"Z802K2": {
"Z1K1": "Z7",
"Z7K1": "Z811",
"Z811K1": {
"Z1K1": "Z18",
"Z18K1": "Z28874K1"
}
},
"Z802K3": {
"Z1K1": "Z7",
"Z7K1": "Z28874",
"Z28874K1": {
"Z1K1": "Z7",
"Z7K1": "Z812",
"Z812K1": {
"Z1K1": "Z18",
"Z18K1": "Z28874K1"
}
}
}
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Composition for Z28874"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
npr9mwiwj7ksmwaa4l97bhvdj8dktwj
Z30030
0
69537
307153
232187
2026-09-01T16:31:25Z
YoshiRulz
10156
Update to reflect changed return type of Z24453
307153
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z30030"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z10548",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z21394",
"Z21394K1": {
"Z1K1": "Z7",
"Z7K1": "Z18479",
"Z18479K1": {
"Z1K1": "Z7",
"Z7K1": "Z873",
"Z873K1": "Z40815",
"Z873K2": {
"Z1K1": "Z7",
"Z7K1": "Z24453",
"Z24453K1": {
"Z1K1": "Z18",
"Z18K1": "Z10548K1"
}
}
}
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "grapheme-aware reverse string, composition"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
gd3zmb1ezm5xyvfpeab9p0ouyt4vrrj
Wikifunctions:Type proposals/Simple temporal entity
4
70273
307182
256934
2026-09-01T18:14:55Z
Ameisenigel
44
/* Comments */ Support
307182
wikitext
text/x-wiki
== Summary ==
This type represents the simple concepts of past, present and future. Note: this type doesn't represent the grammatical tenses, but the actual temporal concepts.
== Uses ==
* As the output of the comparison between two times.
* In NLG functions, in order to choose the tense. (Note: this type should be used as the language-indepentent input that identifies the real time frame, and not as the actual tenses, that can vary from language to language due to the peculiarities of their grammars)
== Elements of the enumeration ==
# {{Q|Q192630}}
# {{Q|Q193168}}
# {{Q|Q344}}
== Alternatives ==
* The current name of this type is awful, but I don't know how to call it. [[User:Dv103|Dv103]] ([[User talk:Dv103|talk]]) 13:47, 10 December 2025 (UTC)
*:"Relative time class"? [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 20:36, 10 December 2025 (UTC)
== Comments ==
''For general comments, please reply to the proposer.''
* {{s}} as proposer. [[User:Dv103|Dv103]] ([[User talk:Dv103|talk]]) 13:47, 10 December 2025 (UTC)
:Could you give more detailed examples of where this Type would be used? For your first example, I would use {{Z|16659}}, and for NLG you admit that separate Type(s) would be needed. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 20:38, 10 December 2025 (UTC)
::The main usecase I thought was actually NLG. Take for example {{Z|Z30000}}: it takes in input also the current date to decide the verbal time. I think that it could be useful, insteas of bringing along two dates directly to the language-specific functions, to instead convert this information to a simple past-present-future information. [[User:Dv103|Dv103]] ([[User talk:Dv103|talk]]) 07:44, 11 December 2025 (UTC)
:::Another existing function that could use the proposed Type: {{Z|19514}}
:::(Forgive me for not replying, but I am still of the opinion that this proposal is functionally equivalent to {{Z|16659}}; and so {{neutral}}.) [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 00:52, 18 January 2026 (UTC)
::::The main difference with {{Z|Z16659}} would be that the semantics is completely different. {{Z|Z16659}} indicates the sign of a number, while this type would indicate a time. (It's even not completely obvious if {{Z|Z16662}} should indicate the past or the future) [[User:Dv103|Dv103]] ([[User talk:Dv103|talk]]) 12:47, 18 January 2026 (UTC)
* {{s}} I've needed this to construct sentences from relative dates. To me it's clearly different to Z16659. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 05:14, 11 March 2026 (UTC)
* {{S}} --[[User:Ameisenigel|Ameisenigel]] ([[User talk:Ameisenigel|talk]]) 18:14, 1 September 2026 (UTC)
4ovdhhhvcp9x6nt6kfjpmtmlnj48zzd
307295
307182
2026-09-01T20:27:20Z
YoshiRulz
10156
/* Comments */ Reply
307295
wikitext
text/x-wiki
== Summary ==
This type represents the simple concepts of past, present and future. Note: this type doesn't represent the grammatical tenses, but the actual temporal concepts.
== Uses ==
* As the output of the comparison between two times.
* In NLG functions, in order to choose the tense. (Note: this type should be used as the language-indepentent input that identifies the real time frame, and not as the actual tenses, that can vary from language to language due to the peculiarities of their grammars)
== Elements of the enumeration ==
# {{Q|Q192630}}
# {{Q|Q193168}}
# {{Q|Q344}}
== Alternatives ==
* The current name of this type is awful, but I don't know how to call it. [[User:Dv103|Dv103]] ([[User talk:Dv103|talk]]) 13:47, 10 December 2025 (UTC)
*:"Relative time class"? [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 20:36, 10 December 2025 (UTC)
== Comments ==
''For general comments, please reply to the proposer.''
* {{s}} as proposer. [[User:Dv103|Dv103]] ([[User talk:Dv103|talk]]) 13:47, 10 December 2025 (UTC)
:Could you give more detailed examples of where this Type would be used? For your first example, I would use {{Z|16659}}, and for NLG you admit that separate Type(s) would be needed. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 20:38, 10 December 2025 (UTC)
::The main usecase I thought was actually NLG. Take for example {{Z|Z30000}}: it takes in input also the current date to decide the verbal time. I think that it could be useful, insteas of bringing along two dates directly to the language-specific functions, to instead convert this information to a simple past-present-future information. [[User:Dv103|Dv103]] ([[User talk:Dv103|talk]]) 07:44, 11 December 2025 (UTC)
:::Another existing function that could use the proposed Type: {{Z|19514}}
:::(Forgive me for not replying, but I am still of the opinion that this proposal is functionally equivalent to {{Z|16659}}; and so {{neutral}}.) [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 00:52, 18 January 2026 (UTC)
::::The main difference with {{Z|Z16659}} would be that the semantics is completely different. {{Z|Z16659}} indicates the sign of a number, while this type would indicate a time. (It's even not completely obvious if {{Z|Z16662}} should indicate the past or the future) [[User:Dv103|Dv103]] ([[User talk:Dv103|talk]]) 12:47, 18 January 2026 (UTC)
:::::Negative corresponds to past. Integers are sorted -1, 0, 1, and dates are sorted past, present, future. Calling [[Z35544]](older, newer) returns negative, as it needs to if it's to be used in [[Z27612]]. (Some less persuasive arguments: timelines have past on the left and number lines have negatives on the left; and in archaeology, the oldest ruins are at the lower, more negative, elevations.) [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 20:27, 1 September 2026 (UTC)
* {{s}} I've needed this to construct sentences from relative dates. To me it's clearly different to Z16659. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 05:14, 11 March 2026 (UTC)
* {{S}} --[[User:Ameisenigel|Ameisenigel]] ([[User talk:Ameisenigel|talk]]) 18:14, 1 September 2026 (UTC)
455e36eyk1lw1nceqp5ib1tv0xh6gh8
307296
307295
2026-09-01T20:31:03Z
YoshiRulz
10156
/* Comments */ Oppose
307296
wikitext
text/x-wiki
== Summary ==
This type represents the simple concepts of past, present and future. Note: this type doesn't represent the grammatical tenses, but the actual temporal concepts.
== Uses ==
* As the output of the comparison between two times.
* In NLG functions, in order to choose the tense. (Note: this type should be used as the language-indepentent input that identifies the real time frame, and not as the actual tenses, that can vary from language to language due to the peculiarities of their grammars)
== Elements of the enumeration ==
# {{Q|Q192630}}
# {{Q|Q193168}}
# {{Q|Q344}}
== Alternatives ==
* The current name of this type is awful, but I don't know how to call it. [[User:Dv103|Dv103]] ([[User talk:Dv103|talk]]) 13:47, 10 December 2025 (UTC)
*:"Relative time class"? [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 20:36, 10 December 2025 (UTC)
== Comments ==
''For general comments, please reply to the proposer.''
* {{s}} as proposer. [[User:Dv103|Dv103]] ([[User talk:Dv103|talk]]) 13:47, 10 December 2025 (UTC)
:Could you give more detailed examples of where this Type would be used? For your first example, I would use {{Z|16659}}, and for NLG you admit that separate Type(s) would be needed. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 20:38, 10 December 2025 (UTC)
::The main usecase I thought was actually NLG. Take for example {{Z|Z30000}}: it takes in input also the current date to decide the verbal time. I think that it could be useful, insteas of bringing along two dates directly to the language-specific functions, to instead convert this information to a simple past-present-future information. [[User:Dv103|Dv103]] ([[User talk:Dv103|talk]]) 07:44, 11 December 2025 (UTC)
:::Another existing function that could use the proposed Type: {{Z|19514}}
:::(Forgive me for not replying, but I am still of the opinion that this proposal is functionally equivalent to {{Z|16659}}; <s>and so {{neutral}}</s>.) [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 00:52, 18 January 2026 (UTC)
::::The main difference with {{Z|Z16659}} would be that the semantics is completely different. {{Z|Z16659}} indicates the sign of a number, while this type would indicate a time. (It's even not completely obvious if {{Z|Z16662}} should indicate the past or the future) [[User:Dv103|Dv103]] ([[User talk:Dv103|talk]]) 12:47, 18 January 2026 (UTC)
:::::Negative corresponds to past. Integers are sorted -1, 0, 1, and dates are sorted past, present, future. Calling [[Z35544]](older, newer) returns negative, as it needs to if it's to be used in [[Z27612]]. (Some less persuasive arguments: timelines have past on the left and number lines have negatives on the left; and in archaeology, the oldest ruins are at the lower, more negative, elevations.) [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 20:27, 1 September 2026 (UTC)
::: I am now {{oppose|opposed}} to this Type because it won't be suitable for generalised NLG: some languages need more "resolution" to inflect properly (a near-past tense distinct from past tense), and some won't need it at all. Just pass in the dates like you've done there. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 20:30, 1 September 2026 (UTC)
* {{s}} I've needed this to construct sentences from relative dates. To me it's clearly different to Z16659. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 05:14, 11 March 2026 (UTC)
* {{S}} --[[User:Ameisenigel|Ameisenigel]] ([[User talk:Ameisenigel|talk]]) 18:14, 1 September 2026 (UTC)
o1csbpyp46dqf227iwndtrz6at1bdz1
307299
307296
2026-09-01T22:59:28Z
Carnildo
54460
/* Comments */
307299
wikitext
text/x-wiki
== Summary ==
This type represents the simple concepts of past, present and future. Note: this type doesn't represent the grammatical tenses, but the actual temporal concepts.
== Uses ==
* As the output of the comparison between two times.
* In NLG functions, in order to choose the tense. (Note: this type should be used as the language-indepentent input that identifies the real time frame, and not as the actual tenses, that can vary from language to language due to the peculiarities of their grammars)
== Elements of the enumeration ==
# {{Q|Q192630}}
# {{Q|Q193168}}
# {{Q|Q344}}
== Alternatives ==
* The current name of this type is awful, but I don't know how to call it. [[User:Dv103|Dv103]] ([[User talk:Dv103|talk]]) 13:47, 10 December 2025 (UTC)
*:"Relative time class"? [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 20:36, 10 December 2025 (UTC)
== Comments ==
''For general comments, please reply to the proposer.''
* {{s}} as proposer. [[User:Dv103|Dv103]] ([[User talk:Dv103|talk]]) 13:47, 10 December 2025 (UTC)
:Could you give more detailed examples of where this Type would be used? For your first example, I would use {{Z|16659}}, and for NLG you admit that separate Type(s) would be needed. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 20:38, 10 December 2025 (UTC)
::The main usecase I thought was actually NLG. Take for example {{Z|Z30000}}: it takes in input also the current date to decide the verbal time. I think that it could be useful, insteas of bringing along two dates directly to the language-specific functions, to instead convert this information to a simple past-present-future information. [[User:Dv103|Dv103]] ([[User talk:Dv103|talk]]) 07:44, 11 December 2025 (UTC)
:::Another existing function that could use the proposed Type: {{Z|19514}}
:::(Forgive me for not replying, but I am still of the opinion that this proposal is functionally equivalent to {{Z|16659}}; <s>and so {{neutral}}</s>.) [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 00:52, 18 January 2026 (UTC)
::::The main difference with {{Z|Z16659}} would be that the semantics is completely different. {{Z|Z16659}} indicates the sign of a number, while this type would indicate a time. (It's even not completely obvious if {{Z|Z16662}} should indicate the past or the future) [[User:Dv103|Dv103]] ([[User talk:Dv103|talk]]) 12:47, 18 January 2026 (UTC)
:::::Negative corresponds to past. Integers are sorted -1, 0, 1, and dates are sorted past, present, future. Calling [[Z35544]](older, newer) returns negative, as it needs to if it's to be used in [[Z27612]]. (Some less persuasive arguments: timelines have past on the left and number lines have negatives on the left; and in archaeology, the oldest ruins are at the lower, more negative, elevations.) [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 20:27, 1 September 2026 (UTC)
::: I am now {{oppose|opposed}} to this Type because it won't be suitable for generalised NLG: some languages need more "resolution" to inflect properly (a near-past tense distinct from past tense), and some won't need it at all. Just pass in the dates like you've done there. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 20:30, 1 September 2026 (UTC)
* {{s}} I've needed this to construct sentences from relative dates. To me it's clearly different to Z16659. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 05:14, 11 March 2026 (UTC)
* {{S}} --[[User:Ameisenigel|Ameisenigel]] ([[User talk:Ameisenigel|talk]]) 18:14, 1 September 2026 (UTC)
* {{o}} This might be useful for some things, but NLG isn't one of them. In Spanish, for example, a value of "past" narrows your choices down to just nine combinations of mood and aspect, of which two are both quite common in encyclopedia articles. You'll need to provide more information to correctly select between the preterite (roughly: actions that have been completed) and the imperfect (roughly: actions that have not been completed). --[[User:Carnildo|Carnildo]] ([[User talk:Carnildo|talk]]) 22:59, 1 September 2026 (UTC)
b0vi8unufztmvmkiukg6eabfb3xvak5
Z31144
0
72839
307144
242642
2026-09-01T16:17:13Z
YoshiRulz
10156
Update to reflect change to return type
307144
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z31144"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z24453",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z873",
"Z873K1": "Z40815",
"Z873K2": {
"Z1K1": "Z7",
"Z7K1": "Z24453",
"Z24453K1": "🏳️🌈🇦🇺👈🏾👆"
}
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z889",
"Z889K2": [
"Z6",
"🏳️🌈",
"🇦🇺",
"👈🏾",
"👆"
],
"Z889K3": "Z866"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "\"🏳️🌈🇦🇺👈🏾👆\"=\u003E[\"🏳️🌈\",\"🇦🇺\",\"👈🏾\",\"👆\"]"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
fbqvxa5cksr538koo3n48xnfq48dnae
Z31145
0
72840
307126
242658
2026-09-01T15:31:02Z
YoshiRulz
10156
Removed Z31149 from the approved list of implementations
307126
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z31145"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6",
"Z17K2": "Z31145K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "string"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20",
"Z31146",
"Z31150"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z31145"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "first grapheme cluster of String"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
69icwmi3hlk5lm4j4fqb2rz1k0yhpxt
307127
307126
2026-09-01T15:31:06Z
YoshiRulz
10156
Removed Z31146 and Z31150 from the approved list of test cases
307127
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z31145"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6",
"Z17K2": "Z31145K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "string"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z31145"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "first grapheme cluster of String"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
97ugdewv2washkonni50we0l1tjup6f
307128
307127
2026-09-01T15:31:36Z
YoshiRulz
10156
Change return type to Grapheme
307128
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z31145"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6",
"Z17K2": "Z31145K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "string"
}
]
}
}
],
"Z8K2": "Z40783",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z31145"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "first grapheme cluster of String"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
7mzxoq01epa9lfd2e59fspx1id09j7s
307131
307128
2026-09-01T15:34:31Z
YoshiRulz
10156
Added Z31146 and Z31150 to the approved list of test cases
307131
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z31145"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6",
"Z17K2": "Z31145K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "string"
}
]
}
}
],
"Z8K2": "Z40783",
"Z8K3": [
"Z20",
"Z31146",
"Z31150"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z31145"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "first grapheme cluster of String"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
qr1hk2y9nn9fqx7rp2xug5mt4ocmjtx
307132
307131
2026-09-01T15:35:10Z
YoshiRulz
10156
Added Z31149 to the approved list of implementations
307132
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z31145"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6",
"Z17K2": "Z31145K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "string"
}
]
}
}
],
"Z8K2": "Z40783",
"Z8K3": [
"Z20",
"Z31146",
"Z31150"
],
"Z8K4": [
"Z14",
"Z31149"
],
"Z8K5": "Z31145"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "first grapheme cluster of String"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
p5rmyw7ebasfdra6fxvqp3pxrkggysb
307152
307132
2026-09-01T16:29:52Z
YoshiRulz
10156
Added Z31171 to the approved list of implementations
307152
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z31145"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6",
"Z17K2": "Z31145K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "string"
}
]
}
}
],
"Z8K2": "Z40783",
"Z8K3": [
"Z20",
"Z31146",
"Z31150"
],
"Z8K4": [
"Z14",
"Z31149",
"Z31171"
],
"Z8K5": "Z31145"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "first grapheme cluster of String"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
gx9ki2e5bebxxetbj900qtwx0ki9gwg
Z31146
0
72841
307129
242644
2026-09-01T15:34:02Z
YoshiRulz
10156
Update to reflect change to return type
307129
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z31146"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z31145",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z40815",
"Z40815K1": {
"Z1K1": "Z7",
"Z7K1": "Z31145",
"Z31145K1": "🏳️🌈🇦🇺👈🏾👆"
}
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z866",
"Z866K2": "🏳️🌈"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "\"🏳️🌈🇦🇺👈🏾👆\".graphemes[0] =\u003E \"🏳️🌈\""
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
jg3zvapzsy51ppndnuz0ya4toxqfv59
Z31147
0
72842
307133
242663
2026-09-01T15:36:25Z
YoshiRulz
10156
Update to reflect changed return type of Z31145
307133
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z31147"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z24453",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z802",
"Z802K1": {
"Z1K1": "Z7",
"Z7K1": "Z10008",
"Z10008K1": {
"Z1K1": "Z18",
"Z18K1": "Z24453K1"
}
},
"Z802K2": [
"Z6"
],
"Z802K3": {
"Z1K1": "Z7",
"Z7K1": "Z810",
"Z810K1": {
"Z1K1": "Z7",
"Z7K1": "Z40815",
"Z40815K1": {
"Z1K1": "Z7",
"Z7K1": "Z31145",
"Z31145K1": {
"Z1K1": "Z18",
"Z18K1": "Z24453K1"
}
}
},
"Z810K2": {
"Z1K1": "Z7",
"Z7K1": "Z24453",
"Z24453K1": {
"Z1K1": "Z7",
"Z7K1": "Z14636",
"Z14636K1": {
"Z1K1": "Z7",
"Z7K1": "Z10384",
"Z10384K1": {
"Z1K1": "Z18",
"Z18K1": "Z24453K1"
}
},
"Z14636K2": {
"Z1K1": "Z7",
"Z7K1": "Z11040",
"Z11040K1": {
"Z1K1": "Z7",
"Z7K1": "Z40815",
"Z40815K1": {
"Z1K1": "Z7",
"Z7K1": "Z31145",
"Z31145K1": {
"Z1K1": "Z18",
"Z18K1": "Z24453K1"
}
}
}
}
}
}
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "String to grapheme list, recursive composition"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
90jq8y2zo6qyu82uyoviykrax51940g
307150
307133
2026-09-01T16:29:05Z
YoshiRulz
10156
Update to reflect change to this function's return type
307150
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z31147"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z24453",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z802",
"Z802K1": {
"Z1K1": "Z7",
"Z7K1": "Z10008",
"Z10008K1": {
"Z1K1": "Z18",
"Z18K1": "Z24453K1"
}
},
"Z802K2": [
"Z40783"
],
"Z802K3": {
"Z1K1": "Z7",
"Z7K1": "Z810",
"Z810K1": {
"Z1K1": "Z7",
"Z7K1": "Z31145",
"Z31145K1": {
"Z1K1": "Z18",
"Z18K1": "Z24453K1"
}
},
"Z810K2": {
"Z1K1": "Z7",
"Z7K1": "Z24453",
"Z24453K1": {
"Z1K1": "Z7",
"Z7K1": "Z14636",
"Z14636K1": {
"Z1K1": "Z7",
"Z7K1": "Z10384",
"Z10384K1": {
"Z1K1": "Z18",
"Z18K1": "Z24453K1"
}
},
"Z14636K2": {
"Z1K1": "Z7",
"Z7K1": "Z40819",
"Z40819K1": {
"Z1K1": "Z7",
"Z7K1": "Z31145",
"Z31145K1": {
"Z1K1": "Z18",
"Z18K1": "Z24453K1"
}
}
}
}
}
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "String to grapheme list, recursive composition"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
p138qb4bv2rezc5bqbnqy1o1plajqro
Z31150
0
72845
307130
242655
2026-09-01T15:34:25Z
YoshiRulz
10156
Update to reflect change to return type
307130
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z31150"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z31145",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z40815",
"Z40815K1": {
"Z1K1": "Z7",
"Z7K1": "Z31145",
"Z31145K1": {
"Z1K1": "Z7",
"Z7K1": "Z22693",
"Z22693K1": [
"Z86",
{
"Z1K1": "Z86",
"Z86K1": {
"Z1K1": "Z13518",
"Z13518K1": "4363"
}
},
{
"Z1K1": "Z86",
"Z86K1": {
"Z1K1": "Z13518",
"Z13518K1": "4449"
}
},
{
"Z1K1": "Z86",
"Z86K1": {
"Z1K1": "Z13518",
"Z13518K1": "4523"
}
},
{
"Z1K1": "Z86",
"Z86K1": {
"Z1K1": "Z13518",
"Z13518K1": "4354"
}
},
{
"Z1K1": "Z86",
"Z86K1": {
"Z1K1": "Z13518",
"Z13518K1": "4455"
}
},
{
"Z1K1": "Z86",
"Z86K1": {
"Z1K1": "Z13518",
"Z13518K1": "4540"
}
}
]
}
}
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z866",
"Z866K2": "안"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "\"안녕\".graphemes[0] =\u003E \"안\""
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
r1d6zutunr8lbt3furchicaupjq1b8d
Z31151
0
72846
307145
242659
2026-09-01T16:17:16Z
YoshiRulz
10156
Update to reflect change to return type
307145
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z31151"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z24453",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z873",
"Z873K1": "Z40815",
"Z873K2": {
"Z1K1": "Z7",
"Z7K1": "Z24453",
"Z24453K1": {
"Z1K1": "Z7",
"Z7K1": "Z22693",
"Z22693K1": [
"Z86",
{
"Z1K1": "Z86",
"Z86K1": {
"Z1K1": "Z13518",
"Z13518K1": "4363"
}
},
{
"Z1K1": "Z86",
"Z86K1": {
"Z1K1": "Z13518",
"Z13518K1": "4449"
}
},
{
"Z1K1": "Z86",
"Z86K1": {
"Z1K1": "Z13518",
"Z13518K1": "4523"
}
},
{
"Z1K1": "Z86",
"Z86K1": {
"Z1K1": "Z13518",
"Z13518K1": "4354"
}
},
{
"Z1K1": "Z86",
"Z86K1": {
"Z1K1": "Z13518",
"Z13518K1": "4455"
}
},
{
"Z1K1": "Z86",
"Z86K1": {
"Z1K1": "Z13518",
"Z13518K1": "4540"
}
}
]
}
}
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z889",
"Z889K2": [
"Z6",
"안",
"녕"
],
"Z889K3": "Z866"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "\"안녕\" =\u003E [ \"안\", \"녕\" ]"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
sydgp97im0towl8sg8xte5a8tju62e0
Z31159
0
72854
307154
242685
2026-09-01T16:32:27Z
YoshiRulz
10156
Update to reflect changed return type of Z24453
307154
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z31159"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z29094",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z14779",
"Z14779K1": "Z30414",
"Z14779K2": {
"Z1K1": "Z7",
"Z7K1": "Z873",
"Z873K1": "Z40815",
"Z873K2": {
"Z1K1": "Z7",
"Z7K1": "Z24453",
"Z24453K1": {
"Z1K1": "Z18",
"Z18K1": "Z29094K1"
}
}
},
"Z14779K3": {
"Z1K1": "Z7",
"Z7K1": "Z873",
"Z873K1": "Z40815",
"Z873K2": {
"Z1K1": "Z7",
"Z7K1": "Z24453",
"Z24453K1": {
"Z1K1": "Z18",
"Z18K1": "Z29094K2"
}
}
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "zip two Strings, composition"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
ig302zy3zxlmphz49a47tv0sj345l1b
Template:Main page/News/nl
10
75151
307250
304863
2026-09-01T19:44:49Z
HanV
6833
Created page with "$1: Wikifuncties Object Referentie"
307250
wikitext
text/x-wiki
<noinclude><languages /></noinclude>
; Bijeenkomst vrijwilligers
* De volgende bijeenkomst zal plaatsvinden op <bdi lang="en" dir="ltr">[https://zonestamp.toolforge.org/1788802200 17:30 UTC on 2026-09-07]</bdi> op <bdi lang="en" dir="ltr">Google Meet</bdi> op <bdi lang="en" dir="ltr">[https://meet.google.com/xuy-njxh-rkw meet.google.com/xuy-njxh-rkw]</bdi>.
* Verslag [[:c:File:Abstract Wikipedia Volunteer Corner 2026-07.webm|meest recente "Volunteer's Corner"]]
; Recente statusupdates over Wikifuncties
<!--Keep this to the most recent 5 entries-->
* {{Status updates|2026-08-28}}: Wikifuncties Object Referentie
* <span lang="en" dir="ltr" class="mw-content-ltr">{{Status updates|2026-08-20}}: Mayors and the North</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">{{Status updates|2026-08-13}}: Shoutout to 99of9!</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">{{Status updates|2026-08-05}}: Congratulations Jules*: An apple is a fruit</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">{{Status updates|2026-07-29}}: Abstract Wikipedia at Wikimania</span>
[[Special:MyLanguage/Wikifunctions:Status updates|<span class="mw-ui-button mw-ui-constructive mw-ui-small">Meer nieuws</span>]]
3kel7ffh1e5wfrjcempq3zc86fyl49z
307252
307250
2026-09-01T19:45:07Z
HanV
6833
Created page with "$1: Burgemeesters en het Noorden"
307252
wikitext
text/x-wiki
<noinclude><languages /></noinclude>
; Bijeenkomst vrijwilligers
* De volgende bijeenkomst zal plaatsvinden op <bdi lang="en" dir="ltr">[https://zonestamp.toolforge.org/1788802200 17:30 UTC on 2026-09-07]</bdi> op <bdi lang="en" dir="ltr">Google Meet</bdi> op <bdi lang="en" dir="ltr">[https://meet.google.com/xuy-njxh-rkw meet.google.com/xuy-njxh-rkw]</bdi>.
* Verslag [[:c:File:Abstract Wikipedia Volunteer Corner 2026-07.webm|meest recente "Volunteer's Corner"]]
; Recente statusupdates over Wikifuncties
<!--Keep this to the most recent 5 entries-->
* {{Status updates|2026-08-28}}: Wikifuncties Object Referentie
* {{Status updates|2026-08-20}}: Burgemeesters en het Noorden
* <span lang="en" dir="ltr" class="mw-content-ltr">{{Status updates|2026-08-13}}: Shoutout to 99of9!</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">{{Status updates|2026-08-05}}: Congratulations Jules*: An apple is a fruit</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">{{Status updates|2026-07-29}}: Abstract Wikipedia at Wikimania</span>
[[Special:MyLanguage/Wikifunctions:Status updates|<span class="mw-ui-button mw-ui-constructive mw-ui-small">Meer nieuws</span>]]
hjbs06o39eyg7b0gndguyvl6b5r3f1k
307255
307252
2026-09-01T19:45:46Z
HanV
6833
Created page with "$1: Shoutout naar 99of9!"
307255
wikitext
text/x-wiki
<noinclude><languages /></noinclude>
; Bijeenkomst vrijwilligers
* De volgende bijeenkomst zal plaatsvinden op <bdi lang="en" dir="ltr">[https://zonestamp.toolforge.org/1788802200 17:30 UTC on 2026-09-07]</bdi> op <bdi lang="en" dir="ltr">Google Meet</bdi> op <bdi lang="en" dir="ltr">[https://meet.google.com/xuy-njxh-rkw meet.google.com/xuy-njxh-rkw]</bdi>.
* Verslag [[:c:File:Abstract Wikipedia Volunteer Corner 2026-07.webm|meest recente "Volunteer's Corner"]]
; Recente statusupdates over Wikifuncties
<!--Keep this to the most recent 5 entries-->
* {{Status updates|2026-08-28}}: Wikifuncties Object Referentie
* {{Status updates|2026-08-20}}: Burgemeesters en het Noorden
* {{Status updates|2026-08-13}}: Shoutout naar 99of9!
* {{Status updates|2026-08-05}}: Gefeliciteerd Jules*: Een appel is een vrucht
* <span lang="en" dir="ltr" class="mw-content-ltr">{{Status updates|2026-07-29}}: Abstract Wikipedia at Wikimania</span>
[[Special:MyLanguage/Wikifunctions:Status updates|<span class="mw-ui-button mw-ui-constructive mw-ui-small">Meer nieuws</span>]]
9eaxrd3ed2tyua9aa8xylwq9haf02hg
307257
307255
2026-09-01T19:45:47Z
HanV
6833
Created page with "$1: Abstract Wikipedia op Wikimania"
307257
wikitext
text/x-wiki
<noinclude><languages /></noinclude>
; Bijeenkomst vrijwilligers
* De volgende bijeenkomst zal plaatsvinden op <bdi lang="en" dir="ltr">[https://zonestamp.toolforge.org/1788802200 17:30 UTC on 2026-09-07]</bdi> op <bdi lang="en" dir="ltr">Google Meet</bdi> op <bdi lang="en" dir="ltr">[https://meet.google.com/xuy-njxh-rkw meet.google.com/xuy-njxh-rkw]</bdi>.
* Verslag [[:c:File:Abstract Wikipedia Volunteer Corner 2026-07.webm|meest recente "Volunteer's Corner"]]
; Recente statusupdates over Wikifuncties
<!--Keep this to the most recent 5 entries-->
* {{Status updates|2026-08-28}}: Wikifuncties Object Referentie
* {{Status updates|2026-08-20}}: Burgemeesters en het Noorden
* {{Status updates|2026-08-13}}: Shoutout naar 99of9!
* {{Status updates|2026-08-05}}: Gefeliciteerd Jules*: Een appel is een vrucht
* {{Status updates|2026-07-29}}: Abstract Wikipedia op Wikimania
[[Special:MyLanguage/Wikifunctions:Status updates|<span class="mw-ui-button mw-ui-constructive mw-ui-small">Meer nieuws</span>]]
44ljku5i4mx82twnssfydpvnhxf66mn
Wikifunctions:Excel functions/nl
4
75611
307274
289071
2026-09-01T19:48:08Z
HanV
6833
Created page with "Geeft de kans terug dat waarden in een bereik tussen twee limieten liggen"
307274
wikitext
text/x-wiki
<languages/>
{{w|Microsoft Excel}} functies omvatten de volgende categorieën.
Deze pagina vermeldt Excel-functies als ze een bijbehorende [[Special:MyLanguage/Wikifunctions:Function model|WikiFuncties functie]] hebben.
<span id="Add-in_and_automation"></span>
== Interne en Automatisering ==
{| class="wikitable collapsible sortable"
|+Lijst van interne en automatiseringsfuncties van Excel
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|CALL
| Aanroep van een procedure in een dynamische link-bibliotheek of codebron || ||
|-
!scope="row"|EUROCONVERT
| Zet een getal om euro's, een getal van euro's omzetten naar een munt van een eurolid, of een getal van de ene munt van een eurolid naar een andere door de euro als tussenpersoon te gebruiken (triangulatie). || ||
|-
!scope="row"|REGISTER.ID
| Geeft de register-ID terug van de gespecificeerde dynamische link-bibliotheek (DLL) of codebron die eerder is geregistreerd || ||
|}
<span id="Compatibility"></span>
== Compatibiliteit ==
{| class="wikitable collapsible sortable"
|+Lijst van compatibiliteit Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|BETADIST
| Geeft de bèta-cumulatieve verdelingsfunctie terug || ||
|-
!scope="row"|BETAINV
| Geeft de inverse van de cumulatieve verdelingsfunctie terug voor een gespecificeerde bètaverdeling || ||
|-
!scope="row"|BINOMDIST
| Geeft de binomiale verdelingskans van de individuele term terug || ||
|-
!scope="row"|CEILING
| Rond een getal af naar het dichtstbijzijnde geheel getal of naar het dichtstbijzijnde veelvoud van significantie || ||
|-
!scope="row"|CHIDIST
| Geeft de eenzijdige kans van de chi-kwadraatverdeling terug || ||
|-
!scope="row"|CHIINV
| Geeft de inverse van de eenzijdige kans van de chi-kwadraatverdeling terug || ||
|-
!scope="row"|CHITEST
| Geeft de test voor onafhankelijkheid terug || ||
|-
!scope="row"|CONFIDENCE
| Geeft het betrouwbaarheidsinterval terug voor een populatiegemiddelde || ||
|-
!scope="row"|COVAR
| Geeft covariantie terug, het gemiddelde van de producten van gepaarde afwijkingen || ||
|-
!scope="row"|CRITBINOM
| Geeft de kleinste waarde terug waarvoor de cumulatieve binomiale verdeling kleiner is dan of gelijk aan een criteriumwaarde || ||
|-
!scope="row"|EXPONDIST
| Geeft de exponentiële verdeling terug || ||
|-
!scope="row"|FDIST
| Geeft de F kansverdeling terug || ||
|-
!scope="row"|FINV
| Geeft de inverse van de F-kansverdeling terug || ||
|-
!scope="row"|FLOOR
| Rondt een getal naar beneden af, richting nul || {{Z+|Z20032}}
{{Z+|Z20841}}
|
|-
!scope="row"|FTEST
| Geeft het resultaat van een F-test terug || ||
|-
!scope="row"|GAMMADIST
| Geeft de gamma-verdeling terug || ||
|-
!scope="row"|GAMMAINV
| Geeft de inverse van de cumulatieve gammaverdeling terug || ||
|-
!scope="row"|HYPGEOMDIST
| Geeft de hypergeometrische verdeling terug || ||
|-
!scope="row"|LOGINV
| Geeft de inverse van de lognormale cumulatieve verdeling terug || ||
|-
!scope="row"|LOGNORMDIST
| Geeft de cumulatieve lognormale verdeling terug || ||
|-
!scope="row"|MODE
| Geeft de meest voorkomende waarde in een dataset terug || {{Z+|Z21851}} ||
|-
!scope="row"|NEGBINOMDIST
| Geeft de negatieve binomiale verdeling terug || ||
|-
!scope="row"|NORMDIST
| Geeft de normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORM.INV
| Geeft de inverse van de normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORMSDIST
| Geeft de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORMSINV
| Geeft de inverse van de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|PERCENTILE
| Geeft het k-de percentiel van waarden in een bereik terug || ||
|-
!scope="row"|PERCENTRANK
| Geeft de procentuele rang van een waarde in een dataset terug || ||
|-
!scope="row"|POISSON
| Geeft de Poisson-verdeling terug || ||
|-
!scope="row"|QUARTILE
| Geeft het kwartiel van een dataset terug || ||
|-
!scope="row"|RANK
| Geeft de rangorde van een getal in een lijst van getallen terug || ||
|-
!scope="row"|STDEV
| Schatting van standaarddeviatie op basis van een steekproef || ||
|-
!scope="row"|STDEVP
| Berekent de standaarddeviatie op basis van de gehele populatie || ||
|-
!scope="row"|TDIST
| Geeft de Student's t-verdeling terug || ||
|-
!scope="row"|TINV
| Geeft de inverse van de Student's t-verdeling terug || ||
|-
!scope="row"|TTEST
| Geeft de kans terug die hoort bij de Student's t-test || ||
|-
!scope="row"|VAR
| Schatting van de variantie op basis van een steekproef || ||
|-
!scope="row"|VARP
| Berekent de variantie op basis van de gehele populatie || ||
|-
!scope="row"|WEIBULL
| Berekent de variantie op basis van de gehele populatie, inclusief getallen, tekst en logische waarden || ||
|-
!scope="row"|ZTEST
| Geeft de eenzijdige kanswaarde van een z-test terug || ||
|}
== Cube ==
{| class="wikitable collapsible sortable"
|+Lijst van Cube Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|CUBEKPIMEMBER
| Geeft een naam, eigenschap en maatstaf (Key Performance Indicator) (KPI) terug en toont de naam en eigenschap in de cel. Een KPI is een kwantificeerbare maatstaf, zoals de maandelijkse brutowinst of het kwartaalomzet van medewerkers, die wordt gebruikt om de prestaties van een organisatie te monitoren. || ||
|-
!scope="row"|CUBEMEMBER
| Geeft een lid of tupel terug in een cube-hiërarchie. Gebruik om te valideren dat het lid of de tupel in de cube bestaat. || ||
|-
!scope="row"|CUBEMEMBERPROPERTY
| Geeft de waarde van een lideigenschap in de cube terug. Gebruik om te valideren dat er een lidnaam in de cube bestaat en om de gespecificeerde eigenschap voor dit lid terug te geven. || ||
|-
!scope="row"|CUBERANKEDMEMBER
| Geeft het n-de, of gerangschikte, lid in een set terug. Gebruik het om één of meer elementen in een set op te halen, zoals de beste verkoper of de top 10 studenten. || ||
|-
!scope="row"|CUBESET
| Definieert een berekende set van leden of tupels door een set-expressie naar de cube op de server te sturen, die de set aanmaakt en die set vervolgens teruggeeft aan Microsoft Office Excel. || ||
|-
!scope="row"|CUBESETCOUNT
| Geeft het aantal items in een set terug. || ||
|-
!scope="row"|CUBEVALUE
| Geeft een geaggregeerde waarde terug van een cube. || ||
|}
== Database ==
{| class="wikitable collapsible sortable"
|+Lijst van Excel-databasefuncties
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|DAVERAGE
| Geeft het gemiddelde van geselecteerde database-items terug || ||
|-
!scope="row"|DCOUNT
| Telt de cellen die getallen bevatten in een database || ||
|-
!scope="row"|DCOUNTA
| Telt niet-lege cellen in een database || ||
|-
!scope="row"|DGET
| Haalt uit een database een enkel record dat voldoet aan de gespecificeerde criteria || ||
|-
!scope="row"|DMAX
| Geeft de maximale waarde terug uit geselecteerde database-gegevens || ||
|-
!scope="row"|DMIN
| Geeft de minimale waarde terug uit geselecteerde database-gegevens || ||
|-
!scope="row"|DPRODUCT
| Vermenigvuldigt de waarden in een bepaald veld van records die overeenkomen met de criteria in een database || ||
|-
!scope="row"|DSTDEV
| De standaardafwijking wordt geschat op basis van een steekproef van geselecteerde database-gegevens || ||
|-
!scope="row"|DSTDEVP
| Berekent de standaardafwijking op basis van de gehele populatie van geselecteerde database-gegevens || ||
|-
!scope="row"|DSUM
| Voegt de nummers toe in de veldkolom van database-gegevens die overeenkomen met de criteria || ||
|-
!scope="row"|DVAR
| Schat de variantie op basis van een steekproef uit geselecteerde database-gegevens || ||
|-
!scope="row"|DVARP
| Berekent variantie op basis van de gehele populatie van geselecteerde database-gegevens || ||
|}
<span id="Date_and_time"></span>
== Datum en tijd ==
{| class="wikitable collapsible sortable"
|+Lijst van datum en tijd Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|DATE
| Geeft het serienummer van een bepaalde datum terug || ||
|-
!scope="row"|DATEDIF
| Berekent het aantal dagen, maanden of jaren tussen twee data. Deze functie is nuttig in formules waarbij u een leeftijd moet berekenen. || ||
|-
!scope="row"|DATEVALUE
| Zet een datum in de vorm van tekst om in een serienummer || ||
|-
!scope="row"|DAY
| Zet een serienummer om in een dag van de maand || ||
|-
!scope="row"|DAYS
| Geeft het aantal dagen tussen twee datums terug || ||
|-
!scope="row"|DAYS360
| Berekent het aantal dagen tussen twee datums op basis van een jaar van 360-dagen || ||
|-
!scope="row"|EDATE
| Geeft het serienummer van de datum terug, dat het aangegeven aantal maanden vóór of na de startdatum is || ||
|-
!scope="row"|EOMONTH
| Geeft het serienummer van de laatste dag van de maand vóór of na een bepaald aantal maanden || ||
|-
!scope="row"|HOUR
| Zet een serienummer om in een uur || ||
|-
!scope="row"|ISOWEEKNUM
| Geeft het nummer van het ISO-weeknummer van het jaar terug voor een bepaalde datum || ||
|-
!scope="row"|MINUTE
| Zet een serienummer om in een minuut || ||
|-
!scope="row"|MONTH
| Zet een serienummer om in een maand || ||
|-
!scope="row"|NETWORKDAYS
| Geeft het aantal hele werkdagen tussen twee datums terug || ||
|-
!scope="row"|NETWORKDAYS.INTL
| Geeft het aantal hele werkdagen tussen twee datums terug met behulp van parameters om aan te geven welke en hoeveel dagen weekenddagen zijn || ||
|-
!scope="row"|NOW
| Geeft het serienummer van de huidige datum en tijd terug || ||
|-
!scope="row"|SECOND
| Zet een serienummer om in een seconde || ||
|-
!scope="row"|TIME
| Geeft het serienummer van een bepaald tijdstip terug || ||
|-
!scope="row"|TIMEVALUE
| Zet een tijd in de vorm van tekst om in een serienummer || ||
|-
!scope="row"|TODAY
| Geeft het serienummer van de datum van vandaag terug. || ||
|-
!scope="row"|WEEKDAY
| Zet een serienummer om in een dag van de week || {{Z+|Z17540}} || Heeft Dag, Maand en Jaar nodig in plaats van een serienummer
|-
!scope="row"|WEEKNUM
| Zet een serienummer om in een nummer dat numeriek aangeeft waar de week ligt met een jaar || ||
|-
!scope="row"|WORKDAY
| Geeft het serienummer van de datum voor of na een bepaald aantal werkdagen terug. || ||
|-
!scope="row"|WORKDAY.INTL
| Geeft het serienummer van de datum voor of na een bepaald aantal werkdagen terug met behulp van parameters die aangeven welke en hoeveel dagen weekenddagen zijn || ||
|-
!scope="row"|YEAR
| Zet een serienummer om in een jaar || ||
|-
!scope="row"|YEARFRAC
| Geeft het jaardeel terug dat staat voor het aantal hele dagen tussen 'start_date' en 'end_date' || ||
|}
<span id="Engineering"></span>
== Technisch ==
{| class="wikitable collapsible sortable"
|+Lijst van technische Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|BESSELI
| Geeft de aangepaste Besselfunctie In(x) terug || ||
|-
!scope="row"|BESSELJ
| Geeft de Besselfunctie Jn(x) terug || ||
|-
!scope="row"|BESSELK
| Geeft de aangepaste Besselfunctie Kn(x) terug || ||
|-
!scope="row"|BESSELY
| Geeft de Besselfunctie Yn(x) terug || ||
|-
!scope="row"|BIN2DEC
| Zet een binair getal om in een decimaal getal || ||
|-
!scope="row"|BIN2HEX
| Zet een binair getal om in een hexadecimaal getal || ||
|-
!scope="row"|BIN2OCT
| Zet een binair getal om in een octaal nummer || ||
|-
!scope="row"|BITAND
| Geeft een 'Bitgewijs And' van twee getallen terug || ||
|-
!scope="row"|BITLSHIFT
| Geeft een getal terug dat met shift_amount bits naar links is verschoven || ||
|-
!scope="row"|BITOR
| Geeft een 'Bitgewijs OR' van 2 getallen terug || ||
|-
!scope="row"|BITRSHIFT
| Geeft een getal terug dat met shift_amount bits naar rechts is verschoven || ||
|-
!scope="row"|BITXOR
| Geeft een bitsgewijs 'Exclusieve OR' van twee getallen terug || ||
|-
!scope="row"|COMPLEX
| Zet reële en imaginaire coëfficiënten om in een complex getal || ||
|-
!scope="row"|CONVERT
| Zet een getal om van het ene meetstelsel naar het andere. || ||
|-
!scope="row"|DEC2BIN
| Zet een decimaal getal om in een binair getal || ||
|-
!scope="row"|DEC2HEX
| Zet een decimaal getal om in een hexadecimaal getal || ||
|-
!scope="row"|DEC2OCT
| Zet een decimaal getal om in een octaal getal || ||
|-
!scope="row"|DELTA
| Test of twee waarden gelijk zijn || ||
|-
!scope="row"|ERF
| Geeft de foutfunctie terug || ||
|-
!scope="row"|ERF.PRECISE
| Geeft de foutfunctie terug || ||
|-
!scope="row"|ERFC
| Geeft de complementaire foutfunctie terug || ||
|-
!scope="row"|ERFC.PRECISE
| Geeft de complementaire functie ERF terug geïntegreerd tussen x en oneindig || ||
|-
!scope="row"|GESTEP
| Test of een getal groter is dan een drempelwaarde || ||
|-
!scope="row"|HEX2BIN
| Zet een hexadecimaal getal om in een binair getal || ||
|-
!scope="row"|HEX2DEC
| Zet een hexadecimaal getal om in een decimaal getal || ||
|-
!scope="row"|HEX2OCT
| Zet een hexadecimaal getal om in een octaal getal || ||
|-
!scope="row"|IMABS
| Geeft de absolute waarde (modulus) van een complex getal terug || ||
|-
!scope="row"|IMAGINARY
| Geeft de imaginaire coëfficiënt van een complex getal terug || ||
|-
!scope="row"|IMARGUMENT
| Geeft het argument theta terug, een hoek uitgedrukt in radialen || ||
|-
!scope="row"|IMCONJUGATE
| Geeft het complex geconjugeerde van een complex getal terug || ||
|-
!scope="row"|IMCOS
| Geeft de cosinus van een complex getal terug || ||
|-
!scope="row"|IMCOSH
| Geeft de hyperbolische cosinus van een complex getal terug || ||
|-
!scope="row"|IMCOT
| Geeft de cotangens van een complex getal terug || ||
|-
!scope="row"|IMCSC
| Geeft de cosecans van een complex getal terug || ||
|-
!scope="row"|IMCSCH
| Geeft de hyperbolische cosecans van een complex getal terug || ||
|-
!scope="row"|IMDIV
| Geeft het quotiënt van twee complexe getallen terug || ||
|-
!scope="row"|IMEXP
| Geeft de exponentiële van een complex getal terug || ||
|-
!scope="row"|IMLN
| Geeft het natuurlijke logaritme van een complex getal terug || ||
|-
!scope="row"|IMLOG10
| Geeft de logaritme van basis-10 van een complex getal terug || ||
|-
!scope="row"|IMLOG2
| Geeft de logaritme van basis-2 van een complex getal terug || ||
|-
!scope="row"|IMPOWER
| Geeft een complex getal terug dat tot een geheel getal macht is verhoogd || ||
|-
!scope="row"|IMPRODUCT
| Geeft het product van complexe getallen terug || ||
|-
!scope="row"|IMREAL
| Geeft de reële coëfficiënt van een complex getal terug || ||
|-
!scope="row"|IMSEC
| Geeft de secans van een complex getal terug || ||
|-
!scope="row"|IMSECH
| Geeft de hyperbolische secans van een complex getal terug || ||
|-
!scope="row"|IMSIN
| Geeft de sinus van een complex getal terug || ||
|-
!scope="row"|IMSINH
| Geeft de hyperbolische sinus van een complex getal terug || ||
|-
!scope="row"|IMSQRT
| Geeft de wortel van een complex getal terug || ||
|-
!scope="row"|IMSUB
| Geeft het verschil terug tussen twee complexe getallen || ||
|-
!scope="row"|IMSUM
| Geeft de som van complexe getallen terug || ||
|-
!scope="row"|IMTAN
| Geeft de tangens van een complex getal terug || ||
|-
!scope="row"|OCT2BIN
| Zet een octaal getal om in een binair getal || ||
|-
!scope="row"|OCT2DEC
| Zet een octaal getal om in een decimaal getal || ||
|-
!scope="row"|OCT2HEX
| Zet een octaal getal om in een hexadecimaal getal || ||
|}
<span id="Financial"></span>
== Financieel ==
{| class="wikitable collapsible sortable"
|+Lijst van financiële Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|ACCRINT
| Retourneert de opgebouwde rente voor een zekerheid dat periodieke rente betaalt || ||
|-
!scope="row"|ACCRINTM
| Geeft de opgebouwde rente terug voor een zekerheid dat rente betaalt op een vervaldatum || ||
|-
!scope="row"|AMORDEGRC
| Geeft de afschrijving voor elke boekhoudperiode terug met behulp van een afschrijvingscoëfficiënt || ||
|-
!scope="row"|AMORLINC
| Geeft de afschrijving voor elke boekhoudperiode terug || ||
|-
!scope="row"|COUPDAYBS
| Geeft het aantal dagen terug vanaf het begin van de couponperiode tot de afwikkelingsdatum || ||
|-
!scope="row"|COUPDAYS
| Geeft het aantal dagen in de couponperiode terug waarin de afwikkelingsdatum is opgenomen || ||
|-
!scope="row"|COUPDAYSNC
| Geeft het aantal dagen terug van de afwikkelingsdatum tot de volgende coupondatum || ||
|-
!scope="row"|COUPNCD
| Geeft de volgende coupondatum na de afwikkelingsdatum terug || ||
|-
!scope="row"|COUPNUM
| Geeft het aantal coupons terug dat tussen de afwikkelingsdatum en de vervaldatum moet worden betaald || ||
|-
!scope="row"|COUPPCD
| Geeft de vorige coupondatum vóór de afwikkelingsdatum terug || ||
|-
!scope="row"|CUMIPMT
| Geeft de cumulatieve rente terug die tussen twee perioden is betaald || ||
|-
!scope="row"|CUMPRINC
| Geeft de cumulatieve hoofdsom terug die is betaald op een lening tussen twee periodes || ||
|-
!scope="row"|DB
| Geeft de afschrijving van een activa voor een bepaalde periode terug door gebruik te maken van de fixed-declining balansmethode || ||
|-
!scope="row"|DDB
| Geeft de afschrijving van een activa voor een bepaalde periode terug door gebruik te maken van de double-declining balansmethode of een andere methode die u specificeert || ||
|-
!scope="row"|DISC
| Geeft het discontopercentage voor een zekerheid terug || ||
|-
!scope="row"|DOLLARDE
| Zet een dollarprijs, uitgedrukt als een fractie, om in een dollarprijs, uitgedrukt als een decimaal getal || ||
|-
!scope="row"|DOLLARFR
| Zet een dollarprijs, uitgedrukt als een decimaal getal, om in een dollarprijs, uitgedrukt als een fractie || ||
|-
!scope="row"|DURATION
| Geeft de jaarlijkse looptijd van een zekerheid terug met periodieke rentebetalingen || ||
|-
!scope="row"|EFFECT
| Geeft de effectieve jaarlijkse rente terug || ||
|-
!scope="row"|FV
| Geeft de toekomstige waarde van een belegging terug || ||
|-
!scope="row"|FVSCHEDULE
| Geeft de toekomstige waarde van een initiële hoofdsom terug na het toepassen van een reeks samengestelde rentetarieven || ||
|-
!scope="row"|INTRATE
| Geeft de rente terug voor een volledig geïnvesteerde zekerheid || ||
|-
!scope="row"|IPMT
| Geeft de rentebetaling voor een investering voor een bepaalde periode terug || ||
|-
!scope="row"|IRR
| Geeft het interne rendement terug voor een reeks kasstromen || ||
|-
!scope="row"|ISPMT
| Berekent de rente die wordt betaald gedurende een specifieke investeringsperiode || ||
|-
!scope="row"|MDURATION
| Geeft de Macauley-aangepaste duur terug voor een zekerheid met een veronderstelde nominale waarde van $100 || ||
|-
!scope="row"|MIRR
| Geeft het interne rendement terug, waarbij positieve en negatieve kasstromen worden gefinancierd tegen verschillende rentes || ||
|-
!scope="row"|NOMINAL
| Geeft het jaarlijkse nominale rentepercentage terug || ||
|-
!scope="row"|NPER
| Geeft het aantal periodes voor een investering terug || ||
|-
!scope="row"|NPV
| Geeft de netto contante waarde van een investering terug op basis van een reeks periodieke kasstromen en een discontovoet || ||
|-
!scope="row"|ODDFPRICE
| Geeft de prijs per $100 nominale waarde van een zekerheid terug met een oneven eerste periode || ||
|-
!scope="row"|ODDFYIELD
| Geeft het rendement van een zekerheid terug met een oneven eerste periode || ||
|-
!scope="row"|ODDLPRICE
| Geeft de prijs per $100 nominale waarde van een zekerheid terug met een oneven laatste periode || ||
|-
!scope="row"|ODDLYIELD
| Geeft het rendement van een zekerheid terug met een oneven laatste periode || ||
|-
!scope="row"|PDURATION
| Geeft het aantal periodes terug dat een investering nodig heeft om een bepaalde waarde te bereiken || ||
|-
!scope="row"|PMT
| Retourneert de periodieke betaling voor een annuïteit || ||
|-
!scope="row"|PPMT
| Geeft de betaling van de hoofdsom voor een investering voor een bepaalde periode terug || ||
|-
!scope="row"|PRICE
| Geeft de prijs terug per nominale waarde van $100 van een zekerheid dat periodieke rente betaalt || ||
|-
!scope="row"|PRICEDISC
| Geeft de prijs per nominale waarde van $100 van een afgeprijsde zekerheid terug || ||
|-
!scope="row"|PRICEMAT
| Geeft de prijs per nominale waarde van $100 terug van een zekerheid dat rente betaalt bij vervaldatum || ||
|-
!scope="row"|PV
| Geeft de huidige waarde van een investering terug || ||
|-
!scope="row"|RATE
| Geeft het rentepercentage per periode van een annuïteit terug || ||
|-
!scope="row"|RECEIVED
| Retourneert het bedrag dat bij de vervaldatum is ontvangen voor een volledig geïnvesteerd zekerheid || ||
|-
!scope="row"|RRI
| Geeft een gelijkwaardige rente voor de groei van een investering || ||
|-
!scope="row"|SLN
| Geeft de rechtlijnige afschrijving van een activa voor één periode terug || ||
|-
!scope="row"|STOCKHISTORY
| Haalt historische gegevens op over een financieel instrument || ||
|-
!scope="row"|SYD
| Geeft de "sum-of-years" afschrijving van een activa voor een bepaalde periode terug || ||
|-
!scope="row"|TBILLEQ
| Geeft het obligatie-equivalente rendement voor een schatkistwissel terug || ||
|-
!scope="row"|TBILLPRICE
| Geeft de prijs per nominale waarde van $100 voor een schatkistwissel terug || ||
|-
!scope="row"|TBILLYIELD
| Geeft het rendement terug voor een schatkistwissel || ||
|-
!scope="row"|VDB
| Geeft de afschrijving van een activa terug voor een gespecificeerde of gedeeltelijke periode door gebruik te maken van een afnemende balansmethode || ||
|-
!scope="row"|XIRR
| Geeft het interne rendement terug voor een schema van kasstromen dat niet noodzakelijkerwijs periodiek is || ||
|-
!scope="row"|XNPV
| Geeft de netto contante waarde terug voor een schema van kasstromen dat niet noodzakelijkerwijs periodiek is || ||
|-
!scope="row"|YIELD
| Geeft het rendement terug op een zekerheid dat periodieke rente betaalt || ||
|-
!scope="row"|YIELDDISC
| Geeft de jaarlijkse opbrengst terug voor een gedisconteerde zekerheid; bijvoorbeeld een schatkistwissel || ||
|-
!scope="row"|YIELDMAT
| Geeft het jaarlijkse rendement terug van een zekerheid dat rente betaalt op een vervaldatum || ||
|}
<span id="Information"></span>
== Informatie ==
{| class="wikitable collapsible sortable"
|+Lijst van informatie Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|CELL
| Geeft informatie terug over de opmaak, locatie of inhoud van een cel || ||
|-
!scope="row"|ERROR.TYPE
| Geeft een getal terug dat overeenkomt met een fouttype || ||
|-
!scope="row"|INFO
| Geeft informatie terug over de huidige operationele omgeving || ||
|-
!scope="row"|ISBLANK
| Geeft TRUE terug als de waarde leeg is || {{Z+|Z10008}} ||
|-
!scope="row"|ISERR
| Geeft TRUE terug als de waarde een willekeurige foutwaarde is anders dan #N/A || ||
|-
!scope="row"|ISERROR
| Geeft TRUE terug als de waarde een willekeurige foutwaarde is || {{Z+|Z20107}} ||
|-
!scope="row"|ISEVEN
| Geeft TRUE terug als het getal even is || {{Z+|Z12480}} ||
|-
!scope="row"|ISFORMULA
| Geeft TRUE terug als er een verwijzing is naar een cel die een formule bevat || ||
|-
!scope="row"|ISLOGICAL
| Geeft TRUE terug als de waarde een logische waarde is || ||
|-
!scope="row"|ISNA
| Geeft TRUE terug als de waarde de #N/A-foutwaarde is || ||
|-
!scope="row"|ISNONTEXT
| Geeft TRUE terug als de waarde geen tekst is || ||
|-
!scope="row"|ISNUMBER
| Geeft TRUE als de waarde een getal is || {{Z+|Z10715}} ||
|-
!scope="row"|ISODD
| Geeft TRUE terug als het getal oneven is || {{Z+|Z12429}} ||
|-
!scope="row"|ISOMITTED
| Controleert of de waarde in een LAMBDA ontbreekt en geeft TRUE of FALSE terug || ||
|-
!scope="row"|ISREF
| Geeft TRUE terug als de waarde een referentie is || ||
|-
!scope="row"|ISTEXT
| Geeft TRUE terug als de waarde een tekst is || ||
|-
!scope="row"|N
| Geeft een waarde terug die is omgezet in een getal || ||
|-
!scope="row"|NA
| Geeft de foutwaarde #N/A terug || ||
|-
!scope="row"|SHEET
| Geeft het bladnummer van het gerefereerde blad terug || ||
|-
!scope="row"|SHEETS
| Geeft het aantal bladen in een referentie terug || ||
|-
!scope="row"|TYPE
| Geeft een getal terug dat het datatype van een waarde aangeeft || ||
|}
<span id="Logical"></span>
== Logica ==
{| class="wikitable collapsible sortable"
|+Lijst van logische Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|AND
| Geeft TRUE terug als al zijn argumenten TRUE zijn || {{Z+|Z10174}} ||
|-
!scope="row"|BYCOL
| Past een LAMBDA toe op elke kolom en geeft een array van de resultaten terug || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|BYROW
| Past een LAMBDA toe op elke rij en geeft een array van de resultaten terug || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|FALSE
| Geeft de logische waarde FALSE terug || {{Z+|Z10206}} ||
|-
!scope="row"|IF
| Specificeert een logische test om uit te voeren || {{Z+|Z802}}, {{Z+|Z11542}} ||
|-
!scope="row"|IFERROR
| Geeft een waarde terug die u specificeert als een formule evalueert naar een fout; geeft anders het resultaat van de formule terug || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|IFNA
| Geeft de door u opgegeven waarde terug als de expressie wordt opgelost naar #N/A, anders geeft het resultaat van de expressie terug || ||
|-
!scope="row"|IFS
| Controleert of aan één of meer voorwaarden is voldaan en geeft een waarde terug die overeenkomt met de eerste TRUE-voorwaarde. || {{Z+|Z19601}} ||
|-
!scope="row"|LAMBDA
| Maak aangepaste, herbruikbare functies en roept ze met een vriendelijke naam aan || {{Z+|Z8}} ||
|-
!scope="row"|LET
| Wijst een naam toe aan het resultaat van een berekening || ||
|-
!scope="row"|MAKEARRAY
| Geeft een berekende array van een gespecificeerde rij- en kolomgrootte terug door een LAMBDA toe te passen || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|MAP
| Geeft een array terug die wordt gevormd door elke waarde in de array(s) te koppelen naar een nieuwe waarde door een LAMBDA toe te passen om een nieuwe waarde te creëren || {{Z+|Z873}} ||
|-
!scope="row"|NOT
| Keert de logische waarde van zijn argument om || {{Z+|Z10216}} ||
|-
!scope="row"|OR
| Geeft TRUE terug als minstens een van de argumenten TRUE is || {{Z+|Z10184}} ||
|-
!scope="row"|REDUCE
| Reduceert een array tot een enkele waarde door een LAMBDA toe te passen op elke waarde en de totale waarde in de accumulator terug te geven || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|SCAN
| Scant een array door een LAMBDA toe te passen op elke waarde en geeft een array terug met elke tussenliggende waarde || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|SWITCH
| Evalueert een expressie aan de hand van een lijst met waarden en geeft het resultaat terug dat overeenkomt met de eerste overeenkomende waarde. Als er geen overeenkomenst is, kan een optionele standaardwaarde worden teruggegeven. || ||
|-
!scope="row"|TRUE
| Geeft de logische waarde TRUE terug || {{Z+|Z10210}} ||
|-
!scope="row"|XOR
| Geeft een logisch exclusieve OF alle argumenten terug || {{Z+|Z10237}} ||
|}
<span id="Lookup_and_reference"></span>
== Opzoeken en referentie ==
{| class="wikitable collapsible sortable"
|+Lijst van zoek- en referentiefuncties van Excel
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|VSTACK
| Voegt arrays verticaal en in volgorde toe om een groter array terug te geven || ||
|-
!scope="row"|WRAPCOLS
| Wikkelt de opgegeven rij of kolom met waarden in kolommen na een bepaald aantal elementen || ||
|-
!scope="row"|WRAPROWS
| Wikkelt de opgegeven rij of kolom met waarden in rijen na een bepaald aantal elementen || ||
|-
!scope="row"|ADDRESS
| Geeft een verwijzing als tekst terug naar een enkele cel in een werkblad || ||
|-
!scope="row"|AREAS
| Geeft het aantal velden in een referentie terug || ||
|-
!scope="row"|CHOOSE
| Kiest een waarde uit een lijst van waarden || ||
|-
!scope="row"|CHOOSECOLS
| Geeft de gespecificeerde kolommen terug uit een array || ||
|-
!scope="row"|CHOOSEROWS
| Geeft de gespecificeerde rijen terug uit een array || ||
|-
!scope="row"|COLUMN
| Geeft het kolomnummer van een referentie terug || ||
|-
!scope="row"|COLUMNS
| Geeft het aantal kolommen in een referentie terug || ||
|-
!scope="row"|DROP
| Sluit een bepaald aantal rijen of kolommen uit van het begin of einde van een array || ||
|-
!scope="row"|EXPAND
| Breidt een array uit of vult deze op tot gespecificeerde rij- en kolomafmetingen || ||
|-
!scope="row"|FILTER
| Filtert een reeks gegevens op basis van criteria die u definieert || ||
|-
!scope="row"|FORMULATEXT
| Geeft de formule op de gegeven referentie terug als tekst || ||
|-
!scope="row"|GETPIVOTDATA
| Retourneert gegevens die zijn opgeslagen in een draaitafelrapport (PivotTable) || ||
|-
!scope="row"|HLOOKUP
| Kijkt in de bovenste rij van een array en geeft de waarde van de aangegeven cel terug || ||
|-
!scope="row"|HSTACK
| Voegt arrays horizontaal en in volgorde toe om een groter array terug te geven || ||
|-
!scope="row"|HYPERLINK
| Maakt een snelkoppeling of sprong aan die een document opent dat is opgeslagen op een netwerkserver, een intranet of het internet || ||
|-
!scope="row"|IMAGE
| Geeft een afbeelding terug uit een gegeven bron || ||
|-
!scope="row"|INDEX
| Gebruikt een index om een waarde te kiezen uit een referentie of array || {{Z+|Z13397}} || Controleren Indexbase
|-
!scope="row"|INDIRECT
| Geeft een referentie terug die wordt aangegeven door een tekstwaarde || ||
|-
!scope="row"|LOOKUP
| Zoekt waarden op in een vector of array || {{Z+|Z13708}} || Controleer of het mogelijk is in arrays met meerdere kolommen.
|-
!scope="row"|MATCH
| Zoekt waarden op in een referentie of array || ||
|-
!scope="row"|OFFSET
| Geeft een referentie-offset terug ten opzichte van een gegeven referentie || ||
|-
!scope="row"|ROW
| Geeft het rijnummer van een referentie terug || ||
|-
!scope="row"|ROWS
| Geeft het aantal rijen in een referentie terug || ||
|-
!scope="row"|RTD
| Haalt realtime data op uit een programma dat COM-automatisering ondersteunt || ||
|-
!scope="row"|SORT
| Sorteert de inhoud van een bereik of een array || ||
|-
!scope="row"|SORTBY
| Sorteert de inhoud van een bereik of array op basis van de waarden in een overeenkomstige bereik of array || ||
|-
!scope="row"|TAKE
| Geeft een gespecificeerd aantal aaneengesloten rijen of kolommen terug vanaf het begin of einde van een array || ||
|-
!scope="row"|TOCOL
| Geeft het array terug in één kolom || ||
|-
!scope="row"|TOROW
| Geeft het array terug in één rij || ||
|-
!scope="row"|TRANSPOSE
| Geeft het array terug waarbij de rijen en kolommen omgedraaid zijn. || ||
|-
!scope="row"|UNIQUE
| Geeft een lijst van unieke waarden terug in een lijst of bereik || ||
|-
!scope="row"|VLOOKUP
| Kijkt in de eerste kolom van een array en beweegt over de rij om de waarde van een cel terug te geven || ||
|-
!scope="row"|XLOOKUP
| Zoekt in een bereik of array, en geeft een item terug dat overeenkomt met de eerste gevonden match. Als er geen match bestaat, kan XLOOKUP de dichtstbijzijnde (benaderende) match teruggeven. || ||
|-
!scope="row"|XMATCH
| Geeft de relatieve positie van een item in een array of bereik van cellen terug. || ||
|}
<span id="Math_and_trigonometry"></span>
== Wiskunde en trigonometrie ==
{| class="wikitable collapsible sortable"
|+Lijst van Wiskunde en trigonometrie Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|ABS
| Geeft de absolute waarde van een getal terug || {{Z+|Z11235}} ||
|-
!scope="row"|ACOS
| Geeft de arccosinus van een getal terug || {{Z+|Z12497}} ||
|-
!scope="row"|ACOSH
| Geeft de inverse hyperbolische cosinus van een getal terug || {{Z+|Z12500}} ||
|-
!scope="row"|ACOT
| Geeft de arccotangent van een getal terug || ||
|-
!scope="row"|ACOTH
| Geeft de hyperbolische arccotangent van een getal terug || ||
|-
!scope="row"|AGGREGATE
| Geeft een aggregaat terug in een lijst of database || ||
|-
!scope="row"|ARABIC
| Zet een Romeins getal om in een gewoon getal || {{Z+|Z11023}} ||
|-
!scope="row"|ASIN
| Geeft de arcsinus van een getal terug || {{Z+|Z12505}} ||
|-
!scope="row"|ASINH
| Geeft de inverse hyperbolische sinus van een getal terug || {{Z+|Z12509}} ||
|-
!scope="row"|ATAN
| Geeft de arctangens van een getal terug || ||
|-
!scope="row"|ATAN2
| Geeft de arctangens terug van x- en y-coördinaten || ||
|-
!scope="row"|ATANH
| Geeft de inverse hyperbolische tangens van een getal terug || ||
|-
!scope="row"|BASE
| Zet een getal om in een tekstrepresentatie met de gegeven radix (basis) || ||
|-
!scope="row"|CEILING.MATH
| Rond een getal naar boven af op het dichtstbijzijnde geheel getal of naar het dichtstbijzijnde veelvoud van significantie || ||
|-
!scope="row"|CEILING.PRECISE
| Rond een getal af op het dichtstbijzijnde geheel getal of op het dichtstbijzijnde veelvoud van significantie. Ongeacht het teken van het getal wordt het getal afgerond. || ||
|-
!scope="row"|COMBIN
| Geeft het aantal combinaties terug voor een gegeven aantal objecten || ||
|-
!scope="row"|COMBINA
| Geeft het aantal combinaties (met herhalingen) terug voor een gegeven aantal items || ||
|-
!scope="row"|COS
| Geeft de cosinus van een getal terug || {{Z+|Z12473}}
|
|-
!scope="row"|COSH
| Geeft de hyperbolische cosinus van een getal terug || ||
|-
!scope="row"|COT
| Geeft de hyperbolische cosinus van een getal terug || ||
|-
!scope="row"|COTH
| Geeft de cotangens van een hoek terug || ||
|-
!scope="row"|CSC
| Geeft de cosecant van een hoek terug || ||
|-
!scope="row"|CSCH
| Geeft de hyperbolische cosecant van een hoek terug || ||
|-
!scope="row"|DECIMAL
| Zet een tekstweergave van een getal in een gegeven basis om in een decimaal getal || ||
|-
!scope="row"|DEGREES
| Zet radialen om in graden || ||
|-
!scope="row"|EVEN
| Rond een getal af naar het dichtstbijzijnde even geheel getal || ||
|-
!scope="row"|EXP
| Geeft e terug die wordt verhoogd tot de macht van een gegeven getal || ||
|-
!scope="row"|FACT
| Geeft de faculteit van een getal terug || ||
|-
!scope="row"|FACTDOUBLE
| Geeft de dubbele faculteit van een getal terug || ||
|-
!scope="row"|FLOOR.MATH
| Rond een getal naar beneden af op het dichtstbijzijnde geheel getal of naar het dichtstbijzijnde veelvoud van significantie || ||
|-
!scope="row"|FLOOR.PRECISE
| Rond een getal af op het dichtstbijzijnde geheel getal of op het dichtstbijzijnde veelvoud van significantie. Ongeacht het teken van het getal wordt het getal afgerond. || ||
|-
!scope="row"|GCD
| Geeft de grootste gemene deler terug || ||
|-
!scope="row"|INT
| Rond een getal af naar beneden naar het dichtstbijzijnde geheel getal || ||
|-
!scope="row"|ISO.CEILING
| Geeft een getal terug dat wordt afgerond naar het dichtstbijzijnde geheel getal of naar het dichtstbijzijnde veelvoud van significantie || ||
|-
!scope="row"|LCM
| Geeft het kleinste gemeenschappelijke veelvoud terug || ||
|-
!scope="row"|LN
| Geeft het natuurlijke logaritme van een getal terug || ||
|-
!scope="row"|LOG
| Geeft de logaritme van een getal terug met een opgegeven basisgetal || ||
|-
!scope="row"|LOG10
| Geeft de logaritme van basis-10 van een getal terug || ||
|-
!scope="row"|MDETERM
| Geeft de matrixdeterminant van een array terug || ||
|-
!scope="row"|MINVERSE
| Geeft de matrixinverse van een array terug || ||
|-
!scope="row"|MMULT
| Geeft het matrixproduct van twee arrays terug || ||
|-
!scope="row"|MOD
| Geeft de rest terug uit een deling || {{Z+|Z12476}} ||
|-
!scope="row"|MROUND
| Geeft een getal terug dat wordt afgerond op het gewenste veelvoud || ||
|-
!scope="row"|MULTINOMIAL
| Geeft de som (multinomial) van een verzameling getallen terug || ||
|-
!scope="row"|MUNIT
| Geeft de eenheidsmatrix voor de gespecificeerde dimensie terug || ||
|-
!scope="row"|ODD
| Rond een getal af naar boven op het dichtstbijzijnde oneven geheel getal || ||
|-
!scope="row"|PI
| Geeft de waarde van Pi terug || {{Z+|Z20862}} ||
|-
!scope="row"|POWER
| Geeft het resultaat terug van een getal dat tot een macht is verhoogd || {{Z+|Z13647}} ||
|-
!scope="row"|PRODUCT
| Vermenigvuldigt zijn argumenten || {{Z+|Z10862}} ||
|-
!scope="row"|QUOTIENT
| Geeft het gehele deel terug van een deling || {{Z+|Z12522}} ||
|-
!scope="row"|RADIANS
| Zet graden om in radialen || ||
|-
!scope="row"|RAND
| Geeft een willekeurig getal tussen 0 en 1 terug || ||
|-
!scope="row"|RANDARRAY
| Geeft een reeks willekeurige getallen tussen 0 en 1 terug. U kunt echter het aantal rijen en kolommen aangeven om in te vullen, de minimale en maximale waarden en of u gehele getallen of decimalen wilt terug krijgen. || ||
|-
!scope="row"|RANDBETWEEN
| Geeft een willekeurig getal terug tussen de getallen die u heeft gespecificeerd || ||
|-
!scope="row"|ROMAN
| Zet een Arabisch getal om naar een Romeins getal, als tekst || {{Z+|Z11022}} ||
|-
!scope="row"|ROUND
| Rondt een getal af op een bepaald aantal cijfers achter de komma || ||
|-
!scope="row"|ROUNDDOWN
| Rondt een getal naar beneden af, richting nul || ||
|-
!scope="row"|ROUNDUP
| Rondt een getal naar boven af, weg van nul || ||
|-
!scope="row"|SEC
| Geeft de secant van een hoek terug || ||
|-
!scope="row"|SECH
| Geeft de hyperbolische secant van een hoek terug || ||
|-
!scope="row"|SEQUENCE
| Genereert een lijst met sequentiële getallen in een array, zoals 1, 2, 3, 4 || ||
|-
!scope="row"|SERIESSUM
| Geef de som terug van macht serie op basis van de formule || ||
|-
!scope="row"|SIGN
| Geeft het teken van een getal terug || ||
|-
!scope="row"|SIN
| Geeft de sinus van een hoek terug || ||
|-
!scope="row"|SINH
| Geeft de hyperbolische sinus van een getal terug || ||
|-
!scope="row"|SQRT
| Geeft een positieve wortel terug || ||
|-
!scope="row"|SQRTPI
| Geeft de wortel terug van (getal * pi) || ||
|-
!scope="row"|SUBTOTAL
| Geeft een subtotaal terug van een lijst of database || ||
|-
!scope="row"|SUM
| Telt de argumenten op || {{Z+|Z12720}} ||
|-
!scope="row"|SUMIF
| Voegt de cellen toe die gespecificeerd zijn volgens een bepaald criterium || ||
|-
!scope="row"|SUMIFS
| Voegt de cellen toe in een bereik dat aan meerdere criteria voldoet || ||
|-
!scope="row"|SUMPRODUCT
| Geeft de som van de producten van de overeenkomstige arraycomponenten terug. || ||
|-
!scope="row"|SUMSQ
| Geeft de som van de kwadraten van de argumenten terug || ||
|-
!scope="row"|SUMX2MY2
| Geeft de som terug van het verschil van kwadraten van overeenkomstige waarden in twee arrays || ||
|-
!scope="row"|SUMX2PY2
| Geeft de som terug van de som van de kwadraten van de overeenkomstige waarden in twee arrays || ||
|-
!scope="row"|SUMXMY2
| Geeft de som van kwadraten van verschillen van overeenkomstige waarden in twee arrays terug. || ||
|-
!scope="row"|TAN
| Geeft de tangens van een getal terug || ||
|-
!scope="row"|TANH
| Geeft de hyperbolische tangens van een getal terug || ||
|-
!scope="row"|TRUNC
| Kapt een getal af tot een geheel getal || ||
|}
<span id="Statistical"></span>
== Statistiek ==
{| class="wikitable collapsible sortable"
|+Lijst van statistiek Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|AVEDEV
| Geeft het gemiddelde van de absolute afwijkingen van datapunten van hun gemiddelde terug. || ||
|-
!scope="row"|AVERAGE
| Geeft het gemiddelde van zijn argumenten terug || ||
|-
!scope="row"|AVERAGEA
| Geeft het gemiddelde van zijn argumenten terug, inclusief getallen, tekst en logische waarden || ||
|-
!scope="row"|AVERAGEIF
| Geeft het gemiddelde (rekenkundig gemiddelde) terug van alle cellen in een bereik die aan een gegeven criterium voldoen || ||
|-
!scope="row"|AVERAGEIFS
| Geeft het gemiddelde (rekenkundig gemiddelde) terug van alle cellen die aan meerdere criteria voldoen. || ||
|-
!scope="row"|BETA.DIST
| Geeft de bèta-cumulatieve verdelingsfunctie terug || ||
|-
!scope="row"|BETA.INV
| Geeft de inverse van de cumulatieve verdelingsfunctie terug voor een gespecificeerde bètaverdeling || ||
|-
!scope="row"|BINOM.DIST
| Geeft de binomiale verdelingskans van de individuele term terug || ||
|-
!scope="row"|BINOM.DIST.RANGE
| Geeft de waarschijnlijkheid van een proefresultaat terug met behulp van een binaire verdeling || ||
|-
!scope="row"|BINOM.INV
| Geeft de kleinste waarde terug waarvoor de cumulatieve binomiale verdeling kleiner is dan of gelijk aan een criteriumwaarde || ||
|-
!scope="row"|CHISQ.DIST
| Geeft de cumulatieve beta-waarschijnlijkheid dichtheidsfunctie terug || ||
|-
!scope="row"|CHISQ.DIST.RT
| Geeft de eenzijdige kans van de chi-kwadraatverdeling terug || ||
|-
!scope="row"|CHISQ.INV
| Geeft de cumulatieve beta-waarschijnlijkheid dichtheidsfunctie terug || ||
|-
!scope="row"|CHISQ.INV.RT
| Geeft de inverse van de eenzijdige kans van de chi-kwadraatverdeling terug || ||
|-
!scope="row"|CHISQ.TEST
| Geeft de test voor onafhankelijkheid terug || ||
|-
!scope="row"|CONFIDENCE.NORM
| Geeft het betrouwbaarheidsinterval terug voor een populatiegemiddelde || ||
|-
!scope="row"|CONFIDENCE.T
| Geeft het vertrouwensinterval voor een bevolkingsgemiddelde terug, met behulp van de t-verdeling || ||
|-
!scope="row"|CORREL
| Geeft de correlatiecoëfficiënt tussen twee gegevenssets terug || ||
|-
!scope="row"|COUNT
| Telt het aantal getallen in de lijst met argumenten || ||
|-
!scope="row"|COUNTA
| Telt hoeveel waarden er zijn in de lijst met argumenten || ||
|-
!scope="row"|COUNTBLANK
| Telt het aantal lege cellen binnen een bereik || ||
|-
!scope="row"|COUNTIF
| Telt het aantal cellen binnen een bereik dat aan de gegeven criteria voldoet || ||
|-
!scope="row"|COUNTIFS
| Telt het aantal cellen binnen een bereik dat aan meerdere criteria voldoet || ||
|-
!scope="row"|COVARIANCE.P
| Geeft covariantie terug, het gemiddelde van de producten van gepaarde afwijkingen || ||
|-
!scope="row"|COVARIANCE.S
| Geeft de covariantie van de steekproef terug, het gemiddelde van de productafwijkingen voor elk datapuntpaar in twee datasets || ||
|-
!scope="row"|DEVSQ
| Geeft de som van kwadraten van afwijkingen terug. || ||
|-
!scope="row"|EXPON.DIST
| Geeft de exponentiële verdeling terug || ||
|-
!scope="row"|F.DIST
| Geeft de F-kansverdeling terug || ||
|-
!scope="row"|F.DIST.RT
| Geeft de F-kansverdeling terug || ||
|-
!scope="row"|F.INV
| Geeft de inverse van de F-kansverdeling terug || ||
|-
!scope="row"|F.INV.RT
| Geeft de inverse van de F-kansverdeling terug || ||
|-
!scope="row"|FISHER
| Geeft de Fisher-transformatie terug || ||
|-
!scope="row"|FISHERINV
| Geeft de inverse van de Fisher-transformatie terug || ||
|-
!scope="row"|FORECAST
| Geeft een waarde terug volgens een lineaire trend || ||
|-
!scope="row"|FORECAST.ETS
| Geeft een toekomstige waarde terug op basis van bestaande (historische) waarden door gebruik te maken van de AAA-versie van het Exponential Smoothing (ETS) algoritme || ||
|-
!scope="row"|FORECAST.ETS.CONFINT
| Geeft een betrouwbaarheidsinterval terug voor de prognosewaarde op de opgegeven streefdatum || ||
|-
!scope="row"|FORECAST.ETS.SEASONALITY
| Geeft de lengte van het repetitieve patroon terug dat Excel detecteert voor de opgegeven tijdreeks || ||
|-
!scope="row"|FORECAST.ETS.STAT
| Geeft een statistische waarde terug als resultaat van tijdreeksvoorspellingen || ||
|-
!scope="row"|FORECAST.LINEAR
| Geeft een toekomstige waarde terug op basis van bestaande waarden || ||
|-
!scope="row"|FREQUENCY
| Geeft een frequentieverdeling terug als een verticale array || ||
|-
!scope="row"|F.TEST
| Geeft het resultaat van een F-test terug || ||
|-
!scope="row"|GAMMA
| Geeft de waarde van de Gamma-functie terug || ||
|-
!scope="row"|GAMMA.DIST
| Geeft de gamma-verdeling terug || ||
|-
!scope="row"|GAMMA.INV
| Geeft de inverse van de cumulatieve gammaverdeling terug || ||
|-
!scope="row"|GAMMALN
| Geeft het natuurlijke logaritme van de gammafunctie, Γ(x) terug || ||
|-
!scope="row"|GAMMALN.PRECISE
| Geeft het natuurlijke logaritme van de gammafunctie, Γ(x) terug || ||
|-
!scope="row"|GAUSS
| Geeft 0,5 minder dan de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|GEOMEAN
| Geeft het geometrische gemiddelde terug || ||
|-
!scope="row"|GROWTH
| Geeft waarden terug langs een exponentiële trend || ||
|-
!scope="row"|HARMEAN
| Geeft het harmonische gemiddelde terug || ||
|-
!scope="row"|HYPGEOM.DIST
| Geeft de hypergeometrische verdeling terug || ||
|-
!scope="row"|INTERCEPT
| Geeft de interceptie terug van de lineaire regressielijn || ||
|-
!scope="row"|KURT
| Geeft de kurtosis van een dataset terug || ||
|-
!scope="row"|LARGE
| Geeft de k-de grootste waarde in een dataset terug || ||
|-
!scope="row"|LINEST
| Geeft de parameters volgens een lineaire trend terug || ||
|-
!scope="row"|LOGEST
| Geeft de parameters volgens een exponentiële trend terug || ||
|-
!scope="row"|LOGNORM.DIST
| Geeft de cumulatieve lognormale verdeling terug || ||
|-
!scope="row"|LOGNORM.INV
| Geeft de inverse van de lognormale cumulatieve verdeling terug || ||
|-
!scope="row"|MAX
| Geeft de maximale waarde in een lijst van argumenten terug || ||
|-
!scope="row"|MAXA
| Geeft de maximale waarde in een lijst met argumenten (inclusief getallen, tekst en logische waarden) terug || ||
|-
!scope="row"|MAXIFS
| Geeft de maximale waarde tussen cellen die zijn gespecificeerd door een bepaalde reeks voorwaarden of criteria, terug || ||
|-
!scope="row"|MEDIAN
| Geeft de mediaan van de gegeven getallen terug || ||
|-
!scope="row"|MIN
| Geeft de minimale waarde in een lijst van argumenten terug ||
* {{z+|Z19509}}
* {{Z+|Z21341}}
||
|-
!scope="row"|MINIFS
| Geeft de minimale waarde tussen cellen die zijn gespecificeerd door een bepaalde reeks voorwaarden of criteria, terug || ||
|-
!scope="row"|MINA
| Geeft de kleinste waarde in een lijst met argumenten (inclusief getallen, tekst en logische waarden) terug || ||
|-
!scope="row"|MODE.MULT
| Geeft een verticale array terug van de meest voorkomende, of repetitieve waarden in een array of databereik || ||
|-
!scope="row"|MODE.SNGL
| Geeft de meest voorkomende waarde in een dataset terug || ||
|-
!scope="row"|NEGBINOM.DIST
| Geeft de negatieve binomiale verdeling terug || ||
|-
!scope="row"|NORM.DIST
| Geeft de normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORMINV
| Geeft de inverse van de normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORM.S.DIST
| Geeft de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORM.S.INV
| Geeft de inverse van de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|PEARSON
| Geeft de Pearson-productmoment-correlatiecoëfficiënt terug || ||
|-
!scope="row"|PERCENTILE.EXC
| Geeft het k-de percentiel van waarden in een bereik terug, waarbij k in het bereik 0..1 ligt, exclusief || ||
|-
!scope="row"|PERCENTILE.INC
| Geeft het k-de percentiel van waarden in een bereik terug || ||
|-
!scope="row"|PERCENTRANK.EXC
| Geeft de rangorde van een waarde in een dataset terug als een percentage (0..1, exclusief) van de dataset || ||
|-
!scope="row"|PERCENTRANK.INC
| Geeft de procentuele rang van een waarde in een dataset terug || ||
|-
!scope="row"|PERMUT
| Geeft het aantal permutaties terug voor een gegeven aantal objecten || ||
|-
!scope="row"|PERMUTATIONA
| Geeft het aantal permutaties terug voor een gegeven aantal objecten (met herhalingen) dat kan worden geselecteerd uit het totaal aantal objecten || ||
|-
!scope="row"|PHI
| Geeft de waarde van de dichtheidsfunctie (density) terug voor een standaard normale verdeling || ||
|-
!scope="row"|POISSON.DIST
| Geeft de Poisson-verdeling terug || ||
|-
!scope="row"|PROB
| Geeft de kans terug dat waarden in een bereik tussen twee limieten liggen || ||
|-
!scope="row"|QUARTILE.EXC
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the quartile of the data set, based on percentile values from 0..1, exclusive</span> || ||
|-
!scope="row"|QUARTILE.INC
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the quartile of a data set</span> || ||
|-
!scope="row"|RANK.AVG
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the rank of a number in a list of numbers; duplicate values receive the average rank</span> || ||
|-
!scope="row"|RANK.EQ
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the rank of a number in a list of numbers; duplicate values receive the same rank</span> || ||
|-
!scope="row"|RSQ
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the square of the Pearson product moment correlation coefficient</span> || ||
|-
!scope="row"|SKEW
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the skewness of a distribution</span> || ||
|-
!scope="row"|SKEW.P
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the skewness of a distribution based on a population: a characterization of the degree of asymmetry of a distribution around its mean</span> || ||
|-
!scope="row"|SLOPE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the slope of the linear regression line</span> || ||
|-
!scope="row"|SMALL
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the k-th smallest value in a data set</span> || ||
|-
!scope="row"|STANDARDIZE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns a normalized value</span> || ||
|-
!scope="row"|STDEV.P
| <span lang="en" dir="ltr" class="mw-content-ltr">Calculates standard deviation based on the entire population</span> || ||
|-
!scope="row"|STDEV.S
| <span lang="en" dir="ltr" class="mw-content-ltr">Estimates standard deviation based on a sample</span> || ||
|-
!scope="row"|STDEVA
| <span lang="en" dir="ltr" class="mw-content-ltr">Estimates standard deviation based on a sample, including numbers, text, and logical values</span> || ||
|-
!scope="row"|STDEVPA
| <span lang="en" dir="ltr" class="mw-content-ltr">Calculates standard deviation based on the entire population, including numbers, text, and logical values</span> || ||
|-
!scope="row"|STEYX
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the standard error of the predicted y-value for each x in the regression</span> || ||
|-
!scope="row"|T.DIST
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Percentage Points (probability) for the Student t-distribution</span> || ||
|-
!scope="row"|T.DIST.2T
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Percentage Points (probability) for the Student t-distribution</span> || ||
|-
!scope="row"|T.DIST.RT
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Student's t-distribution</span> || ||
|-
!scope="row"|T.INV
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the t-value of the Student's t-distribution as a function of the probability and the degrees of freedom</span> || ||
|-
!scope="row"|T.INV.2T
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the inverse of the Student's t-distribution</span> || ||
|-
!scope="row"|TREND
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns values along a linear trend</span> || ||
|-
!scope="row"|TRIMMEAN
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the mean of the interior of a data set</span> || ||
|-
!scope="row"|T.TEST
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the probability associated with a Student's t-test</span> || ||
|-
!scope="row"|VAR.P
| <span lang="en" dir="ltr" class="mw-content-ltr">Calculates variance based on the entire population</span> || ||
|-
!scope="row"|VAR.S
| <span lang="en" dir="ltr" class="mw-content-ltr">Estimates variance based on a sample</span> || ||
|-
!scope="row"|VARA
| <span lang="en" dir="ltr" class="mw-content-ltr">Estimates variance based on a sample, including numbers, text, and logical values</span> || ||
|-
!scope="row"|VARPA
| <span lang="en" dir="ltr" class="mw-content-ltr">Calculates variance based on the entire population, including numbers, text, and logical values</span> || ||
|-
!scope="row"|WEIBULL.DIST
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Weibull distribution</span> || ||
|-
!scope="row"|Z.TEST
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the one-tailed probability-value of a z-test</span> || ||
|}
<span id="Text"></span>
== Tekst ==
{| class="wikitable collapsible sortable"
|+Lijst van tekst Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|ARRAYTOTEXT
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns an array of text values from any specified range</span> || ||
|-
!scope="row"|ASC
| <span lang="en" dir="ltr" class="mw-content-ltr">Changes full-width (double-byte) English letters or katakana within a character string to half-width (single-byte) characters</span> || ||
|-
!scope="row"|BAHTTEXT
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts a number to text, using the ß (baht) currency format</span> || ||
|-
!scope="row"|CHAR
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the character specified by the code number</span> || ||
|-
!scope="row"|CLEAN
| <span lang="en" dir="ltr" class="mw-content-ltr">Removes all nonprintable characters from text</span> || ||
|-
!scope="row"|CODE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns a numeric code for the first character in a text string</span> || ||
|-
!scope="row"|CONCAT
| <span lang="en" dir="ltr" class="mw-content-ltr">Combines the text from multiple ranges and/or strings, but it doesn't provide the delimiter or IgnoreEmpty arguments.</span> || {{Z+|Z10000}} || <span lang="en" dir="ltr" class="mw-content-ltr">WF only takes two strings</span>
|-
!scope="row"|CONCATENATE
| <span lang="en" dir="ltr" class="mw-content-ltr">Joins several text items into one text item</span> || {{Z+|Z10000}} ||
|-
!scope="row"|DBCS
| <span lang="en" dir="ltr" class="mw-content-ltr">Changes half-width (single-byte) English letters or katakana within a character string to full-width (double-byte) characters</span> || ||
|-
!scope="row"|DOLLAR
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts a number to text, using the $ (dollar) currency format</span> || ||
|-
!scope="row"|EXACT
| <span lang="en" dir="ltr" class="mw-content-ltr">Checks to see if two text values are identical</span> || {{Z+|Z866}} ||
|-
!scope="row"|FIND, FINDBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Finds one text value within another (case-sensitive)</span> || ||
|-
!scope="row"|FIXED
| <span lang="en" dir="ltr" class="mw-content-ltr">Formats a number as text with a fixed number of decimals</span> || ||
|-
!scope="row"|JIS
| <span lang="en" dir="ltr" class="mw-content-ltr">Changes half-width (single-byte) characters within a string to full-width (double-byte) characters</span> || ||
|-
!scope="row"|LEFT, LEFTBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the leftmost characters from a text value</span> || ||
|-
!scope="row"|LEN, LENBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the number of characters in a text string</span> || {{Z+|Z11040}} ||
|-
!scope="row"|LOWER
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts text to lowercase</span> || {{Z+|Z10047}} ||
|-
!scope="row"|MID, MIDBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns a specific number of characters from a text string starting at the position you specify</span> || ||
|-
!scope="row"|NUMBERVALUE
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts text to number in a locale-independent manner</span> || ||
|-
!scope="row"|PHONETIC
| <span lang="en" dir="ltr" class="mw-content-ltr">Extracts the phonetic (furigana) characters from a text string</span> || ||
|-
!scope="row"|PROPER
| <span lang="en" dir="ltr" class="mw-content-ltr">Capitalizes the first letter in each word of a text value</span> || {{Z+|Z10251}} ||
|-
!scope="row"|REPLACE, REPLACEBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Replaces characters within text</span> || ||
|-
!scope="row"|REPT
| <span lang="en" dir="ltr" class="mw-content-ltr">Repeats text a given number of times</span> || {{Z+|Z10911}} ||
|-
!scope="row"|RIGHT, RIGHTBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the rightmost characters from a text value</span> || ||
|-
!scope="row"|SEARCH, SEARCHBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Finds one text value within another (not case-sensitive)</span> || ||
|-
!scope="row"|SUBSTITUTE
| <span lang="en" dir="ltr" class="mw-content-ltr">Substitutes new text for old text in a text string</span> || {{Z+|Z10075}} ||
|-
!scope="row"|T
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts its arguments to text</span> || ||
|-
!scope="row"|TEXT
| <span lang="en" dir="ltr" class="mw-content-ltr">Formats a number and converts it to text</span> || {{Z+|Z13713}} ||
|-
!scope="row"|TEXTAFTER
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns text that occurs after given character or string</span> || {{Z+|Z11412}} {{Z+|Z11416}} || <span lang="en" dir="ltr" class="mw-content-ltr">Excel has parameters to choose last (or Nth)</span>
|-
!scope="row"|TEXTBEFORE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns text that occurs before a given character or string</span> || {{Z+|Z11418}} {{Z+|Z11422}} || <span lang="en" dir="ltr" class="mw-content-ltr">Excel has parameters to choose last (or Nth)</span>
|-
!scope="row"|TEXTJOIN
| <span lang="en" dir="ltr" class="mw-content-ltr">Combines the text from multiple ranges and/or strings</span> || ||
|-
!scope="row"|TEXTSPLIT
| <span lang="en" dir="ltr" class="mw-content-ltr">Splits text strings by using column and row delimiters</span> || ||
|-
!scope="row"|TRIM
| <span lang="en" dir="ltr" class="mw-content-ltr">Removes spaces from text</span> || {{Z+|Z10079}} ||
|-
!scope="row"|UNICHAR
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Unicode character that is references by the given numeric value</span> || {{Z+|Z11534}} ||
|-
!scope="row"|UNICODE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the number (code point) that corresponds to the first character of the text</span> || {{Z+|Z11515}} ||
|-
!scope="row"|UPPER
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts text to uppercase</span> || {{Z+|Z10018}} ||
|-
!scope="row"|VALUE
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts a text argument to a number</span> || ||
|-
!scope="row"|VALUETOTEXT
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns text from any specified value</span> || ||
|-
!scope="row"|ENCODEURL
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns a URL-encoded string</span> || {{Z+|Z10761}} ||
|-
!scope="row"|FILTERXML
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns specific data from the XML content by using the specified XPath</span> || ||
|-
!scope="row"|WEBSERVICE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns data from a web service.</span>
|
|
|}
[[Category:Lists of functions]]
mquta3h9jw750qo5orf3y4yu6f6tnnr
307276
307274
2026-09-01T19:48:45Z
HanV
6833
Created page with "Geeft het kwartiel van de dataset terug, gebaseerd op percentielwaarden van 0..1, exclusief"
307276
wikitext
text/x-wiki
<languages/>
{{w|Microsoft Excel}} functies omvatten de volgende categorieën.
Deze pagina vermeldt Excel-functies als ze een bijbehorende [[Special:MyLanguage/Wikifunctions:Function model|WikiFuncties functie]] hebben.
<span id="Add-in_and_automation"></span>
== Interne en Automatisering ==
{| class="wikitable collapsible sortable"
|+Lijst van interne en automatiseringsfuncties van Excel
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|CALL
| Aanroep van een procedure in een dynamische link-bibliotheek of codebron || ||
|-
!scope="row"|EUROCONVERT
| Zet een getal om euro's, een getal van euro's omzetten naar een munt van een eurolid, of een getal van de ene munt van een eurolid naar een andere door de euro als tussenpersoon te gebruiken (triangulatie). || ||
|-
!scope="row"|REGISTER.ID
| Geeft de register-ID terug van de gespecificeerde dynamische link-bibliotheek (DLL) of codebron die eerder is geregistreerd || ||
|}
<span id="Compatibility"></span>
== Compatibiliteit ==
{| class="wikitable collapsible sortable"
|+Lijst van compatibiliteit Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|BETADIST
| Geeft de bèta-cumulatieve verdelingsfunctie terug || ||
|-
!scope="row"|BETAINV
| Geeft de inverse van de cumulatieve verdelingsfunctie terug voor een gespecificeerde bètaverdeling || ||
|-
!scope="row"|BINOMDIST
| Geeft de binomiale verdelingskans van de individuele term terug || ||
|-
!scope="row"|CEILING
| Rond een getal af naar het dichtstbijzijnde geheel getal of naar het dichtstbijzijnde veelvoud van significantie || ||
|-
!scope="row"|CHIDIST
| Geeft de eenzijdige kans van de chi-kwadraatverdeling terug || ||
|-
!scope="row"|CHIINV
| Geeft de inverse van de eenzijdige kans van de chi-kwadraatverdeling terug || ||
|-
!scope="row"|CHITEST
| Geeft de test voor onafhankelijkheid terug || ||
|-
!scope="row"|CONFIDENCE
| Geeft het betrouwbaarheidsinterval terug voor een populatiegemiddelde || ||
|-
!scope="row"|COVAR
| Geeft covariantie terug, het gemiddelde van de producten van gepaarde afwijkingen || ||
|-
!scope="row"|CRITBINOM
| Geeft de kleinste waarde terug waarvoor de cumulatieve binomiale verdeling kleiner is dan of gelijk aan een criteriumwaarde || ||
|-
!scope="row"|EXPONDIST
| Geeft de exponentiële verdeling terug || ||
|-
!scope="row"|FDIST
| Geeft de F kansverdeling terug || ||
|-
!scope="row"|FINV
| Geeft de inverse van de F-kansverdeling terug || ||
|-
!scope="row"|FLOOR
| Rondt een getal naar beneden af, richting nul || {{Z+|Z20032}}
{{Z+|Z20841}}
|
|-
!scope="row"|FTEST
| Geeft het resultaat van een F-test terug || ||
|-
!scope="row"|GAMMADIST
| Geeft de gamma-verdeling terug || ||
|-
!scope="row"|GAMMAINV
| Geeft de inverse van de cumulatieve gammaverdeling terug || ||
|-
!scope="row"|HYPGEOMDIST
| Geeft de hypergeometrische verdeling terug || ||
|-
!scope="row"|LOGINV
| Geeft de inverse van de lognormale cumulatieve verdeling terug || ||
|-
!scope="row"|LOGNORMDIST
| Geeft de cumulatieve lognormale verdeling terug || ||
|-
!scope="row"|MODE
| Geeft de meest voorkomende waarde in een dataset terug || {{Z+|Z21851}} ||
|-
!scope="row"|NEGBINOMDIST
| Geeft de negatieve binomiale verdeling terug || ||
|-
!scope="row"|NORMDIST
| Geeft de normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORM.INV
| Geeft de inverse van de normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORMSDIST
| Geeft de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORMSINV
| Geeft de inverse van de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|PERCENTILE
| Geeft het k-de percentiel van waarden in een bereik terug || ||
|-
!scope="row"|PERCENTRANK
| Geeft de procentuele rang van een waarde in een dataset terug || ||
|-
!scope="row"|POISSON
| Geeft de Poisson-verdeling terug || ||
|-
!scope="row"|QUARTILE
| Geeft het kwartiel van een dataset terug || ||
|-
!scope="row"|RANK
| Geeft de rangorde van een getal in een lijst van getallen terug || ||
|-
!scope="row"|STDEV
| Schatting van standaarddeviatie op basis van een steekproef || ||
|-
!scope="row"|STDEVP
| Berekent de standaarddeviatie op basis van de gehele populatie || ||
|-
!scope="row"|TDIST
| Geeft de Student's t-verdeling terug || ||
|-
!scope="row"|TINV
| Geeft de inverse van de Student's t-verdeling terug || ||
|-
!scope="row"|TTEST
| Geeft de kans terug die hoort bij de Student's t-test || ||
|-
!scope="row"|VAR
| Schatting van de variantie op basis van een steekproef || ||
|-
!scope="row"|VARP
| Berekent de variantie op basis van de gehele populatie || ||
|-
!scope="row"|WEIBULL
| Berekent de variantie op basis van de gehele populatie, inclusief getallen, tekst en logische waarden || ||
|-
!scope="row"|ZTEST
| Geeft de eenzijdige kanswaarde van een z-test terug || ||
|}
== Cube ==
{| class="wikitable collapsible sortable"
|+Lijst van Cube Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|CUBEKPIMEMBER
| Geeft een naam, eigenschap en maatstaf (Key Performance Indicator) (KPI) terug en toont de naam en eigenschap in de cel. Een KPI is een kwantificeerbare maatstaf, zoals de maandelijkse brutowinst of het kwartaalomzet van medewerkers, die wordt gebruikt om de prestaties van een organisatie te monitoren. || ||
|-
!scope="row"|CUBEMEMBER
| Geeft een lid of tupel terug in een cube-hiërarchie. Gebruik om te valideren dat het lid of de tupel in de cube bestaat. || ||
|-
!scope="row"|CUBEMEMBERPROPERTY
| Geeft de waarde van een lideigenschap in de cube terug. Gebruik om te valideren dat er een lidnaam in de cube bestaat en om de gespecificeerde eigenschap voor dit lid terug te geven. || ||
|-
!scope="row"|CUBERANKEDMEMBER
| Geeft het n-de, of gerangschikte, lid in een set terug. Gebruik het om één of meer elementen in een set op te halen, zoals de beste verkoper of de top 10 studenten. || ||
|-
!scope="row"|CUBESET
| Definieert een berekende set van leden of tupels door een set-expressie naar de cube op de server te sturen, die de set aanmaakt en die set vervolgens teruggeeft aan Microsoft Office Excel. || ||
|-
!scope="row"|CUBESETCOUNT
| Geeft het aantal items in een set terug. || ||
|-
!scope="row"|CUBEVALUE
| Geeft een geaggregeerde waarde terug van een cube. || ||
|}
== Database ==
{| class="wikitable collapsible sortable"
|+Lijst van Excel-databasefuncties
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|DAVERAGE
| Geeft het gemiddelde van geselecteerde database-items terug || ||
|-
!scope="row"|DCOUNT
| Telt de cellen die getallen bevatten in een database || ||
|-
!scope="row"|DCOUNTA
| Telt niet-lege cellen in een database || ||
|-
!scope="row"|DGET
| Haalt uit een database een enkel record dat voldoet aan de gespecificeerde criteria || ||
|-
!scope="row"|DMAX
| Geeft de maximale waarde terug uit geselecteerde database-gegevens || ||
|-
!scope="row"|DMIN
| Geeft de minimale waarde terug uit geselecteerde database-gegevens || ||
|-
!scope="row"|DPRODUCT
| Vermenigvuldigt de waarden in een bepaald veld van records die overeenkomen met de criteria in een database || ||
|-
!scope="row"|DSTDEV
| De standaardafwijking wordt geschat op basis van een steekproef van geselecteerde database-gegevens || ||
|-
!scope="row"|DSTDEVP
| Berekent de standaardafwijking op basis van de gehele populatie van geselecteerde database-gegevens || ||
|-
!scope="row"|DSUM
| Voegt de nummers toe in de veldkolom van database-gegevens die overeenkomen met de criteria || ||
|-
!scope="row"|DVAR
| Schat de variantie op basis van een steekproef uit geselecteerde database-gegevens || ||
|-
!scope="row"|DVARP
| Berekent variantie op basis van de gehele populatie van geselecteerde database-gegevens || ||
|}
<span id="Date_and_time"></span>
== Datum en tijd ==
{| class="wikitable collapsible sortable"
|+Lijst van datum en tijd Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|DATE
| Geeft het serienummer van een bepaalde datum terug || ||
|-
!scope="row"|DATEDIF
| Berekent het aantal dagen, maanden of jaren tussen twee data. Deze functie is nuttig in formules waarbij u een leeftijd moet berekenen. || ||
|-
!scope="row"|DATEVALUE
| Zet een datum in de vorm van tekst om in een serienummer || ||
|-
!scope="row"|DAY
| Zet een serienummer om in een dag van de maand || ||
|-
!scope="row"|DAYS
| Geeft het aantal dagen tussen twee datums terug || ||
|-
!scope="row"|DAYS360
| Berekent het aantal dagen tussen twee datums op basis van een jaar van 360-dagen || ||
|-
!scope="row"|EDATE
| Geeft het serienummer van de datum terug, dat het aangegeven aantal maanden vóór of na de startdatum is || ||
|-
!scope="row"|EOMONTH
| Geeft het serienummer van de laatste dag van de maand vóór of na een bepaald aantal maanden || ||
|-
!scope="row"|HOUR
| Zet een serienummer om in een uur || ||
|-
!scope="row"|ISOWEEKNUM
| Geeft het nummer van het ISO-weeknummer van het jaar terug voor een bepaalde datum || ||
|-
!scope="row"|MINUTE
| Zet een serienummer om in een minuut || ||
|-
!scope="row"|MONTH
| Zet een serienummer om in een maand || ||
|-
!scope="row"|NETWORKDAYS
| Geeft het aantal hele werkdagen tussen twee datums terug || ||
|-
!scope="row"|NETWORKDAYS.INTL
| Geeft het aantal hele werkdagen tussen twee datums terug met behulp van parameters om aan te geven welke en hoeveel dagen weekenddagen zijn || ||
|-
!scope="row"|NOW
| Geeft het serienummer van de huidige datum en tijd terug || ||
|-
!scope="row"|SECOND
| Zet een serienummer om in een seconde || ||
|-
!scope="row"|TIME
| Geeft het serienummer van een bepaald tijdstip terug || ||
|-
!scope="row"|TIMEVALUE
| Zet een tijd in de vorm van tekst om in een serienummer || ||
|-
!scope="row"|TODAY
| Geeft het serienummer van de datum van vandaag terug. || ||
|-
!scope="row"|WEEKDAY
| Zet een serienummer om in een dag van de week || {{Z+|Z17540}} || Heeft Dag, Maand en Jaar nodig in plaats van een serienummer
|-
!scope="row"|WEEKNUM
| Zet een serienummer om in een nummer dat numeriek aangeeft waar de week ligt met een jaar || ||
|-
!scope="row"|WORKDAY
| Geeft het serienummer van de datum voor of na een bepaald aantal werkdagen terug. || ||
|-
!scope="row"|WORKDAY.INTL
| Geeft het serienummer van de datum voor of na een bepaald aantal werkdagen terug met behulp van parameters die aangeven welke en hoeveel dagen weekenddagen zijn || ||
|-
!scope="row"|YEAR
| Zet een serienummer om in een jaar || ||
|-
!scope="row"|YEARFRAC
| Geeft het jaardeel terug dat staat voor het aantal hele dagen tussen 'start_date' en 'end_date' || ||
|}
<span id="Engineering"></span>
== Technisch ==
{| class="wikitable collapsible sortable"
|+Lijst van technische Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|BESSELI
| Geeft de aangepaste Besselfunctie In(x) terug || ||
|-
!scope="row"|BESSELJ
| Geeft de Besselfunctie Jn(x) terug || ||
|-
!scope="row"|BESSELK
| Geeft de aangepaste Besselfunctie Kn(x) terug || ||
|-
!scope="row"|BESSELY
| Geeft de Besselfunctie Yn(x) terug || ||
|-
!scope="row"|BIN2DEC
| Zet een binair getal om in een decimaal getal || ||
|-
!scope="row"|BIN2HEX
| Zet een binair getal om in een hexadecimaal getal || ||
|-
!scope="row"|BIN2OCT
| Zet een binair getal om in een octaal nummer || ||
|-
!scope="row"|BITAND
| Geeft een 'Bitgewijs And' van twee getallen terug || ||
|-
!scope="row"|BITLSHIFT
| Geeft een getal terug dat met shift_amount bits naar links is verschoven || ||
|-
!scope="row"|BITOR
| Geeft een 'Bitgewijs OR' van 2 getallen terug || ||
|-
!scope="row"|BITRSHIFT
| Geeft een getal terug dat met shift_amount bits naar rechts is verschoven || ||
|-
!scope="row"|BITXOR
| Geeft een bitsgewijs 'Exclusieve OR' van twee getallen terug || ||
|-
!scope="row"|COMPLEX
| Zet reële en imaginaire coëfficiënten om in een complex getal || ||
|-
!scope="row"|CONVERT
| Zet een getal om van het ene meetstelsel naar het andere. || ||
|-
!scope="row"|DEC2BIN
| Zet een decimaal getal om in een binair getal || ||
|-
!scope="row"|DEC2HEX
| Zet een decimaal getal om in een hexadecimaal getal || ||
|-
!scope="row"|DEC2OCT
| Zet een decimaal getal om in een octaal getal || ||
|-
!scope="row"|DELTA
| Test of twee waarden gelijk zijn || ||
|-
!scope="row"|ERF
| Geeft de foutfunctie terug || ||
|-
!scope="row"|ERF.PRECISE
| Geeft de foutfunctie terug || ||
|-
!scope="row"|ERFC
| Geeft de complementaire foutfunctie terug || ||
|-
!scope="row"|ERFC.PRECISE
| Geeft de complementaire functie ERF terug geïntegreerd tussen x en oneindig || ||
|-
!scope="row"|GESTEP
| Test of een getal groter is dan een drempelwaarde || ||
|-
!scope="row"|HEX2BIN
| Zet een hexadecimaal getal om in een binair getal || ||
|-
!scope="row"|HEX2DEC
| Zet een hexadecimaal getal om in een decimaal getal || ||
|-
!scope="row"|HEX2OCT
| Zet een hexadecimaal getal om in een octaal getal || ||
|-
!scope="row"|IMABS
| Geeft de absolute waarde (modulus) van een complex getal terug || ||
|-
!scope="row"|IMAGINARY
| Geeft de imaginaire coëfficiënt van een complex getal terug || ||
|-
!scope="row"|IMARGUMENT
| Geeft het argument theta terug, een hoek uitgedrukt in radialen || ||
|-
!scope="row"|IMCONJUGATE
| Geeft het complex geconjugeerde van een complex getal terug || ||
|-
!scope="row"|IMCOS
| Geeft de cosinus van een complex getal terug || ||
|-
!scope="row"|IMCOSH
| Geeft de hyperbolische cosinus van een complex getal terug || ||
|-
!scope="row"|IMCOT
| Geeft de cotangens van een complex getal terug || ||
|-
!scope="row"|IMCSC
| Geeft de cosecans van een complex getal terug || ||
|-
!scope="row"|IMCSCH
| Geeft de hyperbolische cosecans van een complex getal terug || ||
|-
!scope="row"|IMDIV
| Geeft het quotiënt van twee complexe getallen terug || ||
|-
!scope="row"|IMEXP
| Geeft de exponentiële van een complex getal terug || ||
|-
!scope="row"|IMLN
| Geeft het natuurlijke logaritme van een complex getal terug || ||
|-
!scope="row"|IMLOG10
| Geeft de logaritme van basis-10 van een complex getal terug || ||
|-
!scope="row"|IMLOG2
| Geeft de logaritme van basis-2 van een complex getal terug || ||
|-
!scope="row"|IMPOWER
| Geeft een complex getal terug dat tot een geheel getal macht is verhoogd || ||
|-
!scope="row"|IMPRODUCT
| Geeft het product van complexe getallen terug || ||
|-
!scope="row"|IMREAL
| Geeft de reële coëfficiënt van een complex getal terug || ||
|-
!scope="row"|IMSEC
| Geeft de secans van een complex getal terug || ||
|-
!scope="row"|IMSECH
| Geeft de hyperbolische secans van een complex getal terug || ||
|-
!scope="row"|IMSIN
| Geeft de sinus van een complex getal terug || ||
|-
!scope="row"|IMSINH
| Geeft de hyperbolische sinus van een complex getal terug || ||
|-
!scope="row"|IMSQRT
| Geeft de wortel van een complex getal terug || ||
|-
!scope="row"|IMSUB
| Geeft het verschil terug tussen twee complexe getallen || ||
|-
!scope="row"|IMSUM
| Geeft de som van complexe getallen terug || ||
|-
!scope="row"|IMTAN
| Geeft de tangens van een complex getal terug || ||
|-
!scope="row"|OCT2BIN
| Zet een octaal getal om in een binair getal || ||
|-
!scope="row"|OCT2DEC
| Zet een octaal getal om in een decimaal getal || ||
|-
!scope="row"|OCT2HEX
| Zet een octaal getal om in een hexadecimaal getal || ||
|}
<span id="Financial"></span>
== Financieel ==
{| class="wikitable collapsible sortable"
|+Lijst van financiële Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|ACCRINT
| Retourneert de opgebouwde rente voor een zekerheid dat periodieke rente betaalt || ||
|-
!scope="row"|ACCRINTM
| Geeft de opgebouwde rente terug voor een zekerheid dat rente betaalt op een vervaldatum || ||
|-
!scope="row"|AMORDEGRC
| Geeft de afschrijving voor elke boekhoudperiode terug met behulp van een afschrijvingscoëfficiënt || ||
|-
!scope="row"|AMORLINC
| Geeft de afschrijving voor elke boekhoudperiode terug || ||
|-
!scope="row"|COUPDAYBS
| Geeft het aantal dagen terug vanaf het begin van de couponperiode tot de afwikkelingsdatum || ||
|-
!scope="row"|COUPDAYS
| Geeft het aantal dagen in de couponperiode terug waarin de afwikkelingsdatum is opgenomen || ||
|-
!scope="row"|COUPDAYSNC
| Geeft het aantal dagen terug van de afwikkelingsdatum tot de volgende coupondatum || ||
|-
!scope="row"|COUPNCD
| Geeft de volgende coupondatum na de afwikkelingsdatum terug || ||
|-
!scope="row"|COUPNUM
| Geeft het aantal coupons terug dat tussen de afwikkelingsdatum en de vervaldatum moet worden betaald || ||
|-
!scope="row"|COUPPCD
| Geeft de vorige coupondatum vóór de afwikkelingsdatum terug || ||
|-
!scope="row"|CUMIPMT
| Geeft de cumulatieve rente terug die tussen twee perioden is betaald || ||
|-
!scope="row"|CUMPRINC
| Geeft de cumulatieve hoofdsom terug die is betaald op een lening tussen twee periodes || ||
|-
!scope="row"|DB
| Geeft de afschrijving van een activa voor een bepaalde periode terug door gebruik te maken van de fixed-declining balansmethode || ||
|-
!scope="row"|DDB
| Geeft de afschrijving van een activa voor een bepaalde periode terug door gebruik te maken van de double-declining balansmethode of een andere methode die u specificeert || ||
|-
!scope="row"|DISC
| Geeft het discontopercentage voor een zekerheid terug || ||
|-
!scope="row"|DOLLARDE
| Zet een dollarprijs, uitgedrukt als een fractie, om in een dollarprijs, uitgedrukt als een decimaal getal || ||
|-
!scope="row"|DOLLARFR
| Zet een dollarprijs, uitgedrukt als een decimaal getal, om in een dollarprijs, uitgedrukt als een fractie || ||
|-
!scope="row"|DURATION
| Geeft de jaarlijkse looptijd van een zekerheid terug met periodieke rentebetalingen || ||
|-
!scope="row"|EFFECT
| Geeft de effectieve jaarlijkse rente terug || ||
|-
!scope="row"|FV
| Geeft de toekomstige waarde van een belegging terug || ||
|-
!scope="row"|FVSCHEDULE
| Geeft de toekomstige waarde van een initiële hoofdsom terug na het toepassen van een reeks samengestelde rentetarieven || ||
|-
!scope="row"|INTRATE
| Geeft de rente terug voor een volledig geïnvesteerde zekerheid || ||
|-
!scope="row"|IPMT
| Geeft de rentebetaling voor een investering voor een bepaalde periode terug || ||
|-
!scope="row"|IRR
| Geeft het interne rendement terug voor een reeks kasstromen || ||
|-
!scope="row"|ISPMT
| Berekent de rente die wordt betaald gedurende een specifieke investeringsperiode || ||
|-
!scope="row"|MDURATION
| Geeft de Macauley-aangepaste duur terug voor een zekerheid met een veronderstelde nominale waarde van $100 || ||
|-
!scope="row"|MIRR
| Geeft het interne rendement terug, waarbij positieve en negatieve kasstromen worden gefinancierd tegen verschillende rentes || ||
|-
!scope="row"|NOMINAL
| Geeft het jaarlijkse nominale rentepercentage terug || ||
|-
!scope="row"|NPER
| Geeft het aantal periodes voor een investering terug || ||
|-
!scope="row"|NPV
| Geeft de netto contante waarde van een investering terug op basis van een reeks periodieke kasstromen en een discontovoet || ||
|-
!scope="row"|ODDFPRICE
| Geeft de prijs per $100 nominale waarde van een zekerheid terug met een oneven eerste periode || ||
|-
!scope="row"|ODDFYIELD
| Geeft het rendement van een zekerheid terug met een oneven eerste periode || ||
|-
!scope="row"|ODDLPRICE
| Geeft de prijs per $100 nominale waarde van een zekerheid terug met een oneven laatste periode || ||
|-
!scope="row"|ODDLYIELD
| Geeft het rendement van een zekerheid terug met een oneven laatste periode || ||
|-
!scope="row"|PDURATION
| Geeft het aantal periodes terug dat een investering nodig heeft om een bepaalde waarde te bereiken || ||
|-
!scope="row"|PMT
| Retourneert de periodieke betaling voor een annuïteit || ||
|-
!scope="row"|PPMT
| Geeft de betaling van de hoofdsom voor een investering voor een bepaalde periode terug || ||
|-
!scope="row"|PRICE
| Geeft de prijs terug per nominale waarde van $100 van een zekerheid dat periodieke rente betaalt || ||
|-
!scope="row"|PRICEDISC
| Geeft de prijs per nominale waarde van $100 van een afgeprijsde zekerheid terug || ||
|-
!scope="row"|PRICEMAT
| Geeft de prijs per nominale waarde van $100 terug van een zekerheid dat rente betaalt bij vervaldatum || ||
|-
!scope="row"|PV
| Geeft de huidige waarde van een investering terug || ||
|-
!scope="row"|RATE
| Geeft het rentepercentage per periode van een annuïteit terug || ||
|-
!scope="row"|RECEIVED
| Retourneert het bedrag dat bij de vervaldatum is ontvangen voor een volledig geïnvesteerd zekerheid || ||
|-
!scope="row"|RRI
| Geeft een gelijkwaardige rente voor de groei van een investering || ||
|-
!scope="row"|SLN
| Geeft de rechtlijnige afschrijving van een activa voor één periode terug || ||
|-
!scope="row"|STOCKHISTORY
| Haalt historische gegevens op over een financieel instrument || ||
|-
!scope="row"|SYD
| Geeft de "sum-of-years" afschrijving van een activa voor een bepaalde periode terug || ||
|-
!scope="row"|TBILLEQ
| Geeft het obligatie-equivalente rendement voor een schatkistwissel terug || ||
|-
!scope="row"|TBILLPRICE
| Geeft de prijs per nominale waarde van $100 voor een schatkistwissel terug || ||
|-
!scope="row"|TBILLYIELD
| Geeft het rendement terug voor een schatkistwissel || ||
|-
!scope="row"|VDB
| Geeft de afschrijving van een activa terug voor een gespecificeerde of gedeeltelijke periode door gebruik te maken van een afnemende balansmethode || ||
|-
!scope="row"|XIRR
| Geeft het interne rendement terug voor een schema van kasstromen dat niet noodzakelijkerwijs periodiek is || ||
|-
!scope="row"|XNPV
| Geeft de netto contante waarde terug voor een schema van kasstromen dat niet noodzakelijkerwijs periodiek is || ||
|-
!scope="row"|YIELD
| Geeft het rendement terug op een zekerheid dat periodieke rente betaalt || ||
|-
!scope="row"|YIELDDISC
| Geeft de jaarlijkse opbrengst terug voor een gedisconteerde zekerheid; bijvoorbeeld een schatkistwissel || ||
|-
!scope="row"|YIELDMAT
| Geeft het jaarlijkse rendement terug van een zekerheid dat rente betaalt op een vervaldatum || ||
|}
<span id="Information"></span>
== Informatie ==
{| class="wikitable collapsible sortable"
|+Lijst van informatie Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|CELL
| Geeft informatie terug over de opmaak, locatie of inhoud van een cel || ||
|-
!scope="row"|ERROR.TYPE
| Geeft een getal terug dat overeenkomt met een fouttype || ||
|-
!scope="row"|INFO
| Geeft informatie terug over de huidige operationele omgeving || ||
|-
!scope="row"|ISBLANK
| Geeft TRUE terug als de waarde leeg is || {{Z+|Z10008}} ||
|-
!scope="row"|ISERR
| Geeft TRUE terug als de waarde een willekeurige foutwaarde is anders dan #N/A || ||
|-
!scope="row"|ISERROR
| Geeft TRUE terug als de waarde een willekeurige foutwaarde is || {{Z+|Z20107}} ||
|-
!scope="row"|ISEVEN
| Geeft TRUE terug als het getal even is || {{Z+|Z12480}} ||
|-
!scope="row"|ISFORMULA
| Geeft TRUE terug als er een verwijzing is naar een cel die een formule bevat || ||
|-
!scope="row"|ISLOGICAL
| Geeft TRUE terug als de waarde een logische waarde is || ||
|-
!scope="row"|ISNA
| Geeft TRUE terug als de waarde de #N/A-foutwaarde is || ||
|-
!scope="row"|ISNONTEXT
| Geeft TRUE terug als de waarde geen tekst is || ||
|-
!scope="row"|ISNUMBER
| Geeft TRUE als de waarde een getal is || {{Z+|Z10715}} ||
|-
!scope="row"|ISODD
| Geeft TRUE terug als het getal oneven is || {{Z+|Z12429}} ||
|-
!scope="row"|ISOMITTED
| Controleert of de waarde in een LAMBDA ontbreekt en geeft TRUE of FALSE terug || ||
|-
!scope="row"|ISREF
| Geeft TRUE terug als de waarde een referentie is || ||
|-
!scope="row"|ISTEXT
| Geeft TRUE terug als de waarde een tekst is || ||
|-
!scope="row"|N
| Geeft een waarde terug die is omgezet in een getal || ||
|-
!scope="row"|NA
| Geeft de foutwaarde #N/A terug || ||
|-
!scope="row"|SHEET
| Geeft het bladnummer van het gerefereerde blad terug || ||
|-
!scope="row"|SHEETS
| Geeft het aantal bladen in een referentie terug || ||
|-
!scope="row"|TYPE
| Geeft een getal terug dat het datatype van een waarde aangeeft || ||
|}
<span id="Logical"></span>
== Logica ==
{| class="wikitable collapsible sortable"
|+Lijst van logische Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|AND
| Geeft TRUE terug als al zijn argumenten TRUE zijn || {{Z+|Z10174}} ||
|-
!scope="row"|BYCOL
| Past een LAMBDA toe op elke kolom en geeft een array van de resultaten terug || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|BYROW
| Past een LAMBDA toe op elke rij en geeft een array van de resultaten terug || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|FALSE
| Geeft de logische waarde FALSE terug || {{Z+|Z10206}} ||
|-
!scope="row"|IF
| Specificeert een logische test om uit te voeren || {{Z+|Z802}}, {{Z+|Z11542}} ||
|-
!scope="row"|IFERROR
| Geeft een waarde terug die u specificeert als een formule evalueert naar een fout; geeft anders het resultaat van de formule terug || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|IFNA
| Geeft de door u opgegeven waarde terug als de expressie wordt opgelost naar #N/A, anders geeft het resultaat van de expressie terug || ||
|-
!scope="row"|IFS
| Controleert of aan één of meer voorwaarden is voldaan en geeft een waarde terug die overeenkomt met de eerste TRUE-voorwaarde. || {{Z+|Z19601}} ||
|-
!scope="row"|LAMBDA
| Maak aangepaste, herbruikbare functies en roept ze met een vriendelijke naam aan || {{Z+|Z8}} ||
|-
!scope="row"|LET
| Wijst een naam toe aan het resultaat van een berekening || ||
|-
!scope="row"|MAKEARRAY
| Geeft een berekende array van een gespecificeerde rij- en kolomgrootte terug door een LAMBDA toe te passen || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|MAP
| Geeft een array terug die wordt gevormd door elke waarde in de array(s) te koppelen naar een nieuwe waarde door een LAMBDA toe te passen om een nieuwe waarde te creëren || {{Z+|Z873}} ||
|-
!scope="row"|NOT
| Keert de logische waarde van zijn argument om || {{Z+|Z10216}} ||
|-
!scope="row"|OR
| Geeft TRUE terug als minstens een van de argumenten TRUE is || {{Z+|Z10184}} ||
|-
!scope="row"|REDUCE
| Reduceert een array tot een enkele waarde door een LAMBDA toe te passen op elke waarde en de totale waarde in de accumulator terug te geven || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|SCAN
| Scant een array door een LAMBDA toe te passen op elke waarde en geeft een array terug met elke tussenliggende waarde || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|SWITCH
| Evalueert een expressie aan de hand van een lijst met waarden en geeft het resultaat terug dat overeenkomt met de eerste overeenkomende waarde. Als er geen overeenkomenst is, kan een optionele standaardwaarde worden teruggegeven. || ||
|-
!scope="row"|TRUE
| Geeft de logische waarde TRUE terug || {{Z+|Z10210}} ||
|-
!scope="row"|XOR
| Geeft een logisch exclusieve OF alle argumenten terug || {{Z+|Z10237}} ||
|}
<span id="Lookup_and_reference"></span>
== Opzoeken en referentie ==
{| class="wikitable collapsible sortable"
|+Lijst van zoek- en referentiefuncties van Excel
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|VSTACK
| Voegt arrays verticaal en in volgorde toe om een groter array terug te geven || ||
|-
!scope="row"|WRAPCOLS
| Wikkelt de opgegeven rij of kolom met waarden in kolommen na een bepaald aantal elementen || ||
|-
!scope="row"|WRAPROWS
| Wikkelt de opgegeven rij of kolom met waarden in rijen na een bepaald aantal elementen || ||
|-
!scope="row"|ADDRESS
| Geeft een verwijzing als tekst terug naar een enkele cel in een werkblad || ||
|-
!scope="row"|AREAS
| Geeft het aantal velden in een referentie terug || ||
|-
!scope="row"|CHOOSE
| Kiest een waarde uit een lijst van waarden || ||
|-
!scope="row"|CHOOSECOLS
| Geeft de gespecificeerde kolommen terug uit een array || ||
|-
!scope="row"|CHOOSEROWS
| Geeft de gespecificeerde rijen terug uit een array || ||
|-
!scope="row"|COLUMN
| Geeft het kolomnummer van een referentie terug || ||
|-
!scope="row"|COLUMNS
| Geeft het aantal kolommen in een referentie terug || ||
|-
!scope="row"|DROP
| Sluit een bepaald aantal rijen of kolommen uit van het begin of einde van een array || ||
|-
!scope="row"|EXPAND
| Breidt een array uit of vult deze op tot gespecificeerde rij- en kolomafmetingen || ||
|-
!scope="row"|FILTER
| Filtert een reeks gegevens op basis van criteria die u definieert || ||
|-
!scope="row"|FORMULATEXT
| Geeft de formule op de gegeven referentie terug als tekst || ||
|-
!scope="row"|GETPIVOTDATA
| Retourneert gegevens die zijn opgeslagen in een draaitafelrapport (PivotTable) || ||
|-
!scope="row"|HLOOKUP
| Kijkt in de bovenste rij van een array en geeft de waarde van de aangegeven cel terug || ||
|-
!scope="row"|HSTACK
| Voegt arrays horizontaal en in volgorde toe om een groter array terug te geven || ||
|-
!scope="row"|HYPERLINK
| Maakt een snelkoppeling of sprong aan die een document opent dat is opgeslagen op een netwerkserver, een intranet of het internet || ||
|-
!scope="row"|IMAGE
| Geeft een afbeelding terug uit een gegeven bron || ||
|-
!scope="row"|INDEX
| Gebruikt een index om een waarde te kiezen uit een referentie of array || {{Z+|Z13397}} || Controleren Indexbase
|-
!scope="row"|INDIRECT
| Geeft een referentie terug die wordt aangegeven door een tekstwaarde || ||
|-
!scope="row"|LOOKUP
| Zoekt waarden op in een vector of array || {{Z+|Z13708}} || Controleer of het mogelijk is in arrays met meerdere kolommen.
|-
!scope="row"|MATCH
| Zoekt waarden op in een referentie of array || ||
|-
!scope="row"|OFFSET
| Geeft een referentie-offset terug ten opzichte van een gegeven referentie || ||
|-
!scope="row"|ROW
| Geeft het rijnummer van een referentie terug || ||
|-
!scope="row"|ROWS
| Geeft het aantal rijen in een referentie terug || ||
|-
!scope="row"|RTD
| Haalt realtime data op uit een programma dat COM-automatisering ondersteunt || ||
|-
!scope="row"|SORT
| Sorteert de inhoud van een bereik of een array || ||
|-
!scope="row"|SORTBY
| Sorteert de inhoud van een bereik of array op basis van de waarden in een overeenkomstige bereik of array || ||
|-
!scope="row"|TAKE
| Geeft een gespecificeerd aantal aaneengesloten rijen of kolommen terug vanaf het begin of einde van een array || ||
|-
!scope="row"|TOCOL
| Geeft het array terug in één kolom || ||
|-
!scope="row"|TOROW
| Geeft het array terug in één rij || ||
|-
!scope="row"|TRANSPOSE
| Geeft het array terug waarbij de rijen en kolommen omgedraaid zijn. || ||
|-
!scope="row"|UNIQUE
| Geeft een lijst van unieke waarden terug in een lijst of bereik || ||
|-
!scope="row"|VLOOKUP
| Kijkt in de eerste kolom van een array en beweegt over de rij om de waarde van een cel terug te geven || ||
|-
!scope="row"|XLOOKUP
| Zoekt in een bereik of array, en geeft een item terug dat overeenkomt met de eerste gevonden match. Als er geen match bestaat, kan XLOOKUP de dichtstbijzijnde (benaderende) match teruggeven. || ||
|-
!scope="row"|XMATCH
| Geeft de relatieve positie van een item in een array of bereik van cellen terug. || ||
|}
<span id="Math_and_trigonometry"></span>
== Wiskunde en trigonometrie ==
{| class="wikitable collapsible sortable"
|+Lijst van Wiskunde en trigonometrie Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|ABS
| Geeft de absolute waarde van een getal terug || {{Z+|Z11235}} ||
|-
!scope="row"|ACOS
| Geeft de arccosinus van een getal terug || {{Z+|Z12497}} ||
|-
!scope="row"|ACOSH
| Geeft de inverse hyperbolische cosinus van een getal terug || {{Z+|Z12500}} ||
|-
!scope="row"|ACOT
| Geeft de arccotangent van een getal terug || ||
|-
!scope="row"|ACOTH
| Geeft de hyperbolische arccotangent van een getal terug || ||
|-
!scope="row"|AGGREGATE
| Geeft een aggregaat terug in een lijst of database || ||
|-
!scope="row"|ARABIC
| Zet een Romeins getal om in een gewoon getal || {{Z+|Z11023}} ||
|-
!scope="row"|ASIN
| Geeft de arcsinus van een getal terug || {{Z+|Z12505}} ||
|-
!scope="row"|ASINH
| Geeft de inverse hyperbolische sinus van een getal terug || {{Z+|Z12509}} ||
|-
!scope="row"|ATAN
| Geeft de arctangens van een getal terug || ||
|-
!scope="row"|ATAN2
| Geeft de arctangens terug van x- en y-coördinaten || ||
|-
!scope="row"|ATANH
| Geeft de inverse hyperbolische tangens van een getal terug || ||
|-
!scope="row"|BASE
| Zet een getal om in een tekstrepresentatie met de gegeven radix (basis) || ||
|-
!scope="row"|CEILING.MATH
| Rond een getal naar boven af op het dichtstbijzijnde geheel getal of naar het dichtstbijzijnde veelvoud van significantie || ||
|-
!scope="row"|CEILING.PRECISE
| Rond een getal af op het dichtstbijzijnde geheel getal of op het dichtstbijzijnde veelvoud van significantie. Ongeacht het teken van het getal wordt het getal afgerond. || ||
|-
!scope="row"|COMBIN
| Geeft het aantal combinaties terug voor een gegeven aantal objecten || ||
|-
!scope="row"|COMBINA
| Geeft het aantal combinaties (met herhalingen) terug voor een gegeven aantal items || ||
|-
!scope="row"|COS
| Geeft de cosinus van een getal terug || {{Z+|Z12473}}
|
|-
!scope="row"|COSH
| Geeft de hyperbolische cosinus van een getal terug || ||
|-
!scope="row"|COT
| Geeft de hyperbolische cosinus van een getal terug || ||
|-
!scope="row"|COTH
| Geeft de cotangens van een hoek terug || ||
|-
!scope="row"|CSC
| Geeft de cosecant van een hoek terug || ||
|-
!scope="row"|CSCH
| Geeft de hyperbolische cosecant van een hoek terug || ||
|-
!scope="row"|DECIMAL
| Zet een tekstweergave van een getal in een gegeven basis om in een decimaal getal || ||
|-
!scope="row"|DEGREES
| Zet radialen om in graden || ||
|-
!scope="row"|EVEN
| Rond een getal af naar het dichtstbijzijnde even geheel getal || ||
|-
!scope="row"|EXP
| Geeft e terug die wordt verhoogd tot de macht van een gegeven getal || ||
|-
!scope="row"|FACT
| Geeft de faculteit van een getal terug || ||
|-
!scope="row"|FACTDOUBLE
| Geeft de dubbele faculteit van een getal terug || ||
|-
!scope="row"|FLOOR.MATH
| Rond een getal naar beneden af op het dichtstbijzijnde geheel getal of naar het dichtstbijzijnde veelvoud van significantie || ||
|-
!scope="row"|FLOOR.PRECISE
| Rond een getal af op het dichtstbijzijnde geheel getal of op het dichtstbijzijnde veelvoud van significantie. Ongeacht het teken van het getal wordt het getal afgerond. || ||
|-
!scope="row"|GCD
| Geeft de grootste gemene deler terug || ||
|-
!scope="row"|INT
| Rond een getal af naar beneden naar het dichtstbijzijnde geheel getal || ||
|-
!scope="row"|ISO.CEILING
| Geeft een getal terug dat wordt afgerond naar het dichtstbijzijnde geheel getal of naar het dichtstbijzijnde veelvoud van significantie || ||
|-
!scope="row"|LCM
| Geeft het kleinste gemeenschappelijke veelvoud terug || ||
|-
!scope="row"|LN
| Geeft het natuurlijke logaritme van een getal terug || ||
|-
!scope="row"|LOG
| Geeft de logaritme van een getal terug met een opgegeven basisgetal || ||
|-
!scope="row"|LOG10
| Geeft de logaritme van basis-10 van een getal terug || ||
|-
!scope="row"|MDETERM
| Geeft de matrixdeterminant van een array terug || ||
|-
!scope="row"|MINVERSE
| Geeft de matrixinverse van een array terug || ||
|-
!scope="row"|MMULT
| Geeft het matrixproduct van twee arrays terug || ||
|-
!scope="row"|MOD
| Geeft de rest terug uit een deling || {{Z+|Z12476}} ||
|-
!scope="row"|MROUND
| Geeft een getal terug dat wordt afgerond op het gewenste veelvoud || ||
|-
!scope="row"|MULTINOMIAL
| Geeft de som (multinomial) van een verzameling getallen terug || ||
|-
!scope="row"|MUNIT
| Geeft de eenheidsmatrix voor de gespecificeerde dimensie terug || ||
|-
!scope="row"|ODD
| Rond een getal af naar boven op het dichtstbijzijnde oneven geheel getal || ||
|-
!scope="row"|PI
| Geeft de waarde van Pi terug || {{Z+|Z20862}} ||
|-
!scope="row"|POWER
| Geeft het resultaat terug van een getal dat tot een macht is verhoogd || {{Z+|Z13647}} ||
|-
!scope="row"|PRODUCT
| Vermenigvuldigt zijn argumenten || {{Z+|Z10862}} ||
|-
!scope="row"|QUOTIENT
| Geeft het gehele deel terug van een deling || {{Z+|Z12522}} ||
|-
!scope="row"|RADIANS
| Zet graden om in radialen || ||
|-
!scope="row"|RAND
| Geeft een willekeurig getal tussen 0 en 1 terug || ||
|-
!scope="row"|RANDARRAY
| Geeft een reeks willekeurige getallen tussen 0 en 1 terug. U kunt echter het aantal rijen en kolommen aangeven om in te vullen, de minimale en maximale waarden en of u gehele getallen of decimalen wilt terug krijgen. || ||
|-
!scope="row"|RANDBETWEEN
| Geeft een willekeurig getal terug tussen de getallen die u heeft gespecificeerd || ||
|-
!scope="row"|ROMAN
| Zet een Arabisch getal om naar een Romeins getal, als tekst || {{Z+|Z11022}} ||
|-
!scope="row"|ROUND
| Rondt een getal af op een bepaald aantal cijfers achter de komma || ||
|-
!scope="row"|ROUNDDOWN
| Rondt een getal naar beneden af, richting nul || ||
|-
!scope="row"|ROUNDUP
| Rondt een getal naar boven af, weg van nul || ||
|-
!scope="row"|SEC
| Geeft de secant van een hoek terug || ||
|-
!scope="row"|SECH
| Geeft de hyperbolische secant van een hoek terug || ||
|-
!scope="row"|SEQUENCE
| Genereert een lijst met sequentiële getallen in een array, zoals 1, 2, 3, 4 || ||
|-
!scope="row"|SERIESSUM
| Geef de som terug van macht serie op basis van de formule || ||
|-
!scope="row"|SIGN
| Geeft het teken van een getal terug || ||
|-
!scope="row"|SIN
| Geeft de sinus van een hoek terug || ||
|-
!scope="row"|SINH
| Geeft de hyperbolische sinus van een getal terug || ||
|-
!scope="row"|SQRT
| Geeft een positieve wortel terug || ||
|-
!scope="row"|SQRTPI
| Geeft de wortel terug van (getal * pi) || ||
|-
!scope="row"|SUBTOTAL
| Geeft een subtotaal terug van een lijst of database || ||
|-
!scope="row"|SUM
| Telt de argumenten op || {{Z+|Z12720}} ||
|-
!scope="row"|SUMIF
| Voegt de cellen toe die gespecificeerd zijn volgens een bepaald criterium || ||
|-
!scope="row"|SUMIFS
| Voegt de cellen toe in een bereik dat aan meerdere criteria voldoet || ||
|-
!scope="row"|SUMPRODUCT
| Geeft de som van de producten van de overeenkomstige arraycomponenten terug. || ||
|-
!scope="row"|SUMSQ
| Geeft de som van de kwadraten van de argumenten terug || ||
|-
!scope="row"|SUMX2MY2
| Geeft de som terug van het verschil van kwadraten van overeenkomstige waarden in twee arrays || ||
|-
!scope="row"|SUMX2PY2
| Geeft de som terug van de som van de kwadraten van de overeenkomstige waarden in twee arrays || ||
|-
!scope="row"|SUMXMY2
| Geeft de som van kwadraten van verschillen van overeenkomstige waarden in twee arrays terug. || ||
|-
!scope="row"|TAN
| Geeft de tangens van een getal terug || ||
|-
!scope="row"|TANH
| Geeft de hyperbolische tangens van een getal terug || ||
|-
!scope="row"|TRUNC
| Kapt een getal af tot een geheel getal || ||
|}
<span id="Statistical"></span>
== Statistiek ==
{| class="wikitable collapsible sortable"
|+Lijst van statistiek Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|AVEDEV
| Geeft het gemiddelde van de absolute afwijkingen van datapunten van hun gemiddelde terug. || ||
|-
!scope="row"|AVERAGE
| Geeft het gemiddelde van zijn argumenten terug || ||
|-
!scope="row"|AVERAGEA
| Geeft het gemiddelde van zijn argumenten terug, inclusief getallen, tekst en logische waarden || ||
|-
!scope="row"|AVERAGEIF
| Geeft het gemiddelde (rekenkundig gemiddelde) terug van alle cellen in een bereik die aan een gegeven criterium voldoen || ||
|-
!scope="row"|AVERAGEIFS
| Geeft het gemiddelde (rekenkundig gemiddelde) terug van alle cellen die aan meerdere criteria voldoen. || ||
|-
!scope="row"|BETA.DIST
| Geeft de bèta-cumulatieve verdelingsfunctie terug || ||
|-
!scope="row"|BETA.INV
| Geeft de inverse van de cumulatieve verdelingsfunctie terug voor een gespecificeerde bètaverdeling || ||
|-
!scope="row"|BINOM.DIST
| Geeft de binomiale verdelingskans van de individuele term terug || ||
|-
!scope="row"|BINOM.DIST.RANGE
| Geeft de waarschijnlijkheid van een proefresultaat terug met behulp van een binaire verdeling || ||
|-
!scope="row"|BINOM.INV
| Geeft de kleinste waarde terug waarvoor de cumulatieve binomiale verdeling kleiner is dan of gelijk aan een criteriumwaarde || ||
|-
!scope="row"|CHISQ.DIST
| Geeft de cumulatieve beta-waarschijnlijkheid dichtheidsfunctie terug || ||
|-
!scope="row"|CHISQ.DIST.RT
| Geeft de eenzijdige kans van de chi-kwadraatverdeling terug || ||
|-
!scope="row"|CHISQ.INV
| Geeft de cumulatieve beta-waarschijnlijkheid dichtheidsfunctie terug || ||
|-
!scope="row"|CHISQ.INV.RT
| Geeft de inverse van de eenzijdige kans van de chi-kwadraatverdeling terug || ||
|-
!scope="row"|CHISQ.TEST
| Geeft de test voor onafhankelijkheid terug || ||
|-
!scope="row"|CONFIDENCE.NORM
| Geeft het betrouwbaarheidsinterval terug voor een populatiegemiddelde || ||
|-
!scope="row"|CONFIDENCE.T
| Geeft het vertrouwensinterval voor een bevolkingsgemiddelde terug, met behulp van de t-verdeling || ||
|-
!scope="row"|CORREL
| Geeft de correlatiecoëfficiënt tussen twee gegevenssets terug || ||
|-
!scope="row"|COUNT
| Telt het aantal getallen in de lijst met argumenten || ||
|-
!scope="row"|COUNTA
| Telt hoeveel waarden er zijn in de lijst met argumenten || ||
|-
!scope="row"|COUNTBLANK
| Telt het aantal lege cellen binnen een bereik || ||
|-
!scope="row"|COUNTIF
| Telt het aantal cellen binnen een bereik dat aan de gegeven criteria voldoet || ||
|-
!scope="row"|COUNTIFS
| Telt het aantal cellen binnen een bereik dat aan meerdere criteria voldoet || ||
|-
!scope="row"|COVARIANCE.P
| Geeft covariantie terug, het gemiddelde van de producten van gepaarde afwijkingen || ||
|-
!scope="row"|COVARIANCE.S
| Geeft de covariantie van de steekproef terug, het gemiddelde van de productafwijkingen voor elk datapuntpaar in twee datasets || ||
|-
!scope="row"|DEVSQ
| Geeft de som van kwadraten van afwijkingen terug. || ||
|-
!scope="row"|EXPON.DIST
| Geeft de exponentiële verdeling terug || ||
|-
!scope="row"|F.DIST
| Geeft de F-kansverdeling terug || ||
|-
!scope="row"|F.DIST.RT
| Geeft de F-kansverdeling terug || ||
|-
!scope="row"|F.INV
| Geeft de inverse van de F-kansverdeling terug || ||
|-
!scope="row"|F.INV.RT
| Geeft de inverse van de F-kansverdeling terug || ||
|-
!scope="row"|FISHER
| Geeft de Fisher-transformatie terug || ||
|-
!scope="row"|FISHERINV
| Geeft de inverse van de Fisher-transformatie terug || ||
|-
!scope="row"|FORECAST
| Geeft een waarde terug volgens een lineaire trend || ||
|-
!scope="row"|FORECAST.ETS
| Geeft een toekomstige waarde terug op basis van bestaande (historische) waarden door gebruik te maken van de AAA-versie van het Exponential Smoothing (ETS) algoritme || ||
|-
!scope="row"|FORECAST.ETS.CONFINT
| Geeft een betrouwbaarheidsinterval terug voor de prognosewaarde op de opgegeven streefdatum || ||
|-
!scope="row"|FORECAST.ETS.SEASONALITY
| Geeft de lengte van het repetitieve patroon terug dat Excel detecteert voor de opgegeven tijdreeks || ||
|-
!scope="row"|FORECAST.ETS.STAT
| Geeft een statistische waarde terug als resultaat van tijdreeksvoorspellingen || ||
|-
!scope="row"|FORECAST.LINEAR
| Geeft een toekomstige waarde terug op basis van bestaande waarden || ||
|-
!scope="row"|FREQUENCY
| Geeft een frequentieverdeling terug als een verticale array || ||
|-
!scope="row"|F.TEST
| Geeft het resultaat van een F-test terug || ||
|-
!scope="row"|GAMMA
| Geeft de waarde van de Gamma-functie terug || ||
|-
!scope="row"|GAMMA.DIST
| Geeft de gamma-verdeling terug || ||
|-
!scope="row"|GAMMA.INV
| Geeft de inverse van de cumulatieve gammaverdeling terug || ||
|-
!scope="row"|GAMMALN
| Geeft het natuurlijke logaritme van de gammafunctie, Γ(x) terug || ||
|-
!scope="row"|GAMMALN.PRECISE
| Geeft het natuurlijke logaritme van de gammafunctie, Γ(x) terug || ||
|-
!scope="row"|GAUSS
| Geeft 0,5 minder dan de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|GEOMEAN
| Geeft het geometrische gemiddelde terug || ||
|-
!scope="row"|GROWTH
| Geeft waarden terug langs een exponentiële trend || ||
|-
!scope="row"|HARMEAN
| Geeft het harmonische gemiddelde terug || ||
|-
!scope="row"|HYPGEOM.DIST
| Geeft de hypergeometrische verdeling terug || ||
|-
!scope="row"|INTERCEPT
| Geeft de interceptie terug van de lineaire regressielijn || ||
|-
!scope="row"|KURT
| Geeft de kurtosis van een dataset terug || ||
|-
!scope="row"|LARGE
| Geeft de k-de grootste waarde in een dataset terug || ||
|-
!scope="row"|LINEST
| Geeft de parameters volgens een lineaire trend terug || ||
|-
!scope="row"|LOGEST
| Geeft de parameters volgens een exponentiële trend terug || ||
|-
!scope="row"|LOGNORM.DIST
| Geeft de cumulatieve lognormale verdeling terug || ||
|-
!scope="row"|LOGNORM.INV
| Geeft de inverse van de lognormale cumulatieve verdeling terug || ||
|-
!scope="row"|MAX
| Geeft de maximale waarde in een lijst van argumenten terug || ||
|-
!scope="row"|MAXA
| Geeft de maximale waarde in een lijst met argumenten (inclusief getallen, tekst en logische waarden) terug || ||
|-
!scope="row"|MAXIFS
| Geeft de maximale waarde tussen cellen die zijn gespecificeerd door een bepaalde reeks voorwaarden of criteria, terug || ||
|-
!scope="row"|MEDIAN
| Geeft de mediaan van de gegeven getallen terug || ||
|-
!scope="row"|MIN
| Geeft de minimale waarde in een lijst van argumenten terug ||
* {{z+|Z19509}}
* {{Z+|Z21341}}
||
|-
!scope="row"|MINIFS
| Geeft de minimale waarde tussen cellen die zijn gespecificeerd door een bepaalde reeks voorwaarden of criteria, terug || ||
|-
!scope="row"|MINA
| Geeft de kleinste waarde in een lijst met argumenten (inclusief getallen, tekst en logische waarden) terug || ||
|-
!scope="row"|MODE.MULT
| Geeft een verticale array terug van de meest voorkomende, of repetitieve waarden in een array of databereik || ||
|-
!scope="row"|MODE.SNGL
| Geeft de meest voorkomende waarde in een dataset terug || ||
|-
!scope="row"|NEGBINOM.DIST
| Geeft de negatieve binomiale verdeling terug || ||
|-
!scope="row"|NORM.DIST
| Geeft de normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORMINV
| Geeft de inverse van de normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORM.S.DIST
| Geeft de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORM.S.INV
| Geeft de inverse van de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|PEARSON
| Geeft de Pearson-productmoment-correlatiecoëfficiënt terug || ||
|-
!scope="row"|PERCENTILE.EXC
| Geeft het k-de percentiel van waarden in een bereik terug, waarbij k in het bereik 0..1 ligt, exclusief || ||
|-
!scope="row"|PERCENTILE.INC
| Geeft het k-de percentiel van waarden in een bereik terug || ||
|-
!scope="row"|PERCENTRANK.EXC
| Geeft de rangorde van een waarde in een dataset terug als een percentage (0..1, exclusief) van de dataset || ||
|-
!scope="row"|PERCENTRANK.INC
| Geeft de procentuele rang van een waarde in een dataset terug || ||
|-
!scope="row"|PERMUT
| Geeft het aantal permutaties terug voor een gegeven aantal objecten || ||
|-
!scope="row"|PERMUTATIONA
| Geeft het aantal permutaties terug voor een gegeven aantal objecten (met herhalingen) dat kan worden geselecteerd uit het totaal aantal objecten || ||
|-
!scope="row"|PHI
| Geeft de waarde van de dichtheidsfunctie (density) terug voor een standaard normale verdeling || ||
|-
!scope="row"|POISSON.DIST
| Geeft de Poisson-verdeling terug || ||
|-
!scope="row"|PROB
| Geeft de kans terug dat waarden in een bereik tussen twee limieten liggen || ||
|-
!scope="row"|QUARTILE.EXC
| Geeft het kwartiel van de dataset terug, gebaseerd op percentielwaarden van 0..1, exclusief || ||
|-
!scope="row"|QUARTILE.INC
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the quartile of a data set</span> || ||
|-
!scope="row"|RANK.AVG
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the rank of a number in a list of numbers; duplicate values receive the average rank</span> || ||
|-
!scope="row"|RANK.EQ
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the rank of a number in a list of numbers; duplicate values receive the same rank</span> || ||
|-
!scope="row"|RSQ
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the square of the Pearson product moment correlation coefficient</span> || ||
|-
!scope="row"|SKEW
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the skewness of a distribution</span> || ||
|-
!scope="row"|SKEW.P
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the skewness of a distribution based on a population: a characterization of the degree of asymmetry of a distribution around its mean</span> || ||
|-
!scope="row"|SLOPE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the slope of the linear regression line</span> || ||
|-
!scope="row"|SMALL
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the k-th smallest value in a data set</span> || ||
|-
!scope="row"|STANDARDIZE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns a normalized value</span> || ||
|-
!scope="row"|STDEV.P
| <span lang="en" dir="ltr" class="mw-content-ltr">Calculates standard deviation based on the entire population</span> || ||
|-
!scope="row"|STDEV.S
| <span lang="en" dir="ltr" class="mw-content-ltr">Estimates standard deviation based on a sample</span> || ||
|-
!scope="row"|STDEVA
| <span lang="en" dir="ltr" class="mw-content-ltr">Estimates standard deviation based on a sample, including numbers, text, and logical values</span> || ||
|-
!scope="row"|STDEVPA
| <span lang="en" dir="ltr" class="mw-content-ltr">Calculates standard deviation based on the entire population, including numbers, text, and logical values</span> || ||
|-
!scope="row"|STEYX
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the standard error of the predicted y-value for each x in the regression</span> || ||
|-
!scope="row"|T.DIST
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Percentage Points (probability) for the Student t-distribution</span> || ||
|-
!scope="row"|T.DIST.2T
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Percentage Points (probability) for the Student t-distribution</span> || ||
|-
!scope="row"|T.DIST.RT
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Student's t-distribution</span> || ||
|-
!scope="row"|T.INV
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the t-value of the Student's t-distribution as a function of the probability and the degrees of freedom</span> || ||
|-
!scope="row"|T.INV.2T
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the inverse of the Student's t-distribution</span> || ||
|-
!scope="row"|TREND
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns values along a linear trend</span> || ||
|-
!scope="row"|TRIMMEAN
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the mean of the interior of a data set</span> || ||
|-
!scope="row"|T.TEST
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the probability associated with a Student's t-test</span> || ||
|-
!scope="row"|VAR.P
| <span lang="en" dir="ltr" class="mw-content-ltr">Calculates variance based on the entire population</span> || ||
|-
!scope="row"|VAR.S
| <span lang="en" dir="ltr" class="mw-content-ltr">Estimates variance based on a sample</span> || ||
|-
!scope="row"|VARA
| <span lang="en" dir="ltr" class="mw-content-ltr">Estimates variance based on a sample, including numbers, text, and logical values</span> || ||
|-
!scope="row"|VARPA
| <span lang="en" dir="ltr" class="mw-content-ltr">Calculates variance based on the entire population, including numbers, text, and logical values</span> || ||
|-
!scope="row"|WEIBULL.DIST
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Weibull distribution</span> || ||
|-
!scope="row"|Z.TEST
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the one-tailed probability-value of a z-test</span> || ||
|}
<span id="Text"></span>
== Tekst ==
{| class="wikitable collapsible sortable"
|+Lijst van tekst Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|ARRAYTOTEXT
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns an array of text values from any specified range</span> || ||
|-
!scope="row"|ASC
| <span lang="en" dir="ltr" class="mw-content-ltr">Changes full-width (double-byte) English letters or katakana within a character string to half-width (single-byte) characters</span> || ||
|-
!scope="row"|BAHTTEXT
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts a number to text, using the ß (baht) currency format</span> || ||
|-
!scope="row"|CHAR
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the character specified by the code number</span> || ||
|-
!scope="row"|CLEAN
| <span lang="en" dir="ltr" class="mw-content-ltr">Removes all nonprintable characters from text</span> || ||
|-
!scope="row"|CODE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns a numeric code for the first character in a text string</span> || ||
|-
!scope="row"|CONCAT
| <span lang="en" dir="ltr" class="mw-content-ltr">Combines the text from multiple ranges and/or strings, but it doesn't provide the delimiter or IgnoreEmpty arguments.</span> || {{Z+|Z10000}} || <span lang="en" dir="ltr" class="mw-content-ltr">WF only takes two strings</span>
|-
!scope="row"|CONCATENATE
| <span lang="en" dir="ltr" class="mw-content-ltr">Joins several text items into one text item</span> || {{Z+|Z10000}} ||
|-
!scope="row"|DBCS
| <span lang="en" dir="ltr" class="mw-content-ltr">Changes half-width (single-byte) English letters or katakana within a character string to full-width (double-byte) characters</span> || ||
|-
!scope="row"|DOLLAR
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts a number to text, using the $ (dollar) currency format</span> || ||
|-
!scope="row"|EXACT
| <span lang="en" dir="ltr" class="mw-content-ltr">Checks to see if two text values are identical</span> || {{Z+|Z866}} ||
|-
!scope="row"|FIND, FINDBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Finds one text value within another (case-sensitive)</span> || ||
|-
!scope="row"|FIXED
| <span lang="en" dir="ltr" class="mw-content-ltr">Formats a number as text with a fixed number of decimals</span> || ||
|-
!scope="row"|JIS
| <span lang="en" dir="ltr" class="mw-content-ltr">Changes half-width (single-byte) characters within a string to full-width (double-byte) characters</span> || ||
|-
!scope="row"|LEFT, LEFTBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the leftmost characters from a text value</span> || ||
|-
!scope="row"|LEN, LENBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the number of characters in a text string</span> || {{Z+|Z11040}} ||
|-
!scope="row"|LOWER
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts text to lowercase</span> || {{Z+|Z10047}} ||
|-
!scope="row"|MID, MIDBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns a specific number of characters from a text string starting at the position you specify</span> || ||
|-
!scope="row"|NUMBERVALUE
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts text to number in a locale-independent manner</span> || ||
|-
!scope="row"|PHONETIC
| <span lang="en" dir="ltr" class="mw-content-ltr">Extracts the phonetic (furigana) characters from a text string</span> || ||
|-
!scope="row"|PROPER
| <span lang="en" dir="ltr" class="mw-content-ltr">Capitalizes the first letter in each word of a text value</span> || {{Z+|Z10251}} ||
|-
!scope="row"|REPLACE, REPLACEBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Replaces characters within text</span> || ||
|-
!scope="row"|REPT
| <span lang="en" dir="ltr" class="mw-content-ltr">Repeats text a given number of times</span> || {{Z+|Z10911}} ||
|-
!scope="row"|RIGHT, RIGHTBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the rightmost characters from a text value</span> || ||
|-
!scope="row"|SEARCH, SEARCHBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Finds one text value within another (not case-sensitive)</span> || ||
|-
!scope="row"|SUBSTITUTE
| <span lang="en" dir="ltr" class="mw-content-ltr">Substitutes new text for old text in a text string</span> || {{Z+|Z10075}} ||
|-
!scope="row"|T
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts its arguments to text</span> || ||
|-
!scope="row"|TEXT
| <span lang="en" dir="ltr" class="mw-content-ltr">Formats a number and converts it to text</span> || {{Z+|Z13713}} ||
|-
!scope="row"|TEXTAFTER
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns text that occurs after given character or string</span> || {{Z+|Z11412}} {{Z+|Z11416}} || <span lang="en" dir="ltr" class="mw-content-ltr">Excel has parameters to choose last (or Nth)</span>
|-
!scope="row"|TEXTBEFORE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns text that occurs before a given character or string</span> || {{Z+|Z11418}} {{Z+|Z11422}} || <span lang="en" dir="ltr" class="mw-content-ltr">Excel has parameters to choose last (or Nth)</span>
|-
!scope="row"|TEXTJOIN
| <span lang="en" dir="ltr" class="mw-content-ltr">Combines the text from multiple ranges and/or strings</span> || ||
|-
!scope="row"|TEXTSPLIT
| <span lang="en" dir="ltr" class="mw-content-ltr">Splits text strings by using column and row delimiters</span> || ||
|-
!scope="row"|TRIM
| <span lang="en" dir="ltr" class="mw-content-ltr">Removes spaces from text</span> || {{Z+|Z10079}} ||
|-
!scope="row"|UNICHAR
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Unicode character that is references by the given numeric value</span> || {{Z+|Z11534}} ||
|-
!scope="row"|UNICODE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the number (code point) that corresponds to the first character of the text</span> || {{Z+|Z11515}} ||
|-
!scope="row"|UPPER
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts text to uppercase</span> || {{Z+|Z10018}} ||
|-
!scope="row"|VALUE
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts a text argument to a number</span> || ||
|-
!scope="row"|VALUETOTEXT
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns text from any specified value</span> || ||
|-
!scope="row"|ENCODEURL
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns a URL-encoded string</span> || {{Z+|Z10761}} ||
|-
!scope="row"|FILTERXML
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns specific data from the XML content by using the specified XPath</span> || ||
|-
!scope="row"|WEBSERVICE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns data from a web service.</span>
|
|
|}
[[Category:Lists of functions]]
lizg6zmj60ie3bhtpzchebe673i7p0t
307278
307276
2026-09-01T19:48:50Z
HanV
6833
Created page with "Geeft het kwartiel van een dataset terug"
307278
wikitext
text/x-wiki
<languages/>
{{w|Microsoft Excel}} functies omvatten de volgende categorieën.
Deze pagina vermeldt Excel-functies als ze een bijbehorende [[Special:MyLanguage/Wikifunctions:Function model|WikiFuncties functie]] hebben.
<span id="Add-in_and_automation"></span>
== Interne en Automatisering ==
{| class="wikitable collapsible sortable"
|+Lijst van interne en automatiseringsfuncties van Excel
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|CALL
| Aanroep van een procedure in een dynamische link-bibliotheek of codebron || ||
|-
!scope="row"|EUROCONVERT
| Zet een getal om euro's, een getal van euro's omzetten naar een munt van een eurolid, of een getal van de ene munt van een eurolid naar een andere door de euro als tussenpersoon te gebruiken (triangulatie). || ||
|-
!scope="row"|REGISTER.ID
| Geeft de register-ID terug van de gespecificeerde dynamische link-bibliotheek (DLL) of codebron die eerder is geregistreerd || ||
|}
<span id="Compatibility"></span>
== Compatibiliteit ==
{| class="wikitable collapsible sortable"
|+Lijst van compatibiliteit Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|BETADIST
| Geeft de bèta-cumulatieve verdelingsfunctie terug || ||
|-
!scope="row"|BETAINV
| Geeft de inverse van de cumulatieve verdelingsfunctie terug voor een gespecificeerde bètaverdeling || ||
|-
!scope="row"|BINOMDIST
| Geeft de binomiale verdelingskans van de individuele term terug || ||
|-
!scope="row"|CEILING
| Rond een getal af naar het dichtstbijzijnde geheel getal of naar het dichtstbijzijnde veelvoud van significantie || ||
|-
!scope="row"|CHIDIST
| Geeft de eenzijdige kans van de chi-kwadraatverdeling terug || ||
|-
!scope="row"|CHIINV
| Geeft de inverse van de eenzijdige kans van de chi-kwadraatverdeling terug || ||
|-
!scope="row"|CHITEST
| Geeft de test voor onafhankelijkheid terug || ||
|-
!scope="row"|CONFIDENCE
| Geeft het betrouwbaarheidsinterval terug voor een populatiegemiddelde || ||
|-
!scope="row"|COVAR
| Geeft covariantie terug, het gemiddelde van de producten van gepaarde afwijkingen || ||
|-
!scope="row"|CRITBINOM
| Geeft de kleinste waarde terug waarvoor de cumulatieve binomiale verdeling kleiner is dan of gelijk aan een criteriumwaarde || ||
|-
!scope="row"|EXPONDIST
| Geeft de exponentiële verdeling terug || ||
|-
!scope="row"|FDIST
| Geeft de F kansverdeling terug || ||
|-
!scope="row"|FINV
| Geeft de inverse van de F-kansverdeling terug || ||
|-
!scope="row"|FLOOR
| Rondt een getal naar beneden af, richting nul || {{Z+|Z20032}}
{{Z+|Z20841}}
|
|-
!scope="row"|FTEST
| Geeft het resultaat van een F-test terug || ||
|-
!scope="row"|GAMMADIST
| Geeft de gamma-verdeling terug || ||
|-
!scope="row"|GAMMAINV
| Geeft de inverse van de cumulatieve gammaverdeling terug || ||
|-
!scope="row"|HYPGEOMDIST
| Geeft de hypergeometrische verdeling terug || ||
|-
!scope="row"|LOGINV
| Geeft de inverse van de lognormale cumulatieve verdeling terug || ||
|-
!scope="row"|LOGNORMDIST
| Geeft de cumulatieve lognormale verdeling terug || ||
|-
!scope="row"|MODE
| Geeft de meest voorkomende waarde in een dataset terug || {{Z+|Z21851}} ||
|-
!scope="row"|NEGBINOMDIST
| Geeft de negatieve binomiale verdeling terug || ||
|-
!scope="row"|NORMDIST
| Geeft de normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORM.INV
| Geeft de inverse van de normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORMSDIST
| Geeft de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORMSINV
| Geeft de inverse van de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|PERCENTILE
| Geeft het k-de percentiel van waarden in een bereik terug || ||
|-
!scope="row"|PERCENTRANK
| Geeft de procentuele rang van een waarde in een dataset terug || ||
|-
!scope="row"|POISSON
| Geeft de Poisson-verdeling terug || ||
|-
!scope="row"|QUARTILE
| Geeft het kwartiel van een dataset terug || ||
|-
!scope="row"|RANK
| Geeft de rangorde van een getal in een lijst van getallen terug || ||
|-
!scope="row"|STDEV
| Schatting van standaarddeviatie op basis van een steekproef || ||
|-
!scope="row"|STDEVP
| Berekent de standaarddeviatie op basis van de gehele populatie || ||
|-
!scope="row"|TDIST
| Geeft de Student's t-verdeling terug || ||
|-
!scope="row"|TINV
| Geeft de inverse van de Student's t-verdeling terug || ||
|-
!scope="row"|TTEST
| Geeft de kans terug die hoort bij de Student's t-test || ||
|-
!scope="row"|VAR
| Schatting van de variantie op basis van een steekproef || ||
|-
!scope="row"|VARP
| Berekent de variantie op basis van de gehele populatie || ||
|-
!scope="row"|WEIBULL
| Berekent de variantie op basis van de gehele populatie, inclusief getallen, tekst en logische waarden || ||
|-
!scope="row"|ZTEST
| Geeft de eenzijdige kanswaarde van een z-test terug || ||
|}
== Cube ==
{| class="wikitable collapsible sortable"
|+Lijst van Cube Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|CUBEKPIMEMBER
| Geeft een naam, eigenschap en maatstaf (Key Performance Indicator) (KPI) terug en toont de naam en eigenschap in de cel. Een KPI is een kwantificeerbare maatstaf, zoals de maandelijkse brutowinst of het kwartaalomzet van medewerkers, die wordt gebruikt om de prestaties van een organisatie te monitoren. || ||
|-
!scope="row"|CUBEMEMBER
| Geeft een lid of tupel terug in een cube-hiërarchie. Gebruik om te valideren dat het lid of de tupel in de cube bestaat. || ||
|-
!scope="row"|CUBEMEMBERPROPERTY
| Geeft de waarde van een lideigenschap in de cube terug. Gebruik om te valideren dat er een lidnaam in de cube bestaat en om de gespecificeerde eigenschap voor dit lid terug te geven. || ||
|-
!scope="row"|CUBERANKEDMEMBER
| Geeft het n-de, of gerangschikte, lid in een set terug. Gebruik het om één of meer elementen in een set op te halen, zoals de beste verkoper of de top 10 studenten. || ||
|-
!scope="row"|CUBESET
| Definieert een berekende set van leden of tupels door een set-expressie naar de cube op de server te sturen, die de set aanmaakt en die set vervolgens teruggeeft aan Microsoft Office Excel. || ||
|-
!scope="row"|CUBESETCOUNT
| Geeft het aantal items in een set terug. || ||
|-
!scope="row"|CUBEVALUE
| Geeft een geaggregeerde waarde terug van een cube. || ||
|}
== Database ==
{| class="wikitable collapsible sortable"
|+Lijst van Excel-databasefuncties
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|DAVERAGE
| Geeft het gemiddelde van geselecteerde database-items terug || ||
|-
!scope="row"|DCOUNT
| Telt de cellen die getallen bevatten in een database || ||
|-
!scope="row"|DCOUNTA
| Telt niet-lege cellen in een database || ||
|-
!scope="row"|DGET
| Haalt uit een database een enkel record dat voldoet aan de gespecificeerde criteria || ||
|-
!scope="row"|DMAX
| Geeft de maximale waarde terug uit geselecteerde database-gegevens || ||
|-
!scope="row"|DMIN
| Geeft de minimale waarde terug uit geselecteerde database-gegevens || ||
|-
!scope="row"|DPRODUCT
| Vermenigvuldigt de waarden in een bepaald veld van records die overeenkomen met de criteria in een database || ||
|-
!scope="row"|DSTDEV
| De standaardafwijking wordt geschat op basis van een steekproef van geselecteerde database-gegevens || ||
|-
!scope="row"|DSTDEVP
| Berekent de standaardafwijking op basis van de gehele populatie van geselecteerde database-gegevens || ||
|-
!scope="row"|DSUM
| Voegt de nummers toe in de veldkolom van database-gegevens die overeenkomen met de criteria || ||
|-
!scope="row"|DVAR
| Schat de variantie op basis van een steekproef uit geselecteerde database-gegevens || ||
|-
!scope="row"|DVARP
| Berekent variantie op basis van de gehele populatie van geselecteerde database-gegevens || ||
|}
<span id="Date_and_time"></span>
== Datum en tijd ==
{| class="wikitable collapsible sortable"
|+Lijst van datum en tijd Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|DATE
| Geeft het serienummer van een bepaalde datum terug || ||
|-
!scope="row"|DATEDIF
| Berekent het aantal dagen, maanden of jaren tussen twee data. Deze functie is nuttig in formules waarbij u een leeftijd moet berekenen. || ||
|-
!scope="row"|DATEVALUE
| Zet een datum in de vorm van tekst om in een serienummer || ||
|-
!scope="row"|DAY
| Zet een serienummer om in een dag van de maand || ||
|-
!scope="row"|DAYS
| Geeft het aantal dagen tussen twee datums terug || ||
|-
!scope="row"|DAYS360
| Berekent het aantal dagen tussen twee datums op basis van een jaar van 360-dagen || ||
|-
!scope="row"|EDATE
| Geeft het serienummer van de datum terug, dat het aangegeven aantal maanden vóór of na de startdatum is || ||
|-
!scope="row"|EOMONTH
| Geeft het serienummer van de laatste dag van de maand vóór of na een bepaald aantal maanden || ||
|-
!scope="row"|HOUR
| Zet een serienummer om in een uur || ||
|-
!scope="row"|ISOWEEKNUM
| Geeft het nummer van het ISO-weeknummer van het jaar terug voor een bepaalde datum || ||
|-
!scope="row"|MINUTE
| Zet een serienummer om in een minuut || ||
|-
!scope="row"|MONTH
| Zet een serienummer om in een maand || ||
|-
!scope="row"|NETWORKDAYS
| Geeft het aantal hele werkdagen tussen twee datums terug || ||
|-
!scope="row"|NETWORKDAYS.INTL
| Geeft het aantal hele werkdagen tussen twee datums terug met behulp van parameters om aan te geven welke en hoeveel dagen weekenddagen zijn || ||
|-
!scope="row"|NOW
| Geeft het serienummer van de huidige datum en tijd terug || ||
|-
!scope="row"|SECOND
| Zet een serienummer om in een seconde || ||
|-
!scope="row"|TIME
| Geeft het serienummer van een bepaald tijdstip terug || ||
|-
!scope="row"|TIMEVALUE
| Zet een tijd in de vorm van tekst om in een serienummer || ||
|-
!scope="row"|TODAY
| Geeft het serienummer van de datum van vandaag terug. || ||
|-
!scope="row"|WEEKDAY
| Zet een serienummer om in een dag van de week || {{Z+|Z17540}} || Heeft Dag, Maand en Jaar nodig in plaats van een serienummer
|-
!scope="row"|WEEKNUM
| Zet een serienummer om in een nummer dat numeriek aangeeft waar de week ligt met een jaar || ||
|-
!scope="row"|WORKDAY
| Geeft het serienummer van de datum voor of na een bepaald aantal werkdagen terug. || ||
|-
!scope="row"|WORKDAY.INTL
| Geeft het serienummer van de datum voor of na een bepaald aantal werkdagen terug met behulp van parameters die aangeven welke en hoeveel dagen weekenddagen zijn || ||
|-
!scope="row"|YEAR
| Zet een serienummer om in een jaar || ||
|-
!scope="row"|YEARFRAC
| Geeft het jaardeel terug dat staat voor het aantal hele dagen tussen 'start_date' en 'end_date' || ||
|}
<span id="Engineering"></span>
== Technisch ==
{| class="wikitable collapsible sortable"
|+Lijst van technische Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|BESSELI
| Geeft de aangepaste Besselfunctie In(x) terug || ||
|-
!scope="row"|BESSELJ
| Geeft de Besselfunctie Jn(x) terug || ||
|-
!scope="row"|BESSELK
| Geeft de aangepaste Besselfunctie Kn(x) terug || ||
|-
!scope="row"|BESSELY
| Geeft de Besselfunctie Yn(x) terug || ||
|-
!scope="row"|BIN2DEC
| Zet een binair getal om in een decimaal getal || ||
|-
!scope="row"|BIN2HEX
| Zet een binair getal om in een hexadecimaal getal || ||
|-
!scope="row"|BIN2OCT
| Zet een binair getal om in een octaal nummer || ||
|-
!scope="row"|BITAND
| Geeft een 'Bitgewijs And' van twee getallen terug || ||
|-
!scope="row"|BITLSHIFT
| Geeft een getal terug dat met shift_amount bits naar links is verschoven || ||
|-
!scope="row"|BITOR
| Geeft een 'Bitgewijs OR' van 2 getallen terug || ||
|-
!scope="row"|BITRSHIFT
| Geeft een getal terug dat met shift_amount bits naar rechts is verschoven || ||
|-
!scope="row"|BITXOR
| Geeft een bitsgewijs 'Exclusieve OR' van twee getallen terug || ||
|-
!scope="row"|COMPLEX
| Zet reële en imaginaire coëfficiënten om in een complex getal || ||
|-
!scope="row"|CONVERT
| Zet een getal om van het ene meetstelsel naar het andere. || ||
|-
!scope="row"|DEC2BIN
| Zet een decimaal getal om in een binair getal || ||
|-
!scope="row"|DEC2HEX
| Zet een decimaal getal om in een hexadecimaal getal || ||
|-
!scope="row"|DEC2OCT
| Zet een decimaal getal om in een octaal getal || ||
|-
!scope="row"|DELTA
| Test of twee waarden gelijk zijn || ||
|-
!scope="row"|ERF
| Geeft de foutfunctie terug || ||
|-
!scope="row"|ERF.PRECISE
| Geeft de foutfunctie terug || ||
|-
!scope="row"|ERFC
| Geeft de complementaire foutfunctie terug || ||
|-
!scope="row"|ERFC.PRECISE
| Geeft de complementaire functie ERF terug geïntegreerd tussen x en oneindig || ||
|-
!scope="row"|GESTEP
| Test of een getal groter is dan een drempelwaarde || ||
|-
!scope="row"|HEX2BIN
| Zet een hexadecimaal getal om in een binair getal || ||
|-
!scope="row"|HEX2DEC
| Zet een hexadecimaal getal om in een decimaal getal || ||
|-
!scope="row"|HEX2OCT
| Zet een hexadecimaal getal om in een octaal getal || ||
|-
!scope="row"|IMABS
| Geeft de absolute waarde (modulus) van een complex getal terug || ||
|-
!scope="row"|IMAGINARY
| Geeft de imaginaire coëfficiënt van een complex getal terug || ||
|-
!scope="row"|IMARGUMENT
| Geeft het argument theta terug, een hoek uitgedrukt in radialen || ||
|-
!scope="row"|IMCONJUGATE
| Geeft het complex geconjugeerde van een complex getal terug || ||
|-
!scope="row"|IMCOS
| Geeft de cosinus van een complex getal terug || ||
|-
!scope="row"|IMCOSH
| Geeft de hyperbolische cosinus van een complex getal terug || ||
|-
!scope="row"|IMCOT
| Geeft de cotangens van een complex getal terug || ||
|-
!scope="row"|IMCSC
| Geeft de cosecans van een complex getal terug || ||
|-
!scope="row"|IMCSCH
| Geeft de hyperbolische cosecans van een complex getal terug || ||
|-
!scope="row"|IMDIV
| Geeft het quotiënt van twee complexe getallen terug || ||
|-
!scope="row"|IMEXP
| Geeft de exponentiële van een complex getal terug || ||
|-
!scope="row"|IMLN
| Geeft het natuurlijke logaritme van een complex getal terug || ||
|-
!scope="row"|IMLOG10
| Geeft de logaritme van basis-10 van een complex getal terug || ||
|-
!scope="row"|IMLOG2
| Geeft de logaritme van basis-2 van een complex getal terug || ||
|-
!scope="row"|IMPOWER
| Geeft een complex getal terug dat tot een geheel getal macht is verhoogd || ||
|-
!scope="row"|IMPRODUCT
| Geeft het product van complexe getallen terug || ||
|-
!scope="row"|IMREAL
| Geeft de reële coëfficiënt van een complex getal terug || ||
|-
!scope="row"|IMSEC
| Geeft de secans van een complex getal terug || ||
|-
!scope="row"|IMSECH
| Geeft de hyperbolische secans van een complex getal terug || ||
|-
!scope="row"|IMSIN
| Geeft de sinus van een complex getal terug || ||
|-
!scope="row"|IMSINH
| Geeft de hyperbolische sinus van een complex getal terug || ||
|-
!scope="row"|IMSQRT
| Geeft de wortel van een complex getal terug || ||
|-
!scope="row"|IMSUB
| Geeft het verschil terug tussen twee complexe getallen || ||
|-
!scope="row"|IMSUM
| Geeft de som van complexe getallen terug || ||
|-
!scope="row"|IMTAN
| Geeft de tangens van een complex getal terug || ||
|-
!scope="row"|OCT2BIN
| Zet een octaal getal om in een binair getal || ||
|-
!scope="row"|OCT2DEC
| Zet een octaal getal om in een decimaal getal || ||
|-
!scope="row"|OCT2HEX
| Zet een octaal getal om in een hexadecimaal getal || ||
|}
<span id="Financial"></span>
== Financieel ==
{| class="wikitable collapsible sortable"
|+Lijst van financiële Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|ACCRINT
| Retourneert de opgebouwde rente voor een zekerheid dat periodieke rente betaalt || ||
|-
!scope="row"|ACCRINTM
| Geeft de opgebouwde rente terug voor een zekerheid dat rente betaalt op een vervaldatum || ||
|-
!scope="row"|AMORDEGRC
| Geeft de afschrijving voor elke boekhoudperiode terug met behulp van een afschrijvingscoëfficiënt || ||
|-
!scope="row"|AMORLINC
| Geeft de afschrijving voor elke boekhoudperiode terug || ||
|-
!scope="row"|COUPDAYBS
| Geeft het aantal dagen terug vanaf het begin van de couponperiode tot de afwikkelingsdatum || ||
|-
!scope="row"|COUPDAYS
| Geeft het aantal dagen in de couponperiode terug waarin de afwikkelingsdatum is opgenomen || ||
|-
!scope="row"|COUPDAYSNC
| Geeft het aantal dagen terug van de afwikkelingsdatum tot de volgende coupondatum || ||
|-
!scope="row"|COUPNCD
| Geeft de volgende coupondatum na de afwikkelingsdatum terug || ||
|-
!scope="row"|COUPNUM
| Geeft het aantal coupons terug dat tussen de afwikkelingsdatum en de vervaldatum moet worden betaald || ||
|-
!scope="row"|COUPPCD
| Geeft de vorige coupondatum vóór de afwikkelingsdatum terug || ||
|-
!scope="row"|CUMIPMT
| Geeft de cumulatieve rente terug die tussen twee perioden is betaald || ||
|-
!scope="row"|CUMPRINC
| Geeft de cumulatieve hoofdsom terug die is betaald op een lening tussen twee periodes || ||
|-
!scope="row"|DB
| Geeft de afschrijving van een activa voor een bepaalde periode terug door gebruik te maken van de fixed-declining balansmethode || ||
|-
!scope="row"|DDB
| Geeft de afschrijving van een activa voor een bepaalde periode terug door gebruik te maken van de double-declining balansmethode of een andere methode die u specificeert || ||
|-
!scope="row"|DISC
| Geeft het discontopercentage voor een zekerheid terug || ||
|-
!scope="row"|DOLLARDE
| Zet een dollarprijs, uitgedrukt als een fractie, om in een dollarprijs, uitgedrukt als een decimaal getal || ||
|-
!scope="row"|DOLLARFR
| Zet een dollarprijs, uitgedrukt als een decimaal getal, om in een dollarprijs, uitgedrukt als een fractie || ||
|-
!scope="row"|DURATION
| Geeft de jaarlijkse looptijd van een zekerheid terug met periodieke rentebetalingen || ||
|-
!scope="row"|EFFECT
| Geeft de effectieve jaarlijkse rente terug || ||
|-
!scope="row"|FV
| Geeft de toekomstige waarde van een belegging terug || ||
|-
!scope="row"|FVSCHEDULE
| Geeft de toekomstige waarde van een initiële hoofdsom terug na het toepassen van een reeks samengestelde rentetarieven || ||
|-
!scope="row"|INTRATE
| Geeft de rente terug voor een volledig geïnvesteerde zekerheid || ||
|-
!scope="row"|IPMT
| Geeft de rentebetaling voor een investering voor een bepaalde periode terug || ||
|-
!scope="row"|IRR
| Geeft het interne rendement terug voor een reeks kasstromen || ||
|-
!scope="row"|ISPMT
| Berekent de rente die wordt betaald gedurende een specifieke investeringsperiode || ||
|-
!scope="row"|MDURATION
| Geeft de Macauley-aangepaste duur terug voor een zekerheid met een veronderstelde nominale waarde van $100 || ||
|-
!scope="row"|MIRR
| Geeft het interne rendement terug, waarbij positieve en negatieve kasstromen worden gefinancierd tegen verschillende rentes || ||
|-
!scope="row"|NOMINAL
| Geeft het jaarlijkse nominale rentepercentage terug || ||
|-
!scope="row"|NPER
| Geeft het aantal periodes voor een investering terug || ||
|-
!scope="row"|NPV
| Geeft de netto contante waarde van een investering terug op basis van een reeks periodieke kasstromen en een discontovoet || ||
|-
!scope="row"|ODDFPRICE
| Geeft de prijs per $100 nominale waarde van een zekerheid terug met een oneven eerste periode || ||
|-
!scope="row"|ODDFYIELD
| Geeft het rendement van een zekerheid terug met een oneven eerste periode || ||
|-
!scope="row"|ODDLPRICE
| Geeft de prijs per $100 nominale waarde van een zekerheid terug met een oneven laatste periode || ||
|-
!scope="row"|ODDLYIELD
| Geeft het rendement van een zekerheid terug met een oneven laatste periode || ||
|-
!scope="row"|PDURATION
| Geeft het aantal periodes terug dat een investering nodig heeft om een bepaalde waarde te bereiken || ||
|-
!scope="row"|PMT
| Retourneert de periodieke betaling voor een annuïteit || ||
|-
!scope="row"|PPMT
| Geeft de betaling van de hoofdsom voor een investering voor een bepaalde periode terug || ||
|-
!scope="row"|PRICE
| Geeft de prijs terug per nominale waarde van $100 van een zekerheid dat periodieke rente betaalt || ||
|-
!scope="row"|PRICEDISC
| Geeft de prijs per nominale waarde van $100 van een afgeprijsde zekerheid terug || ||
|-
!scope="row"|PRICEMAT
| Geeft de prijs per nominale waarde van $100 terug van een zekerheid dat rente betaalt bij vervaldatum || ||
|-
!scope="row"|PV
| Geeft de huidige waarde van een investering terug || ||
|-
!scope="row"|RATE
| Geeft het rentepercentage per periode van een annuïteit terug || ||
|-
!scope="row"|RECEIVED
| Retourneert het bedrag dat bij de vervaldatum is ontvangen voor een volledig geïnvesteerd zekerheid || ||
|-
!scope="row"|RRI
| Geeft een gelijkwaardige rente voor de groei van een investering || ||
|-
!scope="row"|SLN
| Geeft de rechtlijnige afschrijving van een activa voor één periode terug || ||
|-
!scope="row"|STOCKHISTORY
| Haalt historische gegevens op over een financieel instrument || ||
|-
!scope="row"|SYD
| Geeft de "sum-of-years" afschrijving van een activa voor een bepaalde periode terug || ||
|-
!scope="row"|TBILLEQ
| Geeft het obligatie-equivalente rendement voor een schatkistwissel terug || ||
|-
!scope="row"|TBILLPRICE
| Geeft de prijs per nominale waarde van $100 voor een schatkistwissel terug || ||
|-
!scope="row"|TBILLYIELD
| Geeft het rendement terug voor een schatkistwissel || ||
|-
!scope="row"|VDB
| Geeft de afschrijving van een activa terug voor een gespecificeerde of gedeeltelijke periode door gebruik te maken van een afnemende balansmethode || ||
|-
!scope="row"|XIRR
| Geeft het interne rendement terug voor een schema van kasstromen dat niet noodzakelijkerwijs periodiek is || ||
|-
!scope="row"|XNPV
| Geeft de netto contante waarde terug voor een schema van kasstromen dat niet noodzakelijkerwijs periodiek is || ||
|-
!scope="row"|YIELD
| Geeft het rendement terug op een zekerheid dat periodieke rente betaalt || ||
|-
!scope="row"|YIELDDISC
| Geeft de jaarlijkse opbrengst terug voor een gedisconteerde zekerheid; bijvoorbeeld een schatkistwissel || ||
|-
!scope="row"|YIELDMAT
| Geeft het jaarlijkse rendement terug van een zekerheid dat rente betaalt op een vervaldatum || ||
|}
<span id="Information"></span>
== Informatie ==
{| class="wikitable collapsible sortable"
|+Lijst van informatie Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|CELL
| Geeft informatie terug over de opmaak, locatie of inhoud van een cel || ||
|-
!scope="row"|ERROR.TYPE
| Geeft een getal terug dat overeenkomt met een fouttype || ||
|-
!scope="row"|INFO
| Geeft informatie terug over de huidige operationele omgeving || ||
|-
!scope="row"|ISBLANK
| Geeft TRUE terug als de waarde leeg is || {{Z+|Z10008}} ||
|-
!scope="row"|ISERR
| Geeft TRUE terug als de waarde een willekeurige foutwaarde is anders dan #N/A || ||
|-
!scope="row"|ISERROR
| Geeft TRUE terug als de waarde een willekeurige foutwaarde is || {{Z+|Z20107}} ||
|-
!scope="row"|ISEVEN
| Geeft TRUE terug als het getal even is || {{Z+|Z12480}} ||
|-
!scope="row"|ISFORMULA
| Geeft TRUE terug als er een verwijzing is naar een cel die een formule bevat || ||
|-
!scope="row"|ISLOGICAL
| Geeft TRUE terug als de waarde een logische waarde is || ||
|-
!scope="row"|ISNA
| Geeft TRUE terug als de waarde de #N/A-foutwaarde is || ||
|-
!scope="row"|ISNONTEXT
| Geeft TRUE terug als de waarde geen tekst is || ||
|-
!scope="row"|ISNUMBER
| Geeft TRUE als de waarde een getal is || {{Z+|Z10715}} ||
|-
!scope="row"|ISODD
| Geeft TRUE terug als het getal oneven is || {{Z+|Z12429}} ||
|-
!scope="row"|ISOMITTED
| Controleert of de waarde in een LAMBDA ontbreekt en geeft TRUE of FALSE terug || ||
|-
!scope="row"|ISREF
| Geeft TRUE terug als de waarde een referentie is || ||
|-
!scope="row"|ISTEXT
| Geeft TRUE terug als de waarde een tekst is || ||
|-
!scope="row"|N
| Geeft een waarde terug die is omgezet in een getal || ||
|-
!scope="row"|NA
| Geeft de foutwaarde #N/A terug || ||
|-
!scope="row"|SHEET
| Geeft het bladnummer van het gerefereerde blad terug || ||
|-
!scope="row"|SHEETS
| Geeft het aantal bladen in een referentie terug || ||
|-
!scope="row"|TYPE
| Geeft een getal terug dat het datatype van een waarde aangeeft || ||
|}
<span id="Logical"></span>
== Logica ==
{| class="wikitable collapsible sortable"
|+Lijst van logische Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|AND
| Geeft TRUE terug als al zijn argumenten TRUE zijn || {{Z+|Z10174}} ||
|-
!scope="row"|BYCOL
| Past een LAMBDA toe op elke kolom en geeft een array van de resultaten terug || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|BYROW
| Past een LAMBDA toe op elke rij en geeft een array van de resultaten terug || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|FALSE
| Geeft de logische waarde FALSE terug || {{Z+|Z10206}} ||
|-
!scope="row"|IF
| Specificeert een logische test om uit te voeren || {{Z+|Z802}}, {{Z+|Z11542}} ||
|-
!scope="row"|IFERROR
| Geeft een waarde terug die u specificeert als een formule evalueert naar een fout; geeft anders het resultaat van de formule terug || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|IFNA
| Geeft de door u opgegeven waarde terug als de expressie wordt opgelost naar #N/A, anders geeft het resultaat van de expressie terug || ||
|-
!scope="row"|IFS
| Controleert of aan één of meer voorwaarden is voldaan en geeft een waarde terug die overeenkomt met de eerste TRUE-voorwaarde. || {{Z+|Z19601}} ||
|-
!scope="row"|LAMBDA
| Maak aangepaste, herbruikbare functies en roept ze met een vriendelijke naam aan || {{Z+|Z8}} ||
|-
!scope="row"|LET
| Wijst een naam toe aan het resultaat van een berekening || ||
|-
!scope="row"|MAKEARRAY
| Geeft een berekende array van een gespecificeerde rij- en kolomgrootte terug door een LAMBDA toe te passen || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|MAP
| Geeft een array terug die wordt gevormd door elke waarde in de array(s) te koppelen naar een nieuwe waarde door een LAMBDA toe te passen om een nieuwe waarde te creëren || {{Z+|Z873}} ||
|-
!scope="row"|NOT
| Keert de logische waarde van zijn argument om || {{Z+|Z10216}} ||
|-
!scope="row"|OR
| Geeft TRUE terug als minstens een van de argumenten TRUE is || {{Z+|Z10184}} ||
|-
!scope="row"|REDUCE
| Reduceert een array tot een enkele waarde door een LAMBDA toe te passen op elke waarde en de totale waarde in de accumulator terug te geven || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|SCAN
| Scant een array door een LAMBDA toe te passen op elke waarde en geeft een array terug met elke tussenliggende waarde || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|SWITCH
| Evalueert een expressie aan de hand van een lijst met waarden en geeft het resultaat terug dat overeenkomt met de eerste overeenkomende waarde. Als er geen overeenkomenst is, kan een optionele standaardwaarde worden teruggegeven. || ||
|-
!scope="row"|TRUE
| Geeft de logische waarde TRUE terug || {{Z+|Z10210}} ||
|-
!scope="row"|XOR
| Geeft een logisch exclusieve OF alle argumenten terug || {{Z+|Z10237}} ||
|}
<span id="Lookup_and_reference"></span>
== Opzoeken en referentie ==
{| class="wikitable collapsible sortable"
|+Lijst van zoek- en referentiefuncties van Excel
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|VSTACK
| Voegt arrays verticaal en in volgorde toe om een groter array terug te geven || ||
|-
!scope="row"|WRAPCOLS
| Wikkelt de opgegeven rij of kolom met waarden in kolommen na een bepaald aantal elementen || ||
|-
!scope="row"|WRAPROWS
| Wikkelt de opgegeven rij of kolom met waarden in rijen na een bepaald aantal elementen || ||
|-
!scope="row"|ADDRESS
| Geeft een verwijzing als tekst terug naar een enkele cel in een werkblad || ||
|-
!scope="row"|AREAS
| Geeft het aantal velden in een referentie terug || ||
|-
!scope="row"|CHOOSE
| Kiest een waarde uit een lijst van waarden || ||
|-
!scope="row"|CHOOSECOLS
| Geeft de gespecificeerde kolommen terug uit een array || ||
|-
!scope="row"|CHOOSEROWS
| Geeft de gespecificeerde rijen terug uit een array || ||
|-
!scope="row"|COLUMN
| Geeft het kolomnummer van een referentie terug || ||
|-
!scope="row"|COLUMNS
| Geeft het aantal kolommen in een referentie terug || ||
|-
!scope="row"|DROP
| Sluit een bepaald aantal rijen of kolommen uit van het begin of einde van een array || ||
|-
!scope="row"|EXPAND
| Breidt een array uit of vult deze op tot gespecificeerde rij- en kolomafmetingen || ||
|-
!scope="row"|FILTER
| Filtert een reeks gegevens op basis van criteria die u definieert || ||
|-
!scope="row"|FORMULATEXT
| Geeft de formule op de gegeven referentie terug als tekst || ||
|-
!scope="row"|GETPIVOTDATA
| Retourneert gegevens die zijn opgeslagen in een draaitafelrapport (PivotTable) || ||
|-
!scope="row"|HLOOKUP
| Kijkt in de bovenste rij van een array en geeft de waarde van de aangegeven cel terug || ||
|-
!scope="row"|HSTACK
| Voegt arrays horizontaal en in volgorde toe om een groter array terug te geven || ||
|-
!scope="row"|HYPERLINK
| Maakt een snelkoppeling of sprong aan die een document opent dat is opgeslagen op een netwerkserver, een intranet of het internet || ||
|-
!scope="row"|IMAGE
| Geeft een afbeelding terug uit een gegeven bron || ||
|-
!scope="row"|INDEX
| Gebruikt een index om een waarde te kiezen uit een referentie of array || {{Z+|Z13397}} || Controleren Indexbase
|-
!scope="row"|INDIRECT
| Geeft een referentie terug die wordt aangegeven door een tekstwaarde || ||
|-
!scope="row"|LOOKUP
| Zoekt waarden op in een vector of array || {{Z+|Z13708}} || Controleer of het mogelijk is in arrays met meerdere kolommen.
|-
!scope="row"|MATCH
| Zoekt waarden op in een referentie of array || ||
|-
!scope="row"|OFFSET
| Geeft een referentie-offset terug ten opzichte van een gegeven referentie || ||
|-
!scope="row"|ROW
| Geeft het rijnummer van een referentie terug || ||
|-
!scope="row"|ROWS
| Geeft het aantal rijen in een referentie terug || ||
|-
!scope="row"|RTD
| Haalt realtime data op uit een programma dat COM-automatisering ondersteunt || ||
|-
!scope="row"|SORT
| Sorteert de inhoud van een bereik of een array || ||
|-
!scope="row"|SORTBY
| Sorteert de inhoud van een bereik of array op basis van de waarden in een overeenkomstige bereik of array || ||
|-
!scope="row"|TAKE
| Geeft een gespecificeerd aantal aaneengesloten rijen of kolommen terug vanaf het begin of einde van een array || ||
|-
!scope="row"|TOCOL
| Geeft het array terug in één kolom || ||
|-
!scope="row"|TOROW
| Geeft het array terug in één rij || ||
|-
!scope="row"|TRANSPOSE
| Geeft het array terug waarbij de rijen en kolommen omgedraaid zijn. || ||
|-
!scope="row"|UNIQUE
| Geeft een lijst van unieke waarden terug in een lijst of bereik || ||
|-
!scope="row"|VLOOKUP
| Kijkt in de eerste kolom van een array en beweegt over de rij om de waarde van een cel terug te geven || ||
|-
!scope="row"|XLOOKUP
| Zoekt in een bereik of array, en geeft een item terug dat overeenkomt met de eerste gevonden match. Als er geen match bestaat, kan XLOOKUP de dichtstbijzijnde (benaderende) match teruggeven. || ||
|-
!scope="row"|XMATCH
| Geeft de relatieve positie van een item in een array of bereik van cellen terug. || ||
|}
<span id="Math_and_trigonometry"></span>
== Wiskunde en trigonometrie ==
{| class="wikitable collapsible sortable"
|+Lijst van Wiskunde en trigonometrie Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|ABS
| Geeft de absolute waarde van een getal terug || {{Z+|Z11235}} ||
|-
!scope="row"|ACOS
| Geeft de arccosinus van een getal terug || {{Z+|Z12497}} ||
|-
!scope="row"|ACOSH
| Geeft de inverse hyperbolische cosinus van een getal terug || {{Z+|Z12500}} ||
|-
!scope="row"|ACOT
| Geeft de arccotangent van een getal terug || ||
|-
!scope="row"|ACOTH
| Geeft de hyperbolische arccotangent van een getal terug || ||
|-
!scope="row"|AGGREGATE
| Geeft een aggregaat terug in een lijst of database || ||
|-
!scope="row"|ARABIC
| Zet een Romeins getal om in een gewoon getal || {{Z+|Z11023}} ||
|-
!scope="row"|ASIN
| Geeft de arcsinus van een getal terug || {{Z+|Z12505}} ||
|-
!scope="row"|ASINH
| Geeft de inverse hyperbolische sinus van een getal terug || {{Z+|Z12509}} ||
|-
!scope="row"|ATAN
| Geeft de arctangens van een getal terug || ||
|-
!scope="row"|ATAN2
| Geeft de arctangens terug van x- en y-coördinaten || ||
|-
!scope="row"|ATANH
| Geeft de inverse hyperbolische tangens van een getal terug || ||
|-
!scope="row"|BASE
| Zet een getal om in een tekstrepresentatie met de gegeven radix (basis) || ||
|-
!scope="row"|CEILING.MATH
| Rond een getal naar boven af op het dichtstbijzijnde geheel getal of naar het dichtstbijzijnde veelvoud van significantie || ||
|-
!scope="row"|CEILING.PRECISE
| Rond een getal af op het dichtstbijzijnde geheel getal of op het dichtstbijzijnde veelvoud van significantie. Ongeacht het teken van het getal wordt het getal afgerond. || ||
|-
!scope="row"|COMBIN
| Geeft het aantal combinaties terug voor een gegeven aantal objecten || ||
|-
!scope="row"|COMBINA
| Geeft het aantal combinaties (met herhalingen) terug voor een gegeven aantal items || ||
|-
!scope="row"|COS
| Geeft de cosinus van een getal terug || {{Z+|Z12473}}
|
|-
!scope="row"|COSH
| Geeft de hyperbolische cosinus van een getal terug || ||
|-
!scope="row"|COT
| Geeft de hyperbolische cosinus van een getal terug || ||
|-
!scope="row"|COTH
| Geeft de cotangens van een hoek terug || ||
|-
!scope="row"|CSC
| Geeft de cosecant van een hoek terug || ||
|-
!scope="row"|CSCH
| Geeft de hyperbolische cosecant van een hoek terug || ||
|-
!scope="row"|DECIMAL
| Zet een tekstweergave van een getal in een gegeven basis om in een decimaal getal || ||
|-
!scope="row"|DEGREES
| Zet radialen om in graden || ||
|-
!scope="row"|EVEN
| Rond een getal af naar het dichtstbijzijnde even geheel getal || ||
|-
!scope="row"|EXP
| Geeft e terug die wordt verhoogd tot de macht van een gegeven getal || ||
|-
!scope="row"|FACT
| Geeft de faculteit van een getal terug || ||
|-
!scope="row"|FACTDOUBLE
| Geeft de dubbele faculteit van een getal terug || ||
|-
!scope="row"|FLOOR.MATH
| Rond een getal naar beneden af op het dichtstbijzijnde geheel getal of naar het dichtstbijzijnde veelvoud van significantie || ||
|-
!scope="row"|FLOOR.PRECISE
| Rond een getal af op het dichtstbijzijnde geheel getal of op het dichtstbijzijnde veelvoud van significantie. Ongeacht het teken van het getal wordt het getal afgerond. || ||
|-
!scope="row"|GCD
| Geeft de grootste gemene deler terug || ||
|-
!scope="row"|INT
| Rond een getal af naar beneden naar het dichtstbijzijnde geheel getal || ||
|-
!scope="row"|ISO.CEILING
| Geeft een getal terug dat wordt afgerond naar het dichtstbijzijnde geheel getal of naar het dichtstbijzijnde veelvoud van significantie || ||
|-
!scope="row"|LCM
| Geeft het kleinste gemeenschappelijke veelvoud terug || ||
|-
!scope="row"|LN
| Geeft het natuurlijke logaritme van een getal terug || ||
|-
!scope="row"|LOG
| Geeft de logaritme van een getal terug met een opgegeven basisgetal || ||
|-
!scope="row"|LOG10
| Geeft de logaritme van basis-10 van een getal terug || ||
|-
!scope="row"|MDETERM
| Geeft de matrixdeterminant van een array terug || ||
|-
!scope="row"|MINVERSE
| Geeft de matrixinverse van een array terug || ||
|-
!scope="row"|MMULT
| Geeft het matrixproduct van twee arrays terug || ||
|-
!scope="row"|MOD
| Geeft de rest terug uit een deling || {{Z+|Z12476}} ||
|-
!scope="row"|MROUND
| Geeft een getal terug dat wordt afgerond op het gewenste veelvoud || ||
|-
!scope="row"|MULTINOMIAL
| Geeft de som (multinomial) van een verzameling getallen terug || ||
|-
!scope="row"|MUNIT
| Geeft de eenheidsmatrix voor de gespecificeerde dimensie terug || ||
|-
!scope="row"|ODD
| Rond een getal af naar boven op het dichtstbijzijnde oneven geheel getal || ||
|-
!scope="row"|PI
| Geeft de waarde van Pi terug || {{Z+|Z20862}} ||
|-
!scope="row"|POWER
| Geeft het resultaat terug van een getal dat tot een macht is verhoogd || {{Z+|Z13647}} ||
|-
!scope="row"|PRODUCT
| Vermenigvuldigt zijn argumenten || {{Z+|Z10862}} ||
|-
!scope="row"|QUOTIENT
| Geeft het gehele deel terug van een deling || {{Z+|Z12522}} ||
|-
!scope="row"|RADIANS
| Zet graden om in radialen || ||
|-
!scope="row"|RAND
| Geeft een willekeurig getal tussen 0 en 1 terug || ||
|-
!scope="row"|RANDARRAY
| Geeft een reeks willekeurige getallen tussen 0 en 1 terug. U kunt echter het aantal rijen en kolommen aangeven om in te vullen, de minimale en maximale waarden en of u gehele getallen of decimalen wilt terug krijgen. || ||
|-
!scope="row"|RANDBETWEEN
| Geeft een willekeurig getal terug tussen de getallen die u heeft gespecificeerd || ||
|-
!scope="row"|ROMAN
| Zet een Arabisch getal om naar een Romeins getal, als tekst || {{Z+|Z11022}} ||
|-
!scope="row"|ROUND
| Rondt een getal af op een bepaald aantal cijfers achter de komma || ||
|-
!scope="row"|ROUNDDOWN
| Rondt een getal naar beneden af, richting nul || ||
|-
!scope="row"|ROUNDUP
| Rondt een getal naar boven af, weg van nul || ||
|-
!scope="row"|SEC
| Geeft de secant van een hoek terug || ||
|-
!scope="row"|SECH
| Geeft de hyperbolische secant van een hoek terug || ||
|-
!scope="row"|SEQUENCE
| Genereert een lijst met sequentiële getallen in een array, zoals 1, 2, 3, 4 || ||
|-
!scope="row"|SERIESSUM
| Geef de som terug van macht serie op basis van de formule || ||
|-
!scope="row"|SIGN
| Geeft het teken van een getal terug || ||
|-
!scope="row"|SIN
| Geeft de sinus van een hoek terug || ||
|-
!scope="row"|SINH
| Geeft de hyperbolische sinus van een getal terug || ||
|-
!scope="row"|SQRT
| Geeft een positieve wortel terug || ||
|-
!scope="row"|SQRTPI
| Geeft de wortel terug van (getal * pi) || ||
|-
!scope="row"|SUBTOTAL
| Geeft een subtotaal terug van een lijst of database || ||
|-
!scope="row"|SUM
| Telt de argumenten op || {{Z+|Z12720}} ||
|-
!scope="row"|SUMIF
| Voegt de cellen toe die gespecificeerd zijn volgens een bepaald criterium || ||
|-
!scope="row"|SUMIFS
| Voegt de cellen toe in een bereik dat aan meerdere criteria voldoet || ||
|-
!scope="row"|SUMPRODUCT
| Geeft de som van de producten van de overeenkomstige arraycomponenten terug. || ||
|-
!scope="row"|SUMSQ
| Geeft de som van de kwadraten van de argumenten terug || ||
|-
!scope="row"|SUMX2MY2
| Geeft de som terug van het verschil van kwadraten van overeenkomstige waarden in twee arrays || ||
|-
!scope="row"|SUMX2PY2
| Geeft de som terug van de som van de kwadraten van de overeenkomstige waarden in twee arrays || ||
|-
!scope="row"|SUMXMY2
| Geeft de som van kwadraten van verschillen van overeenkomstige waarden in twee arrays terug. || ||
|-
!scope="row"|TAN
| Geeft de tangens van een getal terug || ||
|-
!scope="row"|TANH
| Geeft de hyperbolische tangens van een getal terug || ||
|-
!scope="row"|TRUNC
| Kapt een getal af tot een geheel getal || ||
|}
<span id="Statistical"></span>
== Statistiek ==
{| class="wikitable collapsible sortable"
|+Lijst van statistiek Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|AVEDEV
| Geeft het gemiddelde van de absolute afwijkingen van datapunten van hun gemiddelde terug. || ||
|-
!scope="row"|AVERAGE
| Geeft het gemiddelde van zijn argumenten terug || ||
|-
!scope="row"|AVERAGEA
| Geeft het gemiddelde van zijn argumenten terug, inclusief getallen, tekst en logische waarden || ||
|-
!scope="row"|AVERAGEIF
| Geeft het gemiddelde (rekenkundig gemiddelde) terug van alle cellen in een bereik die aan een gegeven criterium voldoen || ||
|-
!scope="row"|AVERAGEIFS
| Geeft het gemiddelde (rekenkundig gemiddelde) terug van alle cellen die aan meerdere criteria voldoen. || ||
|-
!scope="row"|BETA.DIST
| Geeft de bèta-cumulatieve verdelingsfunctie terug || ||
|-
!scope="row"|BETA.INV
| Geeft de inverse van de cumulatieve verdelingsfunctie terug voor een gespecificeerde bètaverdeling || ||
|-
!scope="row"|BINOM.DIST
| Geeft de binomiale verdelingskans van de individuele term terug || ||
|-
!scope="row"|BINOM.DIST.RANGE
| Geeft de waarschijnlijkheid van een proefresultaat terug met behulp van een binaire verdeling || ||
|-
!scope="row"|BINOM.INV
| Geeft de kleinste waarde terug waarvoor de cumulatieve binomiale verdeling kleiner is dan of gelijk aan een criteriumwaarde || ||
|-
!scope="row"|CHISQ.DIST
| Geeft de cumulatieve beta-waarschijnlijkheid dichtheidsfunctie terug || ||
|-
!scope="row"|CHISQ.DIST.RT
| Geeft de eenzijdige kans van de chi-kwadraatverdeling terug || ||
|-
!scope="row"|CHISQ.INV
| Geeft de cumulatieve beta-waarschijnlijkheid dichtheidsfunctie terug || ||
|-
!scope="row"|CHISQ.INV.RT
| Geeft de inverse van de eenzijdige kans van de chi-kwadraatverdeling terug || ||
|-
!scope="row"|CHISQ.TEST
| Geeft de test voor onafhankelijkheid terug || ||
|-
!scope="row"|CONFIDENCE.NORM
| Geeft het betrouwbaarheidsinterval terug voor een populatiegemiddelde || ||
|-
!scope="row"|CONFIDENCE.T
| Geeft het vertrouwensinterval voor een bevolkingsgemiddelde terug, met behulp van de t-verdeling || ||
|-
!scope="row"|CORREL
| Geeft de correlatiecoëfficiënt tussen twee gegevenssets terug || ||
|-
!scope="row"|COUNT
| Telt het aantal getallen in de lijst met argumenten || ||
|-
!scope="row"|COUNTA
| Telt hoeveel waarden er zijn in de lijst met argumenten || ||
|-
!scope="row"|COUNTBLANK
| Telt het aantal lege cellen binnen een bereik || ||
|-
!scope="row"|COUNTIF
| Telt het aantal cellen binnen een bereik dat aan de gegeven criteria voldoet || ||
|-
!scope="row"|COUNTIFS
| Telt het aantal cellen binnen een bereik dat aan meerdere criteria voldoet || ||
|-
!scope="row"|COVARIANCE.P
| Geeft covariantie terug, het gemiddelde van de producten van gepaarde afwijkingen || ||
|-
!scope="row"|COVARIANCE.S
| Geeft de covariantie van de steekproef terug, het gemiddelde van de productafwijkingen voor elk datapuntpaar in twee datasets || ||
|-
!scope="row"|DEVSQ
| Geeft de som van kwadraten van afwijkingen terug. || ||
|-
!scope="row"|EXPON.DIST
| Geeft de exponentiële verdeling terug || ||
|-
!scope="row"|F.DIST
| Geeft de F-kansverdeling terug || ||
|-
!scope="row"|F.DIST.RT
| Geeft de F-kansverdeling terug || ||
|-
!scope="row"|F.INV
| Geeft de inverse van de F-kansverdeling terug || ||
|-
!scope="row"|F.INV.RT
| Geeft de inverse van de F-kansverdeling terug || ||
|-
!scope="row"|FISHER
| Geeft de Fisher-transformatie terug || ||
|-
!scope="row"|FISHERINV
| Geeft de inverse van de Fisher-transformatie terug || ||
|-
!scope="row"|FORECAST
| Geeft een waarde terug volgens een lineaire trend || ||
|-
!scope="row"|FORECAST.ETS
| Geeft een toekomstige waarde terug op basis van bestaande (historische) waarden door gebruik te maken van de AAA-versie van het Exponential Smoothing (ETS) algoritme || ||
|-
!scope="row"|FORECAST.ETS.CONFINT
| Geeft een betrouwbaarheidsinterval terug voor de prognosewaarde op de opgegeven streefdatum || ||
|-
!scope="row"|FORECAST.ETS.SEASONALITY
| Geeft de lengte van het repetitieve patroon terug dat Excel detecteert voor de opgegeven tijdreeks || ||
|-
!scope="row"|FORECAST.ETS.STAT
| Geeft een statistische waarde terug als resultaat van tijdreeksvoorspellingen || ||
|-
!scope="row"|FORECAST.LINEAR
| Geeft een toekomstige waarde terug op basis van bestaande waarden || ||
|-
!scope="row"|FREQUENCY
| Geeft een frequentieverdeling terug als een verticale array || ||
|-
!scope="row"|F.TEST
| Geeft het resultaat van een F-test terug || ||
|-
!scope="row"|GAMMA
| Geeft de waarde van de Gamma-functie terug || ||
|-
!scope="row"|GAMMA.DIST
| Geeft de gamma-verdeling terug || ||
|-
!scope="row"|GAMMA.INV
| Geeft de inverse van de cumulatieve gammaverdeling terug || ||
|-
!scope="row"|GAMMALN
| Geeft het natuurlijke logaritme van de gammafunctie, Γ(x) terug || ||
|-
!scope="row"|GAMMALN.PRECISE
| Geeft het natuurlijke logaritme van de gammafunctie, Γ(x) terug || ||
|-
!scope="row"|GAUSS
| Geeft 0,5 minder dan de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|GEOMEAN
| Geeft het geometrische gemiddelde terug || ||
|-
!scope="row"|GROWTH
| Geeft waarden terug langs een exponentiële trend || ||
|-
!scope="row"|HARMEAN
| Geeft het harmonische gemiddelde terug || ||
|-
!scope="row"|HYPGEOM.DIST
| Geeft de hypergeometrische verdeling terug || ||
|-
!scope="row"|INTERCEPT
| Geeft de interceptie terug van de lineaire regressielijn || ||
|-
!scope="row"|KURT
| Geeft de kurtosis van een dataset terug || ||
|-
!scope="row"|LARGE
| Geeft de k-de grootste waarde in een dataset terug || ||
|-
!scope="row"|LINEST
| Geeft de parameters volgens een lineaire trend terug || ||
|-
!scope="row"|LOGEST
| Geeft de parameters volgens een exponentiële trend terug || ||
|-
!scope="row"|LOGNORM.DIST
| Geeft de cumulatieve lognormale verdeling terug || ||
|-
!scope="row"|LOGNORM.INV
| Geeft de inverse van de lognormale cumulatieve verdeling terug || ||
|-
!scope="row"|MAX
| Geeft de maximale waarde in een lijst van argumenten terug || ||
|-
!scope="row"|MAXA
| Geeft de maximale waarde in een lijst met argumenten (inclusief getallen, tekst en logische waarden) terug || ||
|-
!scope="row"|MAXIFS
| Geeft de maximale waarde tussen cellen die zijn gespecificeerd door een bepaalde reeks voorwaarden of criteria, terug || ||
|-
!scope="row"|MEDIAN
| Geeft de mediaan van de gegeven getallen terug || ||
|-
!scope="row"|MIN
| Geeft de minimale waarde in een lijst van argumenten terug ||
* {{z+|Z19509}}
* {{Z+|Z21341}}
||
|-
!scope="row"|MINIFS
| Geeft de minimale waarde tussen cellen die zijn gespecificeerd door een bepaalde reeks voorwaarden of criteria, terug || ||
|-
!scope="row"|MINA
| Geeft de kleinste waarde in een lijst met argumenten (inclusief getallen, tekst en logische waarden) terug || ||
|-
!scope="row"|MODE.MULT
| Geeft een verticale array terug van de meest voorkomende, of repetitieve waarden in een array of databereik || ||
|-
!scope="row"|MODE.SNGL
| Geeft de meest voorkomende waarde in een dataset terug || ||
|-
!scope="row"|NEGBINOM.DIST
| Geeft de negatieve binomiale verdeling terug || ||
|-
!scope="row"|NORM.DIST
| Geeft de normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORMINV
| Geeft de inverse van de normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORM.S.DIST
| Geeft de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORM.S.INV
| Geeft de inverse van de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|PEARSON
| Geeft de Pearson-productmoment-correlatiecoëfficiënt terug || ||
|-
!scope="row"|PERCENTILE.EXC
| Geeft het k-de percentiel van waarden in een bereik terug, waarbij k in het bereik 0..1 ligt, exclusief || ||
|-
!scope="row"|PERCENTILE.INC
| Geeft het k-de percentiel van waarden in een bereik terug || ||
|-
!scope="row"|PERCENTRANK.EXC
| Geeft de rangorde van een waarde in een dataset terug als een percentage (0..1, exclusief) van de dataset || ||
|-
!scope="row"|PERCENTRANK.INC
| Geeft de procentuele rang van een waarde in een dataset terug || ||
|-
!scope="row"|PERMUT
| Geeft het aantal permutaties terug voor een gegeven aantal objecten || ||
|-
!scope="row"|PERMUTATIONA
| Geeft het aantal permutaties terug voor een gegeven aantal objecten (met herhalingen) dat kan worden geselecteerd uit het totaal aantal objecten || ||
|-
!scope="row"|PHI
| Geeft de waarde van de dichtheidsfunctie (density) terug voor een standaard normale verdeling || ||
|-
!scope="row"|POISSON.DIST
| Geeft de Poisson-verdeling terug || ||
|-
!scope="row"|PROB
| Geeft de kans terug dat waarden in een bereik tussen twee limieten liggen || ||
|-
!scope="row"|QUARTILE.EXC
| Geeft het kwartiel van de dataset terug, gebaseerd op percentielwaarden van 0..1, exclusief || ||
|-
!scope="row"|QUARTILE.INC
| Geeft het kwartiel van een dataset terug || ||
|-
!scope="row"|RANK.AVG
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the rank of a number in a list of numbers; duplicate values receive the average rank</span> || ||
|-
!scope="row"|RANK.EQ
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the rank of a number in a list of numbers; duplicate values receive the same rank</span> || ||
|-
!scope="row"|RSQ
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the square of the Pearson product moment correlation coefficient</span> || ||
|-
!scope="row"|SKEW
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the skewness of a distribution</span> || ||
|-
!scope="row"|SKEW.P
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the skewness of a distribution based on a population: a characterization of the degree of asymmetry of a distribution around its mean</span> || ||
|-
!scope="row"|SLOPE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the slope of the linear regression line</span> || ||
|-
!scope="row"|SMALL
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the k-th smallest value in a data set</span> || ||
|-
!scope="row"|STANDARDIZE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns a normalized value</span> || ||
|-
!scope="row"|STDEV.P
| <span lang="en" dir="ltr" class="mw-content-ltr">Calculates standard deviation based on the entire population</span> || ||
|-
!scope="row"|STDEV.S
| <span lang="en" dir="ltr" class="mw-content-ltr">Estimates standard deviation based on a sample</span> || ||
|-
!scope="row"|STDEVA
| <span lang="en" dir="ltr" class="mw-content-ltr">Estimates standard deviation based on a sample, including numbers, text, and logical values</span> || ||
|-
!scope="row"|STDEVPA
| <span lang="en" dir="ltr" class="mw-content-ltr">Calculates standard deviation based on the entire population, including numbers, text, and logical values</span> || ||
|-
!scope="row"|STEYX
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the standard error of the predicted y-value for each x in the regression</span> || ||
|-
!scope="row"|T.DIST
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Percentage Points (probability) for the Student t-distribution</span> || ||
|-
!scope="row"|T.DIST.2T
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Percentage Points (probability) for the Student t-distribution</span> || ||
|-
!scope="row"|T.DIST.RT
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Student's t-distribution</span> || ||
|-
!scope="row"|T.INV
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the t-value of the Student's t-distribution as a function of the probability and the degrees of freedom</span> || ||
|-
!scope="row"|T.INV.2T
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the inverse of the Student's t-distribution</span> || ||
|-
!scope="row"|TREND
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns values along a linear trend</span> || ||
|-
!scope="row"|TRIMMEAN
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the mean of the interior of a data set</span> || ||
|-
!scope="row"|T.TEST
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the probability associated with a Student's t-test</span> || ||
|-
!scope="row"|VAR.P
| <span lang="en" dir="ltr" class="mw-content-ltr">Calculates variance based on the entire population</span> || ||
|-
!scope="row"|VAR.S
| <span lang="en" dir="ltr" class="mw-content-ltr">Estimates variance based on a sample</span> || ||
|-
!scope="row"|VARA
| <span lang="en" dir="ltr" class="mw-content-ltr">Estimates variance based on a sample, including numbers, text, and logical values</span> || ||
|-
!scope="row"|VARPA
| <span lang="en" dir="ltr" class="mw-content-ltr">Calculates variance based on the entire population, including numbers, text, and logical values</span> || ||
|-
!scope="row"|WEIBULL.DIST
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Weibull distribution</span> || ||
|-
!scope="row"|Z.TEST
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the one-tailed probability-value of a z-test</span> || ||
|}
<span id="Text"></span>
== Tekst ==
{| class="wikitable collapsible sortable"
|+Lijst van tekst Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|ARRAYTOTEXT
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns an array of text values from any specified range</span> || ||
|-
!scope="row"|ASC
| <span lang="en" dir="ltr" class="mw-content-ltr">Changes full-width (double-byte) English letters or katakana within a character string to half-width (single-byte) characters</span> || ||
|-
!scope="row"|BAHTTEXT
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts a number to text, using the ß (baht) currency format</span> || ||
|-
!scope="row"|CHAR
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the character specified by the code number</span> || ||
|-
!scope="row"|CLEAN
| <span lang="en" dir="ltr" class="mw-content-ltr">Removes all nonprintable characters from text</span> || ||
|-
!scope="row"|CODE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns a numeric code for the first character in a text string</span> || ||
|-
!scope="row"|CONCAT
| <span lang="en" dir="ltr" class="mw-content-ltr">Combines the text from multiple ranges and/or strings, but it doesn't provide the delimiter or IgnoreEmpty arguments.</span> || {{Z+|Z10000}} || <span lang="en" dir="ltr" class="mw-content-ltr">WF only takes two strings</span>
|-
!scope="row"|CONCATENATE
| <span lang="en" dir="ltr" class="mw-content-ltr">Joins several text items into one text item</span> || {{Z+|Z10000}} ||
|-
!scope="row"|DBCS
| <span lang="en" dir="ltr" class="mw-content-ltr">Changes half-width (single-byte) English letters or katakana within a character string to full-width (double-byte) characters</span> || ||
|-
!scope="row"|DOLLAR
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts a number to text, using the $ (dollar) currency format</span> || ||
|-
!scope="row"|EXACT
| <span lang="en" dir="ltr" class="mw-content-ltr">Checks to see if two text values are identical</span> || {{Z+|Z866}} ||
|-
!scope="row"|FIND, FINDBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Finds one text value within another (case-sensitive)</span> || ||
|-
!scope="row"|FIXED
| <span lang="en" dir="ltr" class="mw-content-ltr">Formats a number as text with a fixed number of decimals</span> || ||
|-
!scope="row"|JIS
| <span lang="en" dir="ltr" class="mw-content-ltr">Changes half-width (single-byte) characters within a string to full-width (double-byte) characters</span> || ||
|-
!scope="row"|LEFT, LEFTBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the leftmost characters from a text value</span> || ||
|-
!scope="row"|LEN, LENBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the number of characters in a text string</span> || {{Z+|Z11040}} ||
|-
!scope="row"|LOWER
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts text to lowercase</span> || {{Z+|Z10047}} ||
|-
!scope="row"|MID, MIDBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns a specific number of characters from a text string starting at the position you specify</span> || ||
|-
!scope="row"|NUMBERVALUE
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts text to number in a locale-independent manner</span> || ||
|-
!scope="row"|PHONETIC
| <span lang="en" dir="ltr" class="mw-content-ltr">Extracts the phonetic (furigana) characters from a text string</span> || ||
|-
!scope="row"|PROPER
| <span lang="en" dir="ltr" class="mw-content-ltr">Capitalizes the first letter in each word of a text value</span> || {{Z+|Z10251}} ||
|-
!scope="row"|REPLACE, REPLACEBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Replaces characters within text</span> || ||
|-
!scope="row"|REPT
| <span lang="en" dir="ltr" class="mw-content-ltr">Repeats text a given number of times</span> || {{Z+|Z10911}} ||
|-
!scope="row"|RIGHT, RIGHTBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the rightmost characters from a text value</span> || ||
|-
!scope="row"|SEARCH, SEARCHBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Finds one text value within another (not case-sensitive)</span> || ||
|-
!scope="row"|SUBSTITUTE
| <span lang="en" dir="ltr" class="mw-content-ltr">Substitutes new text for old text in a text string</span> || {{Z+|Z10075}} ||
|-
!scope="row"|T
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts its arguments to text</span> || ||
|-
!scope="row"|TEXT
| <span lang="en" dir="ltr" class="mw-content-ltr">Formats a number and converts it to text</span> || {{Z+|Z13713}} ||
|-
!scope="row"|TEXTAFTER
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns text that occurs after given character or string</span> || {{Z+|Z11412}} {{Z+|Z11416}} || <span lang="en" dir="ltr" class="mw-content-ltr">Excel has parameters to choose last (or Nth)</span>
|-
!scope="row"|TEXTBEFORE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns text that occurs before a given character or string</span> || {{Z+|Z11418}} {{Z+|Z11422}} || <span lang="en" dir="ltr" class="mw-content-ltr">Excel has parameters to choose last (or Nth)</span>
|-
!scope="row"|TEXTJOIN
| <span lang="en" dir="ltr" class="mw-content-ltr">Combines the text from multiple ranges and/or strings</span> || ||
|-
!scope="row"|TEXTSPLIT
| <span lang="en" dir="ltr" class="mw-content-ltr">Splits text strings by using column and row delimiters</span> || ||
|-
!scope="row"|TRIM
| <span lang="en" dir="ltr" class="mw-content-ltr">Removes spaces from text</span> || {{Z+|Z10079}} ||
|-
!scope="row"|UNICHAR
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Unicode character that is references by the given numeric value</span> || {{Z+|Z11534}} ||
|-
!scope="row"|UNICODE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the number (code point) that corresponds to the first character of the text</span> || {{Z+|Z11515}} ||
|-
!scope="row"|UPPER
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts text to uppercase</span> || {{Z+|Z10018}} ||
|-
!scope="row"|VALUE
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts a text argument to a number</span> || ||
|-
!scope="row"|VALUETOTEXT
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns text from any specified value</span> || ||
|-
!scope="row"|ENCODEURL
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns a URL-encoded string</span> || {{Z+|Z10761}} ||
|-
!scope="row"|FILTERXML
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns specific data from the XML content by using the specified XPath</span> || ||
|-
!scope="row"|WEBSERVICE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns data from a web service.</span>
|
|
|}
[[Category:Lists of functions]]
6oodvzsap6hn9fwbmk7rd9tmc5jx8b2
307280
307278
2026-09-01T19:49:15Z
HanV
6833
Created page with "Geeft de rangorde van een getal in een lijst van getallen terug; dubbele waarden krijgen de gemiddelde rang"
307280
wikitext
text/x-wiki
<languages/>
{{w|Microsoft Excel}} functies omvatten de volgende categorieën.
Deze pagina vermeldt Excel-functies als ze een bijbehorende [[Special:MyLanguage/Wikifunctions:Function model|WikiFuncties functie]] hebben.
<span id="Add-in_and_automation"></span>
== Interne en Automatisering ==
{| class="wikitable collapsible sortable"
|+Lijst van interne en automatiseringsfuncties van Excel
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|CALL
| Aanroep van een procedure in een dynamische link-bibliotheek of codebron || ||
|-
!scope="row"|EUROCONVERT
| Zet een getal om euro's, een getal van euro's omzetten naar een munt van een eurolid, of een getal van de ene munt van een eurolid naar een andere door de euro als tussenpersoon te gebruiken (triangulatie). || ||
|-
!scope="row"|REGISTER.ID
| Geeft de register-ID terug van de gespecificeerde dynamische link-bibliotheek (DLL) of codebron die eerder is geregistreerd || ||
|}
<span id="Compatibility"></span>
== Compatibiliteit ==
{| class="wikitable collapsible sortable"
|+Lijst van compatibiliteit Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|BETADIST
| Geeft de bèta-cumulatieve verdelingsfunctie terug || ||
|-
!scope="row"|BETAINV
| Geeft de inverse van de cumulatieve verdelingsfunctie terug voor een gespecificeerde bètaverdeling || ||
|-
!scope="row"|BINOMDIST
| Geeft de binomiale verdelingskans van de individuele term terug || ||
|-
!scope="row"|CEILING
| Rond een getal af naar het dichtstbijzijnde geheel getal of naar het dichtstbijzijnde veelvoud van significantie || ||
|-
!scope="row"|CHIDIST
| Geeft de eenzijdige kans van de chi-kwadraatverdeling terug || ||
|-
!scope="row"|CHIINV
| Geeft de inverse van de eenzijdige kans van de chi-kwadraatverdeling terug || ||
|-
!scope="row"|CHITEST
| Geeft de test voor onafhankelijkheid terug || ||
|-
!scope="row"|CONFIDENCE
| Geeft het betrouwbaarheidsinterval terug voor een populatiegemiddelde || ||
|-
!scope="row"|COVAR
| Geeft covariantie terug, het gemiddelde van de producten van gepaarde afwijkingen || ||
|-
!scope="row"|CRITBINOM
| Geeft de kleinste waarde terug waarvoor de cumulatieve binomiale verdeling kleiner is dan of gelijk aan een criteriumwaarde || ||
|-
!scope="row"|EXPONDIST
| Geeft de exponentiële verdeling terug || ||
|-
!scope="row"|FDIST
| Geeft de F kansverdeling terug || ||
|-
!scope="row"|FINV
| Geeft de inverse van de F-kansverdeling terug || ||
|-
!scope="row"|FLOOR
| Rondt een getal naar beneden af, richting nul || {{Z+|Z20032}}
{{Z+|Z20841}}
|
|-
!scope="row"|FTEST
| Geeft het resultaat van een F-test terug || ||
|-
!scope="row"|GAMMADIST
| Geeft de gamma-verdeling terug || ||
|-
!scope="row"|GAMMAINV
| Geeft de inverse van de cumulatieve gammaverdeling terug || ||
|-
!scope="row"|HYPGEOMDIST
| Geeft de hypergeometrische verdeling terug || ||
|-
!scope="row"|LOGINV
| Geeft de inverse van de lognormale cumulatieve verdeling terug || ||
|-
!scope="row"|LOGNORMDIST
| Geeft de cumulatieve lognormale verdeling terug || ||
|-
!scope="row"|MODE
| Geeft de meest voorkomende waarde in een dataset terug || {{Z+|Z21851}} ||
|-
!scope="row"|NEGBINOMDIST
| Geeft de negatieve binomiale verdeling terug || ||
|-
!scope="row"|NORMDIST
| Geeft de normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORM.INV
| Geeft de inverse van de normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORMSDIST
| Geeft de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORMSINV
| Geeft de inverse van de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|PERCENTILE
| Geeft het k-de percentiel van waarden in een bereik terug || ||
|-
!scope="row"|PERCENTRANK
| Geeft de procentuele rang van een waarde in een dataset terug || ||
|-
!scope="row"|POISSON
| Geeft de Poisson-verdeling terug || ||
|-
!scope="row"|QUARTILE
| Geeft het kwartiel van een dataset terug || ||
|-
!scope="row"|RANK
| Geeft de rangorde van een getal in een lijst van getallen terug || ||
|-
!scope="row"|STDEV
| Schatting van standaarddeviatie op basis van een steekproef || ||
|-
!scope="row"|STDEVP
| Berekent de standaarddeviatie op basis van de gehele populatie || ||
|-
!scope="row"|TDIST
| Geeft de Student's t-verdeling terug || ||
|-
!scope="row"|TINV
| Geeft de inverse van de Student's t-verdeling terug || ||
|-
!scope="row"|TTEST
| Geeft de kans terug die hoort bij de Student's t-test || ||
|-
!scope="row"|VAR
| Schatting van de variantie op basis van een steekproef || ||
|-
!scope="row"|VARP
| Berekent de variantie op basis van de gehele populatie || ||
|-
!scope="row"|WEIBULL
| Berekent de variantie op basis van de gehele populatie, inclusief getallen, tekst en logische waarden || ||
|-
!scope="row"|ZTEST
| Geeft de eenzijdige kanswaarde van een z-test terug || ||
|}
== Cube ==
{| class="wikitable collapsible sortable"
|+Lijst van Cube Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|CUBEKPIMEMBER
| Geeft een naam, eigenschap en maatstaf (Key Performance Indicator) (KPI) terug en toont de naam en eigenschap in de cel. Een KPI is een kwantificeerbare maatstaf, zoals de maandelijkse brutowinst of het kwartaalomzet van medewerkers, die wordt gebruikt om de prestaties van een organisatie te monitoren. || ||
|-
!scope="row"|CUBEMEMBER
| Geeft een lid of tupel terug in een cube-hiërarchie. Gebruik om te valideren dat het lid of de tupel in de cube bestaat. || ||
|-
!scope="row"|CUBEMEMBERPROPERTY
| Geeft de waarde van een lideigenschap in de cube terug. Gebruik om te valideren dat er een lidnaam in de cube bestaat en om de gespecificeerde eigenschap voor dit lid terug te geven. || ||
|-
!scope="row"|CUBERANKEDMEMBER
| Geeft het n-de, of gerangschikte, lid in een set terug. Gebruik het om één of meer elementen in een set op te halen, zoals de beste verkoper of de top 10 studenten. || ||
|-
!scope="row"|CUBESET
| Definieert een berekende set van leden of tupels door een set-expressie naar de cube op de server te sturen, die de set aanmaakt en die set vervolgens teruggeeft aan Microsoft Office Excel. || ||
|-
!scope="row"|CUBESETCOUNT
| Geeft het aantal items in een set terug. || ||
|-
!scope="row"|CUBEVALUE
| Geeft een geaggregeerde waarde terug van een cube. || ||
|}
== Database ==
{| class="wikitable collapsible sortable"
|+Lijst van Excel-databasefuncties
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|DAVERAGE
| Geeft het gemiddelde van geselecteerde database-items terug || ||
|-
!scope="row"|DCOUNT
| Telt de cellen die getallen bevatten in een database || ||
|-
!scope="row"|DCOUNTA
| Telt niet-lege cellen in een database || ||
|-
!scope="row"|DGET
| Haalt uit een database een enkel record dat voldoet aan de gespecificeerde criteria || ||
|-
!scope="row"|DMAX
| Geeft de maximale waarde terug uit geselecteerde database-gegevens || ||
|-
!scope="row"|DMIN
| Geeft de minimale waarde terug uit geselecteerde database-gegevens || ||
|-
!scope="row"|DPRODUCT
| Vermenigvuldigt de waarden in een bepaald veld van records die overeenkomen met de criteria in een database || ||
|-
!scope="row"|DSTDEV
| De standaardafwijking wordt geschat op basis van een steekproef van geselecteerde database-gegevens || ||
|-
!scope="row"|DSTDEVP
| Berekent de standaardafwijking op basis van de gehele populatie van geselecteerde database-gegevens || ||
|-
!scope="row"|DSUM
| Voegt de nummers toe in de veldkolom van database-gegevens die overeenkomen met de criteria || ||
|-
!scope="row"|DVAR
| Schat de variantie op basis van een steekproef uit geselecteerde database-gegevens || ||
|-
!scope="row"|DVARP
| Berekent variantie op basis van de gehele populatie van geselecteerde database-gegevens || ||
|}
<span id="Date_and_time"></span>
== Datum en tijd ==
{| class="wikitable collapsible sortable"
|+Lijst van datum en tijd Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|DATE
| Geeft het serienummer van een bepaalde datum terug || ||
|-
!scope="row"|DATEDIF
| Berekent het aantal dagen, maanden of jaren tussen twee data. Deze functie is nuttig in formules waarbij u een leeftijd moet berekenen. || ||
|-
!scope="row"|DATEVALUE
| Zet een datum in de vorm van tekst om in een serienummer || ||
|-
!scope="row"|DAY
| Zet een serienummer om in een dag van de maand || ||
|-
!scope="row"|DAYS
| Geeft het aantal dagen tussen twee datums terug || ||
|-
!scope="row"|DAYS360
| Berekent het aantal dagen tussen twee datums op basis van een jaar van 360-dagen || ||
|-
!scope="row"|EDATE
| Geeft het serienummer van de datum terug, dat het aangegeven aantal maanden vóór of na de startdatum is || ||
|-
!scope="row"|EOMONTH
| Geeft het serienummer van de laatste dag van de maand vóór of na een bepaald aantal maanden || ||
|-
!scope="row"|HOUR
| Zet een serienummer om in een uur || ||
|-
!scope="row"|ISOWEEKNUM
| Geeft het nummer van het ISO-weeknummer van het jaar terug voor een bepaalde datum || ||
|-
!scope="row"|MINUTE
| Zet een serienummer om in een minuut || ||
|-
!scope="row"|MONTH
| Zet een serienummer om in een maand || ||
|-
!scope="row"|NETWORKDAYS
| Geeft het aantal hele werkdagen tussen twee datums terug || ||
|-
!scope="row"|NETWORKDAYS.INTL
| Geeft het aantal hele werkdagen tussen twee datums terug met behulp van parameters om aan te geven welke en hoeveel dagen weekenddagen zijn || ||
|-
!scope="row"|NOW
| Geeft het serienummer van de huidige datum en tijd terug || ||
|-
!scope="row"|SECOND
| Zet een serienummer om in een seconde || ||
|-
!scope="row"|TIME
| Geeft het serienummer van een bepaald tijdstip terug || ||
|-
!scope="row"|TIMEVALUE
| Zet een tijd in de vorm van tekst om in een serienummer || ||
|-
!scope="row"|TODAY
| Geeft het serienummer van de datum van vandaag terug. || ||
|-
!scope="row"|WEEKDAY
| Zet een serienummer om in een dag van de week || {{Z+|Z17540}} || Heeft Dag, Maand en Jaar nodig in plaats van een serienummer
|-
!scope="row"|WEEKNUM
| Zet een serienummer om in een nummer dat numeriek aangeeft waar de week ligt met een jaar || ||
|-
!scope="row"|WORKDAY
| Geeft het serienummer van de datum voor of na een bepaald aantal werkdagen terug. || ||
|-
!scope="row"|WORKDAY.INTL
| Geeft het serienummer van de datum voor of na een bepaald aantal werkdagen terug met behulp van parameters die aangeven welke en hoeveel dagen weekenddagen zijn || ||
|-
!scope="row"|YEAR
| Zet een serienummer om in een jaar || ||
|-
!scope="row"|YEARFRAC
| Geeft het jaardeel terug dat staat voor het aantal hele dagen tussen 'start_date' en 'end_date' || ||
|}
<span id="Engineering"></span>
== Technisch ==
{| class="wikitable collapsible sortable"
|+Lijst van technische Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|BESSELI
| Geeft de aangepaste Besselfunctie In(x) terug || ||
|-
!scope="row"|BESSELJ
| Geeft de Besselfunctie Jn(x) terug || ||
|-
!scope="row"|BESSELK
| Geeft de aangepaste Besselfunctie Kn(x) terug || ||
|-
!scope="row"|BESSELY
| Geeft de Besselfunctie Yn(x) terug || ||
|-
!scope="row"|BIN2DEC
| Zet een binair getal om in een decimaal getal || ||
|-
!scope="row"|BIN2HEX
| Zet een binair getal om in een hexadecimaal getal || ||
|-
!scope="row"|BIN2OCT
| Zet een binair getal om in een octaal nummer || ||
|-
!scope="row"|BITAND
| Geeft een 'Bitgewijs And' van twee getallen terug || ||
|-
!scope="row"|BITLSHIFT
| Geeft een getal terug dat met shift_amount bits naar links is verschoven || ||
|-
!scope="row"|BITOR
| Geeft een 'Bitgewijs OR' van 2 getallen terug || ||
|-
!scope="row"|BITRSHIFT
| Geeft een getal terug dat met shift_amount bits naar rechts is verschoven || ||
|-
!scope="row"|BITXOR
| Geeft een bitsgewijs 'Exclusieve OR' van twee getallen terug || ||
|-
!scope="row"|COMPLEX
| Zet reële en imaginaire coëfficiënten om in een complex getal || ||
|-
!scope="row"|CONVERT
| Zet een getal om van het ene meetstelsel naar het andere. || ||
|-
!scope="row"|DEC2BIN
| Zet een decimaal getal om in een binair getal || ||
|-
!scope="row"|DEC2HEX
| Zet een decimaal getal om in een hexadecimaal getal || ||
|-
!scope="row"|DEC2OCT
| Zet een decimaal getal om in een octaal getal || ||
|-
!scope="row"|DELTA
| Test of twee waarden gelijk zijn || ||
|-
!scope="row"|ERF
| Geeft de foutfunctie terug || ||
|-
!scope="row"|ERF.PRECISE
| Geeft de foutfunctie terug || ||
|-
!scope="row"|ERFC
| Geeft de complementaire foutfunctie terug || ||
|-
!scope="row"|ERFC.PRECISE
| Geeft de complementaire functie ERF terug geïntegreerd tussen x en oneindig || ||
|-
!scope="row"|GESTEP
| Test of een getal groter is dan een drempelwaarde || ||
|-
!scope="row"|HEX2BIN
| Zet een hexadecimaal getal om in een binair getal || ||
|-
!scope="row"|HEX2DEC
| Zet een hexadecimaal getal om in een decimaal getal || ||
|-
!scope="row"|HEX2OCT
| Zet een hexadecimaal getal om in een octaal getal || ||
|-
!scope="row"|IMABS
| Geeft de absolute waarde (modulus) van een complex getal terug || ||
|-
!scope="row"|IMAGINARY
| Geeft de imaginaire coëfficiënt van een complex getal terug || ||
|-
!scope="row"|IMARGUMENT
| Geeft het argument theta terug, een hoek uitgedrukt in radialen || ||
|-
!scope="row"|IMCONJUGATE
| Geeft het complex geconjugeerde van een complex getal terug || ||
|-
!scope="row"|IMCOS
| Geeft de cosinus van een complex getal terug || ||
|-
!scope="row"|IMCOSH
| Geeft de hyperbolische cosinus van een complex getal terug || ||
|-
!scope="row"|IMCOT
| Geeft de cotangens van een complex getal terug || ||
|-
!scope="row"|IMCSC
| Geeft de cosecans van een complex getal terug || ||
|-
!scope="row"|IMCSCH
| Geeft de hyperbolische cosecans van een complex getal terug || ||
|-
!scope="row"|IMDIV
| Geeft het quotiënt van twee complexe getallen terug || ||
|-
!scope="row"|IMEXP
| Geeft de exponentiële van een complex getal terug || ||
|-
!scope="row"|IMLN
| Geeft het natuurlijke logaritme van een complex getal terug || ||
|-
!scope="row"|IMLOG10
| Geeft de logaritme van basis-10 van een complex getal terug || ||
|-
!scope="row"|IMLOG2
| Geeft de logaritme van basis-2 van een complex getal terug || ||
|-
!scope="row"|IMPOWER
| Geeft een complex getal terug dat tot een geheel getal macht is verhoogd || ||
|-
!scope="row"|IMPRODUCT
| Geeft het product van complexe getallen terug || ||
|-
!scope="row"|IMREAL
| Geeft de reële coëfficiënt van een complex getal terug || ||
|-
!scope="row"|IMSEC
| Geeft de secans van een complex getal terug || ||
|-
!scope="row"|IMSECH
| Geeft de hyperbolische secans van een complex getal terug || ||
|-
!scope="row"|IMSIN
| Geeft de sinus van een complex getal terug || ||
|-
!scope="row"|IMSINH
| Geeft de hyperbolische sinus van een complex getal terug || ||
|-
!scope="row"|IMSQRT
| Geeft de wortel van een complex getal terug || ||
|-
!scope="row"|IMSUB
| Geeft het verschil terug tussen twee complexe getallen || ||
|-
!scope="row"|IMSUM
| Geeft de som van complexe getallen terug || ||
|-
!scope="row"|IMTAN
| Geeft de tangens van een complex getal terug || ||
|-
!scope="row"|OCT2BIN
| Zet een octaal getal om in een binair getal || ||
|-
!scope="row"|OCT2DEC
| Zet een octaal getal om in een decimaal getal || ||
|-
!scope="row"|OCT2HEX
| Zet een octaal getal om in een hexadecimaal getal || ||
|}
<span id="Financial"></span>
== Financieel ==
{| class="wikitable collapsible sortable"
|+Lijst van financiële Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|ACCRINT
| Retourneert de opgebouwde rente voor een zekerheid dat periodieke rente betaalt || ||
|-
!scope="row"|ACCRINTM
| Geeft de opgebouwde rente terug voor een zekerheid dat rente betaalt op een vervaldatum || ||
|-
!scope="row"|AMORDEGRC
| Geeft de afschrijving voor elke boekhoudperiode terug met behulp van een afschrijvingscoëfficiënt || ||
|-
!scope="row"|AMORLINC
| Geeft de afschrijving voor elke boekhoudperiode terug || ||
|-
!scope="row"|COUPDAYBS
| Geeft het aantal dagen terug vanaf het begin van de couponperiode tot de afwikkelingsdatum || ||
|-
!scope="row"|COUPDAYS
| Geeft het aantal dagen in de couponperiode terug waarin de afwikkelingsdatum is opgenomen || ||
|-
!scope="row"|COUPDAYSNC
| Geeft het aantal dagen terug van de afwikkelingsdatum tot de volgende coupondatum || ||
|-
!scope="row"|COUPNCD
| Geeft de volgende coupondatum na de afwikkelingsdatum terug || ||
|-
!scope="row"|COUPNUM
| Geeft het aantal coupons terug dat tussen de afwikkelingsdatum en de vervaldatum moet worden betaald || ||
|-
!scope="row"|COUPPCD
| Geeft de vorige coupondatum vóór de afwikkelingsdatum terug || ||
|-
!scope="row"|CUMIPMT
| Geeft de cumulatieve rente terug die tussen twee perioden is betaald || ||
|-
!scope="row"|CUMPRINC
| Geeft de cumulatieve hoofdsom terug die is betaald op een lening tussen twee periodes || ||
|-
!scope="row"|DB
| Geeft de afschrijving van een activa voor een bepaalde periode terug door gebruik te maken van de fixed-declining balansmethode || ||
|-
!scope="row"|DDB
| Geeft de afschrijving van een activa voor een bepaalde periode terug door gebruik te maken van de double-declining balansmethode of een andere methode die u specificeert || ||
|-
!scope="row"|DISC
| Geeft het discontopercentage voor een zekerheid terug || ||
|-
!scope="row"|DOLLARDE
| Zet een dollarprijs, uitgedrukt als een fractie, om in een dollarprijs, uitgedrukt als een decimaal getal || ||
|-
!scope="row"|DOLLARFR
| Zet een dollarprijs, uitgedrukt als een decimaal getal, om in een dollarprijs, uitgedrukt als een fractie || ||
|-
!scope="row"|DURATION
| Geeft de jaarlijkse looptijd van een zekerheid terug met periodieke rentebetalingen || ||
|-
!scope="row"|EFFECT
| Geeft de effectieve jaarlijkse rente terug || ||
|-
!scope="row"|FV
| Geeft de toekomstige waarde van een belegging terug || ||
|-
!scope="row"|FVSCHEDULE
| Geeft de toekomstige waarde van een initiële hoofdsom terug na het toepassen van een reeks samengestelde rentetarieven || ||
|-
!scope="row"|INTRATE
| Geeft de rente terug voor een volledig geïnvesteerde zekerheid || ||
|-
!scope="row"|IPMT
| Geeft de rentebetaling voor een investering voor een bepaalde periode terug || ||
|-
!scope="row"|IRR
| Geeft het interne rendement terug voor een reeks kasstromen || ||
|-
!scope="row"|ISPMT
| Berekent de rente die wordt betaald gedurende een specifieke investeringsperiode || ||
|-
!scope="row"|MDURATION
| Geeft de Macauley-aangepaste duur terug voor een zekerheid met een veronderstelde nominale waarde van $100 || ||
|-
!scope="row"|MIRR
| Geeft het interne rendement terug, waarbij positieve en negatieve kasstromen worden gefinancierd tegen verschillende rentes || ||
|-
!scope="row"|NOMINAL
| Geeft het jaarlijkse nominale rentepercentage terug || ||
|-
!scope="row"|NPER
| Geeft het aantal periodes voor een investering terug || ||
|-
!scope="row"|NPV
| Geeft de netto contante waarde van een investering terug op basis van een reeks periodieke kasstromen en een discontovoet || ||
|-
!scope="row"|ODDFPRICE
| Geeft de prijs per $100 nominale waarde van een zekerheid terug met een oneven eerste periode || ||
|-
!scope="row"|ODDFYIELD
| Geeft het rendement van een zekerheid terug met een oneven eerste periode || ||
|-
!scope="row"|ODDLPRICE
| Geeft de prijs per $100 nominale waarde van een zekerheid terug met een oneven laatste periode || ||
|-
!scope="row"|ODDLYIELD
| Geeft het rendement van een zekerheid terug met een oneven laatste periode || ||
|-
!scope="row"|PDURATION
| Geeft het aantal periodes terug dat een investering nodig heeft om een bepaalde waarde te bereiken || ||
|-
!scope="row"|PMT
| Retourneert de periodieke betaling voor een annuïteit || ||
|-
!scope="row"|PPMT
| Geeft de betaling van de hoofdsom voor een investering voor een bepaalde periode terug || ||
|-
!scope="row"|PRICE
| Geeft de prijs terug per nominale waarde van $100 van een zekerheid dat periodieke rente betaalt || ||
|-
!scope="row"|PRICEDISC
| Geeft de prijs per nominale waarde van $100 van een afgeprijsde zekerheid terug || ||
|-
!scope="row"|PRICEMAT
| Geeft de prijs per nominale waarde van $100 terug van een zekerheid dat rente betaalt bij vervaldatum || ||
|-
!scope="row"|PV
| Geeft de huidige waarde van een investering terug || ||
|-
!scope="row"|RATE
| Geeft het rentepercentage per periode van een annuïteit terug || ||
|-
!scope="row"|RECEIVED
| Retourneert het bedrag dat bij de vervaldatum is ontvangen voor een volledig geïnvesteerd zekerheid || ||
|-
!scope="row"|RRI
| Geeft een gelijkwaardige rente voor de groei van een investering || ||
|-
!scope="row"|SLN
| Geeft de rechtlijnige afschrijving van een activa voor één periode terug || ||
|-
!scope="row"|STOCKHISTORY
| Haalt historische gegevens op over een financieel instrument || ||
|-
!scope="row"|SYD
| Geeft de "sum-of-years" afschrijving van een activa voor een bepaalde periode terug || ||
|-
!scope="row"|TBILLEQ
| Geeft het obligatie-equivalente rendement voor een schatkistwissel terug || ||
|-
!scope="row"|TBILLPRICE
| Geeft de prijs per nominale waarde van $100 voor een schatkistwissel terug || ||
|-
!scope="row"|TBILLYIELD
| Geeft het rendement terug voor een schatkistwissel || ||
|-
!scope="row"|VDB
| Geeft de afschrijving van een activa terug voor een gespecificeerde of gedeeltelijke periode door gebruik te maken van een afnemende balansmethode || ||
|-
!scope="row"|XIRR
| Geeft het interne rendement terug voor een schema van kasstromen dat niet noodzakelijkerwijs periodiek is || ||
|-
!scope="row"|XNPV
| Geeft de netto contante waarde terug voor een schema van kasstromen dat niet noodzakelijkerwijs periodiek is || ||
|-
!scope="row"|YIELD
| Geeft het rendement terug op een zekerheid dat periodieke rente betaalt || ||
|-
!scope="row"|YIELDDISC
| Geeft de jaarlijkse opbrengst terug voor een gedisconteerde zekerheid; bijvoorbeeld een schatkistwissel || ||
|-
!scope="row"|YIELDMAT
| Geeft het jaarlijkse rendement terug van een zekerheid dat rente betaalt op een vervaldatum || ||
|}
<span id="Information"></span>
== Informatie ==
{| class="wikitable collapsible sortable"
|+Lijst van informatie Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|CELL
| Geeft informatie terug over de opmaak, locatie of inhoud van een cel || ||
|-
!scope="row"|ERROR.TYPE
| Geeft een getal terug dat overeenkomt met een fouttype || ||
|-
!scope="row"|INFO
| Geeft informatie terug over de huidige operationele omgeving || ||
|-
!scope="row"|ISBLANK
| Geeft TRUE terug als de waarde leeg is || {{Z+|Z10008}} ||
|-
!scope="row"|ISERR
| Geeft TRUE terug als de waarde een willekeurige foutwaarde is anders dan #N/A || ||
|-
!scope="row"|ISERROR
| Geeft TRUE terug als de waarde een willekeurige foutwaarde is || {{Z+|Z20107}} ||
|-
!scope="row"|ISEVEN
| Geeft TRUE terug als het getal even is || {{Z+|Z12480}} ||
|-
!scope="row"|ISFORMULA
| Geeft TRUE terug als er een verwijzing is naar een cel die een formule bevat || ||
|-
!scope="row"|ISLOGICAL
| Geeft TRUE terug als de waarde een logische waarde is || ||
|-
!scope="row"|ISNA
| Geeft TRUE terug als de waarde de #N/A-foutwaarde is || ||
|-
!scope="row"|ISNONTEXT
| Geeft TRUE terug als de waarde geen tekst is || ||
|-
!scope="row"|ISNUMBER
| Geeft TRUE als de waarde een getal is || {{Z+|Z10715}} ||
|-
!scope="row"|ISODD
| Geeft TRUE terug als het getal oneven is || {{Z+|Z12429}} ||
|-
!scope="row"|ISOMITTED
| Controleert of de waarde in een LAMBDA ontbreekt en geeft TRUE of FALSE terug || ||
|-
!scope="row"|ISREF
| Geeft TRUE terug als de waarde een referentie is || ||
|-
!scope="row"|ISTEXT
| Geeft TRUE terug als de waarde een tekst is || ||
|-
!scope="row"|N
| Geeft een waarde terug die is omgezet in een getal || ||
|-
!scope="row"|NA
| Geeft de foutwaarde #N/A terug || ||
|-
!scope="row"|SHEET
| Geeft het bladnummer van het gerefereerde blad terug || ||
|-
!scope="row"|SHEETS
| Geeft het aantal bladen in een referentie terug || ||
|-
!scope="row"|TYPE
| Geeft een getal terug dat het datatype van een waarde aangeeft || ||
|}
<span id="Logical"></span>
== Logica ==
{| class="wikitable collapsible sortable"
|+Lijst van logische Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|AND
| Geeft TRUE terug als al zijn argumenten TRUE zijn || {{Z+|Z10174}} ||
|-
!scope="row"|BYCOL
| Past een LAMBDA toe op elke kolom en geeft een array van de resultaten terug || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|BYROW
| Past een LAMBDA toe op elke rij en geeft een array van de resultaten terug || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|FALSE
| Geeft de logische waarde FALSE terug || {{Z+|Z10206}} ||
|-
!scope="row"|IF
| Specificeert een logische test om uit te voeren || {{Z+|Z802}}, {{Z+|Z11542}} ||
|-
!scope="row"|IFERROR
| Geeft een waarde terug die u specificeert als een formule evalueert naar een fout; geeft anders het resultaat van de formule terug || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|IFNA
| Geeft de door u opgegeven waarde terug als de expressie wordt opgelost naar #N/A, anders geeft het resultaat van de expressie terug || ||
|-
!scope="row"|IFS
| Controleert of aan één of meer voorwaarden is voldaan en geeft een waarde terug die overeenkomt met de eerste TRUE-voorwaarde. || {{Z+|Z19601}} ||
|-
!scope="row"|LAMBDA
| Maak aangepaste, herbruikbare functies en roept ze met een vriendelijke naam aan || {{Z+|Z8}} ||
|-
!scope="row"|LET
| Wijst een naam toe aan het resultaat van een berekening || ||
|-
!scope="row"|MAKEARRAY
| Geeft een berekende array van een gespecificeerde rij- en kolomgrootte terug door een LAMBDA toe te passen || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|MAP
| Geeft een array terug die wordt gevormd door elke waarde in de array(s) te koppelen naar een nieuwe waarde door een LAMBDA toe te passen om een nieuwe waarde te creëren || {{Z+|Z873}} ||
|-
!scope="row"|NOT
| Keert de logische waarde van zijn argument om || {{Z+|Z10216}} ||
|-
!scope="row"|OR
| Geeft TRUE terug als minstens een van de argumenten TRUE is || {{Z+|Z10184}} ||
|-
!scope="row"|REDUCE
| Reduceert een array tot een enkele waarde door een LAMBDA toe te passen op elke waarde en de totale waarde in de accumulator terug te geven || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|SCAN
| Scant een array door een LAMBDA toe te passen op elke waarde en geeft een array terug met elke tussenliggende waarde || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|SWITCH
| Evalueert een expressie aan de hand van een lijst met waarden en geeft het resultaat terug dat overeenkomt met de eerste overeenkomende waarde. Als er geen overeenkomenst is, kan een optionele standaardwaarde worden teruggegeven. || ||
|-
!scope="row"|TRUE
| Geeft de logische waarde TRUE terug || {{Z+|Z10210}} ||
|-
!scope="row"|XOR
| Geeft een logisch exclusieve OF alle argumenten terug || {{Z+|Z10237}} ||
|}
<span id="Lookup_and_reference"></span>
== Opzoeken en referentie ==
{| class="wikitable collapsible sortable"
|+Lijst van zoek- en referentiefuncties van Excel
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|VSTACK
| Voegt arrays verticaal en in volgorde toe om een groter array terug te geven || ||
|-
!scope="row"|WRAPCOLS
| Wikkelt de opgegeven rij of kolom met waarden in kolommen na een bepaald aantal elementen || ||
|-
!scope="row"|WRAPROWS
| Wikkelt de opgegeven rij of kolom met waarden in rijen na een bepaald aantal elementen || ||
|-
!scope="row"|ADDRESS
| Geeft een verwijzing als tekst terug naar een enkele cel in een werkblad || ||
|-
!scope="row"|AREAS
| Geeft het aantal velden in een referentie terug || ||
|-
!scope="row"|CHOOSE
| Kiest een waarde uit een lijst van waarden || ||
|-
!scope="row"|CHOOSECOLS
| Geeft de gespecificeerde kolommen terug uit een array || ||
|-
!scope="row"|CHOOSEROWS
| Geeft de gespecificeerde rijen terug uit een array || ||
|-
!scope="row"|COLUMN
| Geeft het kolomnummer van een referentie terug || ||
|-
!scope="row"|COLUMNS
| Geeft het aantal kolommen in een referentie terug || ||
|-
!scope="row"|DROP
| Sluit een bepaald aantal rijen of kolommen uit van het begin of einde van een array || ||
|-
!scope="row"|EXPAND
| Breidt een array uit of vult deze op tot gespecificeerde rij- en kolomafmetingen || ||
|-
!scope="row"|FILTER
| Filtert een reeks gegevens op basis van criteria die u definieert || ||
|-
!scope="row"|FORMULATEXT
| Geeft de formule op de gegeven referentie terug als tekst || ||
|-
!scope="row"|GETPIVOTDATA
| Retourneert gegevens die zijn opgeslagen in een draaitafelrapport (PivotTable) || ||
|-
!scope="row"|HLOOKUP
| Kijkt in de bovenste rij van een array en geeft de waarde van de aangegeven cel terug || ||
|-
!scope="row"|HSTACK
| Voegt arrays horizontaal en in volgorde toe om een groter array terug te geven || ||
|-
!scope="row"|HYPERLINK
| Maakt een snelkoppeling of sprong aan die een document opent dat is opgeslagen op een netwerkserver, een intranet of het internet || ||
|-
!scope="row"|IMAGE
| Geeft een afbeelding terug uit een gegeven bron || ||
|-
!scope="row"|INDEX
| Gebruikt een index om een waarde te kiezen uit een referentie of array || {{Z+|Z13397}} || Controleren Indexbase
|-
!scope="row"|INDIRECT
| Geeft een referentie terug die wordt aangegeven door een tekstwaarde || ||
|-
!scope="row"|LOOKUP
| Zoekt waarden op in een vector of array || {{Z+|Z13708}} || Controleer of het mogelijk is in arrays met meerdere kolommen.
|-
!scope="row"|MATCH
| Zoekt waarden op in een referentie of array || ||
|-
!scope="row"|OFFSET
| Geeft een referentie-offset terug ten opzichte van een gegeven referentie || ||
|-
!scope="row"|ROW
| Geeft het rijnummer van een referentie terug || ||
|-
!scope="row"|ROWS
| Geeft het aantal rijen in een referentie terug || ||
|-
!scope="row"|RTD
| Haalt realtime data op uit een programma dat COM-automatisering ondersteunt || ||
|-
!scope="row"|SORT
| Sorteert de inhoud van een bereik of een array || ||
|-
!scope="row"|SORTBY
| Sorteert de inhoud van een bereik of array op basis van de waarden in een overeenkomstige bereik of array || ||
|-
!scope="row"|TAKE
| Geeft een gespecificeerd aantal aaneengesloten rijen of kolommen terug vanaf het begin of einde van een array || ||
|-
!scope="row"|TOCOL
| Geeft het array terug in één kolom || ||
|-
!scope="row"|TOROW
| Geeft het array terug in één rij || ||
|-
!scope="row"|TRANSPOSE
| Geeft het array terug waarbij de rijen en kolommen omgedraaid zijn. || ||
|-
!scope="row"|UNIQUE
| Geeft een lijst van unieke waarden terug in een lijst of bereik || ||
|-
!scope="row"|VLOOKUP
| Kijkt in de eerste kolom van een array en beweegt over de rij om de waarde van een cel terug te geven || ||
|-
!scope="row"|XLOOKUP
| Zoekt in een bereik of array, en geeft een item terug dat overeenkomt met de eerste gevonden match. Als er geen match bestaat, kan XLOOKUP de dichtstbijzijnde (benaderende) match teruggeven. || ||
|-
!scope="row"|XMATCH
| Geeft de relatieve positie van een item in een array of bereik van cellen terug. || ||
|}
<span id="Math_and_trigonometry"></span>
== Wiskunde en trigonometrie ==
{| class="wikitable collapsible sortable"
|+Lijst van Wiskunde en trigonometrie Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|ABS
| Geeft de absolute waarde van een getal terug || {{Z+|Z11235}} ||
|-
!scope="row"|ACOS
| Geeft de arccosinus van een getal terug || {{Z+|Z12497}} ||
|-
!scope="row"|ACOSH
| Geeft de inverse hyperbolische cosinus van een getal terug || {{Z+|Z12500}} ||
|-
!scope="row"|ACOT
| Geeft de arccotangent van een getal terug || ||
|-
!scope="row"|ACOTH
| Geeft de hyperbolische arccotangent van een getal terug || ||
|-
!scope="row"|AGGREGATE
| Geeft een aggregaat terug in een lijst of database || ||
|-
!scope="row"|ARABIC
| Zet een Romeins getal om in een gewoon getal || {{Z+|Z11023}} ||
|-
!scope="row"|ASIN
| Geeft de arcsinus van een getal terug || {{Z+|Z12505}} ||
|-
!scope="row"|ASINH
| Geeft de inverse hyperbolische sinus van een getal terug || {{Z+|Z12509}} ||
|-
!scope="row"|ATAN
| Geeft de arctangens van een getal terug || ||
|-
!scope="row"|ATAN2
| Geeft de arctangens terug van x- en y-coördinaten || ||
|-
!scope="row"|ATANH
| Geeft de inverse hyperbolische tangens van een getal terug || ||
|-
!scope="row"|BASE
| Zet een getal om in een tekstrepresentatie met de gegeven radix (basis) || ||
|-
!scope="row"|CEILING.MATH
| Rond een getal naar boven af op het dichtstbijzijnde geheel getal of naar het dichtstbijzijnde veelvoud van significantie || ||
|-
!scope="row"|CEILING.PRECISE
| Rond een getal af op het dichtstbijzijnde geheel getal of op het dichtstbijzijnde veelvoud van significantie. Ongeacht het teken van het getal wordt het getal afgerond. || ||
|-
!scope="row"|COMBIN
| Geeft het aantal combinaties terug voor een gegeven aantal objecten || ||
|-
!scope="row"|COMBINA
| Geeft het aantal combinaties (met herhalingen) terug voor een gegeven aantal items || ||
|-
!scope="row"|COS
| Geeft de cosinus van een getal terug || {{Z+|Z12473}}
|
|-
!scope="row"|COSH
| Geeft de hyperbolische cosinus van een getal terug || ||
|-
!scope="row"|COT
| Geeft de hyperbolische cosinus van een getal terug || ||
|-
!scope="row"|COTH
| Geeft de cotangens van een hoek terug || ||
|-
!scope="row"|CSC
| Geeft de cosecant van een hoek terug || ||
|-
!scope="row"|CSCH
| Geeft de hyperbolische cosecant van een hoek terug || ||
|-
!scope="row"|DECIMAL
| Zet een tekstweergave van een getal in een gegeven basis om in een decimaal getal || ||
|-
!scope="row"|DEGREES
| Zet radialen om in graden || ||
|-
!scope="row"|EVEN
| Rond een getal af naar het dichtstbijzijnde even geheel getal || ||
|-
!scope="row"|EXP
| Geeft e terug die wordt verhoogd tot de macht van een gegeven getal || ||
|-
!scope="row"|FACT
| Geeft de faculteit van een getal terug || ||
|-
!scope="row"|FACTDOUBLE
| Geeft de dubbele faculteit van een getal terug || ||
|-
!scope="row"|FLOOR.MATH
| Rond een getal naar beneden af op het dichtstbijzijnde geheel getal of naar het dichtstbijzijnde veelvoud van significantie || ||
|-
!scope="row"|FLOOR.PRECISE
| Rond een getal af op het dichtstbijzijnde geheel getal of op het dichtstbijzijnde veelvoud van significantie. Ongeacht het teken van het getal wordt het getal afgerond. || ||
|-
!scope="row"|GCD
| Geeft de grootste gemene deler terug || ||
|-
!scope="row"|INT
| Rond een getal af naar beneden naar het dichtstbijzijnde geheel getal || ||
|-
!scope="row"|ISO.CEILING
| Geeft een getal terug dat wordt afgerond naar het dichtstbijzijnde geheel getal of naar het dichtstbijzijnde veelvoud van significantie || ||
|-
!scope="row"|LCM
| Geeft het kleinste gemeenschappelijke veelvoud terug || ||
|-
!scope="row"|LN
| Geeft het natuurlijke logaritme van een getal terug || ||
|-
!scope="row"|LOG
| Geeft de logaritme van een getal terug met een opgegeven basisgetal || ||
|-
!scope="row"|LOG10
| Geeft de logaritme van basis-10 van een getal terug || ||
|-
!scope="row"|MDETERM
| Geeft de matrixdeterminant van een array terug || ||
|-
!scope="row"|MINVERSE
| Geeft de matrixinverse van een array terug || ||
|-
!scope="row"|MMULT
| Geeft het matrixproduct van twee arrays terug || ||
|-
!scope="row"|MOD
| Geeft de rest terug uit een deling || {{Z+|Z12476}} ||
|-
!scope="row"|MROUND
| Geeft een getal terug dat wordt afgerond op het gewenste veelvoud || ||
|-
!scope="row"|MULTINOMIAL
| Geeft de som (multinomial) van een verzameling getallen terug || ||
|-
!scope="row"|MUNIT
| Geeft de eenheidsmatrix voor de gespecificeerde dimensie terug || ||
|-
!scope="row"|ODD
| Rond een getal af naar boven op het dichtstbijzijnde oneven geheel getal || ||
|-
!scope="row"|PI
| Geeft de waarde van Pi terug || {{Z+|Z20862}} ||
|-
!scope="row"|POWER
| Geeft het resultaat terug van een getal dat tot een macht is verhoogd || {{Z+|Z13647}} ||
|-
!scope="row"|PRODUCT
| Vermenigvuldigt zijn argumenten || {{Z+|Z10862}} ||
|-
!scope="row"|QUOTIENT
| Geeft het gehele deel terug van een deling || {{Z+|Z12522}} ||
|-
!scope="row"|RADIANS
| Zet graden om in radialen || ||
|-
!scope="row"|RAND
| Geeft een willekeurig getal tussen 0 en 1 terug || ||
|-
!scope="row"|RANDARRAY
| Geeft een reeks willekeurige getallen tussen 0 en 1 terug. U kunt echter het aantal rijen en kolommen aangeven om in te vullen, de minimale en maximale waarden en of u gehele getallen of decimalen wilt terug krijgen. || ||
|-
!scope="row"|RANDBETWEEN
| Geeft een willekeurig getal terug tussen de getallen die u heeft gespecificeerd || ||
|-
!scope="row"|ROMAN
| Zet een Arabisch getal om naar een Romeins getal, als tekst || {{Z+|Z11022}} ||
|-
!scope="row"|ROUND
| Rondt een getal af op een bepaald aantal cijfers achter de komma || ||
|-
!scope="row"|ROUNDDOWN
| Rondt een getal naar beneden af, richting nul || ||
|-
!scope="row"|ROUNDUP
| Rondt een getal naar boven af, weg van nul || ||
|-
!scope="row"|SEC
| Geeft de secant van een hoek terug || ||
|-
!scope="row"|SECH
| Geeft de hyperbolische secant van een hoek terug || ||
|-
!scope="row"|SEQUENCE
| Genereert een lijst met sequentiële getallen in een array, zoals 1, 2, 3, 4 || ||
|-
!scope="row"|SERIESSUM
| Geef de som terug van macht serie op basis van de formule || ||
|-
!scope="row"|SIGN
| Geeft het teken van een getal terug || ||
|-
!scope="row"|SIN
| Geeft de sinus van een hoek terug || ||
|-
!scope="row"|SINH
| Geeft de hyperbolische sinus van een getal terug || ||
|-
!scope="row"|SQRT
| Geeft een positieve wortel terug || ||
|-
!scope="row"|SQRTPI
| Geeft de wortel terug van (getal * pi) || ||
|-
!scope="row"|SUBTOTAL
| Geeft een subtotaal terug van een lijst of database || ||
|-
!scope="row"|SUM
| Telt de argumenten op || {{Z+|Z12720}} ||
|-
!scope="row"|SUMIF
| Voegt de cellen toe die gespecificeerd zijn volgens een bepaald criterium || ||
|-
!scope="row"|SUMIFS
| Voegt de cellen toe in een bereik dat aan meerdere criteria voldoet || ||
|-
!scope="row"|SUMPRODUCT
| Geeft de som van de producten van de overeenkomstige arraycomponenten terug. || ||
|-
!scope="row"|SUMSQ
| Geeft de som van de kwadraten van de argumenten terug || ||
|-
!scope="row"|SUMX2MY2
| Geeft de som terug van het verschil van kwadraten van overeenkomstige waarden in twee arrays || ||
|-
!scope="row"|SUMX2PY2
| Geeft de som terug van de som van de kwadraten van de overeenkomstige waarden in twee arrays || ||
|-
!scope="row"|SUMXMY2
| Geeft de som van kwadraten van verschillen van overeenkomstige waarden in twee arrays terug. || ||
|-
!scope="row"|TAN
| Geeft de tangens van een getal terug || ||
|-
!scope="row"|TANH
| Geeft de hyperbolische tangens van een getal terug || ||
|-
!scope="row"|TRUNC
| Kapt een getal af tot een geheel getal || ||
|}
<span id="Statistical"></span>
== Statistiek ==
{| class="wikitable collapsible sortable"
|+Lijst van statistiek Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|AVEDEV
| Geeft het gemiddelde van de absolute afwijkingen van datapunten van hun gemiddelde terug. || ||
|-
!scope="row"|AVERAGE
| Geeft het gemiddelde van zijn argumenten terug || ||
|-
!scope="row"|AVERAGEA
| Geeft het gemiddelde van zijn argumenten terug, inclusief getallen, tekst en logische waarden || ||
|-
!scope="row"|AVERAGEIF
| Geeft het gemiddelde (rekenkundig gemiddelde) terug van alle cellen in een bereik die aan een gegeven criterium voldoen || ||
|-
!scope="row"|AVERAGEIFS
| Geeft het gemiddelde (rekenkundig gemiddelde) terug van alle cellen die aan meerdere criteria voldoen. || ||
|-
!scope="row"|BETA.DIST
| Geeft de bèta-cumulatieve verdelingsfunctie terug || ||
|-
!scope="row"|BETA.INV
| Geeft de inverse van de cumulatieve verdelingsfunctie terug voor een gespecificeerde bètaverdeling || ||
|-
!scope="row"|BINOM.DIST
| Geeft de binomiale verdelingskans van de individuele term terug || ||
|-
!scope="row"|BINOM.DIST.RANGE
| Geeft de waarschijnlijkheid van een proefresultaat terug met behulp van een binaire verdeling || ||
|-
!scope="row"|BINOM.INV
| Geeft de kleinste waarde terug waarvoor de cumulatieve binomiale verdeling kleiner is dan of gelijk aan een criteriumwaarde || ||
|-
!scope="row"|CHISQ.DIST
| Geeft de cumulatieve beta-waarschijnlijkheid dichtheidsfunctie terug || ||
|-
!scope="row"|CHISQ.DIST.RT
| Geeft de eenzijdige kans van de chi-kwadraatverdeling terug || ||
|-
!scope="row"|CHISQ.INV
| Geeft de cumulatieve beta-waarschijnlijkheid dichtheidsfunctie terug || ||
|-
!scope="row"|CHISQ.INV.RT
| Geeft de inverse van de eenzijdige kans van de chi-kwadraatverdeling terug || ||
|-
!scope="row"|CHISQ.TEST
| Geeft de test voor onafhankelijkheid terug || ||
|-
!scope="row"|CONFIDENCE.NORM
| Geeft het betrouwbaarheidsinterval terug voor een populatiegemiddelde || ||
|-
!scope="row"|CONFIDENCE.T
| Geeft het vertrouwensinterval voor een bevolkingsgemiddelde terug, met behulp van de t-verdeling || ||
|-
!scope="row"|CORREL
| Geeft de correlatiecoëfficiënt tussen twee gegevenssets terug || ||
|-
!scope="row"|COUNT
| Telt het aantal getallen in de lijst met argumenten || ||
|-
!scope="row"|COUNTA
| Telt hoeveel waarden er zijn in de lijst met argumenten || ||
|-
!scope="row"|COUNTBLANK
| Telt het aantal lege cellen binnen een bereik || ||
|-
!scope="row"|COUNTIF
| Telt het aantal cellen binnen een bereik dat aan de gegeven criteria voldoet || ||
|-
!scope="row"|COUNTIFS
| Telt het aantal cellen binnen een bereik dat aan meerdere criteria voldoet || ||
|-
!scope="row"|COVARIANCE.P
| Geeft covariantie terug, het gemiddelde van de producten van gepaarde afwijkingen || ||
|-
!scope="row"|COVARIANCE.S
| Geeft de covariantie van de steekproef terug, het gemiddelde van de productafwijkingen voor elk datapuntpaar in twee datasets || ||
|-
!scope="row"|DEVSQ
| Geeft de som van kwadraten van afwijkingen terug. || ||
|-
!scope="row"|EXPON.DIST
| Geeft de exponentiële verdeling terug || ||
|-
!scope="row"|F.DIST
| Geeft de F-kansverdeling terug || ||
|-
!scope="row"|F.DIST.RT
| Geeft de F-kansverdeling terug || ||
|-
!scope="row"|F.INV
| Geeft de inverse van de F-kansverdeling terug || ||
|-
!scope="row"|F.INV.RT
| Geeft de inverse van de F-kansverdeling terug || ||
|-
!scope="row"|FISHER
| Geeft de Fisher-transformatie terug || ||
|-
!scope="row"|FISHERINV
| Geeft de inverse van de Fisher-transformatie terug || ||
|-
!scope="row"|FORECAST
| Geeft een waarde terug volgens een lineaire trend || ||
|-
!scope="row"|FORECAST.ETS
| Geeft een toekomstige waarde terug op basis van bestaande (historische) waarden door gebruik te maken van de AAA-versie van het Exponential Smoothing (ETS) algoritme || ||
|-
!scope="row"|FORECAST.ETS.CONFINT
| Geeft een betrouwbaarheidsinterval terug voor de prognosewaarde op de opgegeven streefdatum || ||
|-
!scope="row"|FORECAST.ETS.SEASONALITY
| Geeft de lengte van het repetitieve patroon terug dat Excel detecteert voor de opgegeven tijdreeks || ||
|-
!scope="row"|FORECAST.ETS.STAT
| Geeft een statistische waarde terug als resultaat van tijdreeksvoorspellingen || ||
|-
!scope="row"|FORECAST.LINEAR
| Geeft een toekomstige waarde terug op basis van bestaande waarden || ||
|-
!scope="row"|FREQUENCY
| Geeft een frequentieverdeling terug als een verticale array || ||
|-
!scope="row"|F.TEST
| Geeft het resultaat van een F-test terug || ||
|-
!scope="row"|GAMMA
| Geeft de waarde van de Gamma-functie terug || ||
|-
!scope="row"|GAMMA.DIST
| Geeft de gamma-verdeling terug || ||
|-
!scope="row"|GAMMA.INV
| Geeft de inverse van de cumulatieve gammaverdeling terug || ||
|-
!scope="row"|GAMMALN
| Geeft het natuurlijke logaritme van de gammafunctie, Γ(x) terug || ||
|-
!scope="row"|GAMMALN.PRECISE
| Geeft het natuurlijke logaritme van de gammafunctie, Γ(x) terug || ||
|-
!scope="row"|GAUSS
| Geeft 0,5 minder dan de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|GEOMEAN
| Geeft het geometrische gemiddelde terug || ||
|-
!scope="row"|GROWTH
| Geeft waarden terug langs een exponentiële trend || ||
|-
!scope="row"|HARMEAN
| Geeft het harmonische gemiddelde terug || ||
|-
!scope="row"|HYPGEOM.DIST
| Geeft de hypergeometrische verdeling terug || ||
|-
!scope="row"|INTERCEPT
| Geeft de interceptie terug van de lineaire regressielijn || ||
|-
!scope="row"|KURT
| Geeft de kurtosis van een dataset terug || ||
|-
!scope="row"|LARGE
| Geeft de k-de grootste waarde in een dataset terug || ||
|-
!scope="row"|LINEST
| Geeft de parameters volgens een lineaire trend terug || ||
|-
!scope="row"|LOGEST
| Geeft de parameters volgens een exponentiële trend terug || ||
|-
!scope="row"|LOGNORM.DIST
| Geeft de cumulatieve lognormale verdeling terug || ||
|-
!scope="row"|LOGNORM.INV
| Geeft de inverse van de lognormale cumulatieve verdeling terug || ||
|-
!scope="row"|MAX
| Geeft de maximale waarde in een lijst van argumenten terug || ||
|-
!scope="row"|MAXA
| Geeft de maximale waarde in een lijst met argumenten (inclusief getallen, tekst en logische waarden) terug || ||
|-
!scope="row"|MAXIFS
| Geeft de maximale waarde tussen cellen die zijn gespecificeerd door een bepaalde reeks voorwaarden of criteria, terug || ||
|-
!scope="row"|MEDIAN
| Geeft de mediaan van de gegeven getallen terug || ||
|-
!scope="row"|MIN
| Geeft de minimale waarde in een lijst van argumenten terug ||
* {{z+|Z19509}}
* {{Z+|Z21341}}
||
|-
!scope="row"|MINIFS
| Geeft de minimale waarde tussen cellen die zijn gespecificeerd door een bepaalde reeks voorwaarden of criteria, terug || ||
|-
!scope="row"|MINA
| Geeft de kleinste waarde in een lijst met argumenten (inclusief getallen, tekst en logische waarden) terug || ||
|-
!scope="row"|MODE.MULT
| Geeft een verticale array terug van de meest voorkomende, of repetitieve waarden in een array of databereik || ||
|-
!scope="row"|MODE.SNGL
| Geeft de meest voorkomende waarde in een dataset terug || ||
|-
!scope="row"|NEGBINOM.DIST
| Geeft de negatieve binomiale verdeling terug || ||
|-
!scope="row"|NORM.DIST
| Geeft de normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORMINV
| Geeft de inverse van de normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORM.S.DIST
| Geeft de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORM.S.INV
| Geeft de inverse van de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|PEARSON
| Geeft de Pearson-productmoment-correlatiecoëfficiënt terug || ||
|-
!scope="row"|PERCENTILE.EXC
| Geeft het k-de percentiel van waarden in een bereik terug, waarbij k in het bereik 0..1 ligt, exclusief || ||
|-
!scope="row"|PERCENTILE.INC
| Geeft het k-de percentiel van waarden in een bereik terug || ||
|-
!scope="row"|PERCENTRANK.EXC
| Geeft de rangorde van een waarde in een dataset terug als een percentage (0..1, exclusief) van de dataset || ||
|-
!scope="row"|PERCENTRANK.INC
| Geeft de procentuele rang van een waarde in een dataset terug || ||
|-
!scope="row"|PERMUT
| Geeft het aantal permutaties terug voor een gegeven aantal objecten || ||
|-
!scope="row"|PERMUTATIONA
| Geeft het aantal permutaties terug voor een gegeven aantal objecten (met herhalingen) dat kan worden geselecteerd uit het totaal aantal objecten || ||
|-
!scope="row"|PHI
| Geeft de waarde van de dichtheidsfunctie (density) terug voor een standaard normale verdeling || ||
|-
!scope="row"|POISSON.DIST
| Geeft de Poisson-verdeling terug || ||
|-
!scope="row"|PROB
| Geeft de kans terug dat waarden in een bereik tussen twee limieten liggen || ||
|-
!scope="row"|QUARTILE.EXC
| Geeft het kwartiel van de dataset terug, gebaseerd op percentielwaarden van 0..1, exclusief || ||
|-
!scope="row"|QUARTILE.INC
| Geeft het kwartiel van een dataset terug || ||
|-
!scope="row"|RANK.AVG
| Geeft de rangorde van een getal in een lijst van getallen terug; dubbele waarden krijgen de gemiddelde rang || ||
|-
!scope="row"|RANK.EQ
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the rank of a number in a list of numbers; duplicate values receive the same rank</span> || ||
|-
!scope="row"|RSQ
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the square of the Pearson product moment correlation coefficient</span> || ||
|-
!scope="row"|SKEW
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the skewness of a distribution</span> || ||
|-
!scope="row"|SKEW.P
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the skewness of a distribution based on a population: a characterization of the degree of asymmetry of a distribution around its mean</span> || ||
|-
!scope="row"|SLOPE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the slope of the linear regression line</span> || ||
|-
!scope="row"|SMALL
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the k-th smallest value in a data set</span> || ||
|-
!scope="row"|STANDARDIZE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns a normalized value</span> || ||
|-
!scope="row"|STDEV.P
| <span lang="en" dir="ltr" class="mw-content-ltr">Calculates standard deviation based on the entire population</span> || ||
|-
!scope="row"|STDEV.S
| <span lang="en" dir="ltr" class="mw-content-ltr">Estimates standard deviation based on a sample</span> || ||
|-
!scope="row"|STDEVA
| <span lang="en" dir="ltr" class="mw-content-ltr">Estimates standard deviation based on a sample, including numbers, text, and logical values</span> || ||
|-
!scope="row"|STDEVPA
| <span lang="en" dir="ltr" class="mw-content-ltr">Calculates standard deviation based on the entire population, including numbers, text, and logical values</span> || ||
|-
!scope="row"|STEYX
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the standard error of the predicted y-value for each x in the regression</span> || ||
|-
!scope="row"|T.DIST
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Percentage Points (probability) for the Student t-distribution</span> || ||
|-
!scope="row"|T.DIST.2T
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Percentage Points (probability) for the Student t-distribution</span> || ||
|-
!scope="row"|T.DIST.RT
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Student's t-distribution</span> || ||
|-
!scope="row"|T.INV
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the t-value of the Student's t-distribution as a function of the probability and the degrees of freedom</span> || ||
|-
!scope="row"|T.INV.2T
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the inverse of the Student's t-distribution</span> || ||
|-
!scope="row"|TREND
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns values along a linear trend</span> || ||
|-
!scope="row"|TRIMMEAN
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the mean of the interior of a data set</span> || ||
|-
!scope="row"|T.TEST
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the probability associated with a Student's t-test</span> || ||
|-
!scope="row"|VAR.P
| <span lang="en" dir="ltr" class="mw-content-ltr">Calculates variance based on the entire population</span> || ||
|-
!scope="row"|VAR.S
| <span lang="en" dir="ltr" class="mw-content-ltr">Estimates variance based on a sample</span> || ||
|-
!scope="row"|VARA
| <span lang="en" dir="ltr" class="mw-content-ltr">Estimates variance based on a sample, including numbers, text, and logical values</span> || ||
|-
!scope="row"|VARPA
| <span lang="en" dir="ltr" class="mw-content-ltr">Calculates variance based on the entire population, including numbers, text, and logical values</span> || ||
|-
!scope="row"|WEIBULL.DIST
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Weibull distribution</span> || ||
|-
!scope="row"|Z.TEST
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the one-tailed probability-value of a z-test</span> || ||
|}
<span id="Text"></span>
== Tekst ==
{| class="wikitable collapsible sortable"
|+Lijst van tekst Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|ARRAYTOTEXT
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns an array of text values from any specified range</span> || ||
|-
!scope="row"|ASC
| <span lang="en" dir="ltr" class="mw-content-ltr">Changes full-width (double-byte) English letters or katakana within a character string to half-width (single-byte) characters</span> || ||
|-
!scope="row"|BAHTTEXT
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts a number to text, using the ß (baht) currency format</span> || ||
|-
!scope="row"|CHAR
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the character specified by the code number</span> || ||
|-
!scope="row"|CLEAN
| <span lang="en" dir="ltr" class="mw-content-ltr">Removes all nonprintable characters from text</span> || ||
|-
!scope="row"|CODE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns a numeric code for the first character in a text string</span> || ||
|-
!scope="row"|CONCAT
| <span lang="en" dir="ltr" class="mw-content-ltr">Combines the text from multiple ranges and/or strings, but it doesn't provide the delimiter or IgnoreEmpty arguments.</span> || {{Z+|Z10000}} || <span lang="en" dir="ltr" class="mw-content-ltr">WF only takes two strings</span>
|-
!scope="row"|CONCATENATE
| <span lang="en" dir="ltr" class="mw-content-ltr">Joins several text items into one text item</span> || {{Z+|Z10000}} ||
|-
!scope="row"|DBCS
| <span lang="en" dir="ltr" class="mw-content-ltr">Changes half-width (single-byte) English letters or katakana within a character string to full-width (double-byte) characters</span> || ||
|-
!scope="row"|DOLLAR
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts a number to text, using the $ (dollar) currency format</span> || ||
|-
!scope="row"|EXACT
| <span lang="en" dir="ltr" class="mw-content-ltr">Checks to see if two text values are identical</span> || {{Z+|Z866}} ||
|-
!scope="row"|FIND, FINDBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Finds one text value within another (case-sensitive)</span> || ||
|-
!scope="row"|FIXED
| <span lang="en" dir="ltr" class="mw-content-ltr">Formats a number as text with a fixed number of decimals</span> || ||
|-
!scope="row"|JIS
| <span lang="en" dir="ltr" class="mw-content-ltr">Changes half-width (single-byte) characters within a string to full-width (double-byte) characters</span> || ||
|-
!scope="row"|LEFT, LEFTBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the leftmost characters from a text value</span> || ||
|-
!scope="row"|LEN, LENBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the number of characters in a text string</span> || {{Z+|Z11040}} ||
|-
!scope="row"|LOWER
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts text to lowercase</span> || {{Z+|Z10047}} ||
|-
!scope="row"|MID, MIDBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns a specific number of characters from a text string starting at the position you specify</span> || ||
|-
!scope="row"|NUMBERVALUE
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts text to number in a locale-independent manner</span> || ||
|-
!scope="row"|PHONETIC
| <span lang="en" dir="ltr" class="mw-content-ltr">Extracts the phonetic (furigana) characters from a text string</span> || ||
|-
!scope="row"|PROPER
| <span lang="en" dir="ltr" class="mw-content-ltr">Capitalizes the first letter in each word of a text value</span> || {{Z+|Z10251}} ||
|-
!scope="row"|REPLACE, REPLACEBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Replaces characters within text</span> || ||
|-
!scope="row"|REPT
| <span lang="en" dir="ltr" class="mw-content-ltr">Repeats text a given number of times</span> || {{Z+|Z10911}} ||
|-
!scope="row"|RIGHT, RIGHTBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the rightmost characters from a text value</span> || ||
|-
!scope="row"|SEARCH, SEARCHBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Finds one text value within another (not case-sensitive)</span> || ||
|-
!scope="row"|SUBSTITUTE
| <span lang="en" dir="ltr" class="mw-content-ltr">Substitutes new text for old text in a text string</span> || {{Z+|Z10075}} ||
|-
!scope="row"|T
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts its arguments to text</span> || ||
|-
!scope="row"|TEXT
| <span lang="en" dir="ltr" class="mw-content-ltr">Formats a number and converts it to text</span> || {{Z+|Z13713}} ||
|-
!scope="row"|TEXTAFTER
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns text that occurs after given character or string</span> || {{Z+|Z11412}} {{Z+|Z11416}} || <span lang="en" dir="ltr" class="mw-content-ltr">Excel has parameters to choose last (or Nth)</span>
|-
!scope="row"|TEXTBEFORE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns text that occurs before a given character or string</span> || {{Z+|Z11418}} {{Z+|Z11422}} || <span lang="en" dir="ltr" class="mw-content-ltr">Excel has parameters to choose last (or Nth)</span>
|-
!scope="row"|TEXTJOIN
| <span lang="en" dir="ltr" class="mw-content-ltr">Combines the text from multiple ranges and/or strings</span> || ||
|-
!scope="row"|TEXTSPLIT
| <span lang="en" dir="ltr" class="mw-content-ltr">Splits text strings by using column and row delimiters</span> || ||
|-
!scope="row"|TRIM
| <span lang="en" dir="ltr" class="mw-content-ltr">Removes spaces from text</span> || {{Z+|Z10079}} ||
|-
!scope="row"|UNICHAR
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Unicode character that is references by the given numeric value</span> || {{Z+|Z11534}} ||
|-
!scope="row"|UNICODE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the number (code point) that corresponds to the first character of the text</span> || {{Z+|Z11515}} ||
|-
!scope="row"|UPPER
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts text to uppercase</span> || {{Z+|Z10018}} ||
|-
!scope="row"|VALUE
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts a text argument to a number</span> || ||
|-
!scope="row"|VALUETOTEXT
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns text from any specified value</span> || ||
|-
!scope="row"|ENCODEURL
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns a URL-encoded string</span> || {{Z+|Z10761}} ||
|-
!scope="row"|FILTERXML
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns specific data from the XML content by using the specified XPath</span> || ||
|-
!scope="row"|WEBSERVICE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns data from a web service.</span>
|
|
|}
[[Category:Lists of functions]]
93rl2tagt0qhgnwu7jxrq9xjl581qgg
307282
307280
2026-09-01T19:49:39Z
HanV
6833
Created page with "Geeft de rangorde van een getal in een lijst van getallen terug; dubbele waarden krijgen dezelfde rangorde"
307282
wikitext
text/x-wiki
<languages/>
{{w|Microsoft Excel}} functies omvatten de volgende categorieën.
Deze pagina vermeldt Excel-functies als ze een bijbehorende [[Special:MyLanguage/Wikifunctions:Function model|WikiFuncties functie]] hebben.
<span id="Add-in_and_automation"></span>
== Interne en Automatisering ==
{| class="wikitable collapsible sortable"
|+Lijst van interne en automatiseringsfuncties van Excel
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|CALL
| Aanroep van een procedure in een dynamische link-bibliotheek of codebron || ||
|-
!scope="row"|EUROCONVERT
| Zet een getal om euro's, een getal van euro's omzetten naar een munt van een eurolid, of een getal van de ene munt van een eurolid naar een andere door de euro als tussenpersoon te gebruiken (triangulatie). || ||
|-
!scope="row"|REGISTER.ID
| Geeft de register-ID terug van de gespecificeerde dynamische link-bibliotheek (DLL) of codebron die eerder is geregistreerd || ||
|}
<span id="Compatibility"></span>
== Compatibiliteit ==
{| class="wikitable collapsible sortable"
|+Lijst van compatibiliteit Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|BETADIST
| Geeft de bèta-cumulatieve verdelingsfunctie terug || ||
|-
!scope="row"|BETAINV
| Geeft de inverse van de cumulatieve verdelingsfunctie terug voor een gespecificeerde bètaverdeling || ||
|-
!scope="row"|BINOMDIST
| Geeft de binomiale verdelingskans van de individuele term terug || ||
|-
!scope="row"|CEILING
| Rond een getal af naar het dichtstbijzijnde geheel getal of naar het dichtstbijzijnde veelvoud van significantie || ||
|-
!scope="row"|CHIDIST
| Geeft de eenzijdige kans van de chi-kwadraatverdeling terug || ||
|-
!scope="row"|CHIINV
| Geeft de inverse van de eenzijdige kans van de chi-kwadraatverdeling terug || ||
|-
!scope="row"|CHITEST
| Geeft de test voor onafhankelijkheid terug || ||
|-
!scope="row"|CONFIDENCE
| Geeft het betrouwbaarheidsinterval terug voor een populatiegemiddelde || ||
|-
!scope="row"|COVAR
| Geeft covariantie terug, het gemiddelde van de producten van gepaarde afwijkingen || ||
|-
!scope="row"|CRITBINOM
| Geeft de kleinste waarde terug waarvoor de cumulatieve binomiale verdeling kleiner is dan of gelijk aan een criteriumwaarde || ||
|-
!scope="row"|EXPONDIST
| Geeft de exponentiële verdeling terug || ||
|-
!scope="row"|FDIST
| Geeft de F kansverdeling terug || ||
|-
!scope="row"|FINV
| Geeft de inverse van de F-kansverdeling terug || ||
|-
!scope="row"|FLOOR
| Rondt een getal naar beneden af, richting nul || {{Z+|Z20032}}
{{Z+|Z20841}}
|
|-
!scope="row"|FTEST
| Geeft het resultaat van een F-test terug || ||
|-
!scope="row"|GAMMADIST
| Geeft de gamma-verdeling terug || ||
|-
!scope="row"|GAMMAINV
| Geeft de inverse van de cumulatieve gammaverdeling terug || ||
|-
!scope="row"|HYPGEOMDIST
| Geeft de hypergeometrische verdeling terug || ||
|-
!scope="row"|LOGINV
| Geeft de inverse van de lognormale cumulatieve verdeling terug || ||
|-
!scope="row"|LOGNORMDIST
| Geeft de cumulatieve lognormale verdeling terug || ||
|-
!scope="row"|MODE
| Geeft de meest voorkomende waarde in een dataset terug || {{Z+|Z21851}} ||
|-
!scope="row"|NEGBINOMDIST
| Geeft de negatieve binomiale verdeling terug || ||
|-
!scope="row"|NORMDIST
| Geeft de normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORM.INV
| Geeft de inverse van de normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORMSDIST
| Geeft de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORMSINV
| Geeft de inverse van de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|PERCENTILE
| Geeft het k-de percentiel van waarden in een bereik terug || ||
|-
!scope="row"|PERCENTRANK
| Geeft de procentuele rang van een waarde in een dataset terug || ||
|-
!scope="row"|POISSON
| Geeft de Poisson-verdeling terug || ||
|-
!scope="row"|QUARTILE
| Geeft het kwartiel van een dataset terug || ||
|-
!scope="row"|RANK
| Geeft de rangorde van een getal in een lijst van getallen terug || ||
|-
!scope="row"|STDEV
| Schatting van standaarddeviatie op basis van een steekproef || ||
|-
!scope="row"|STDEVP
| Berekent de standaarddeviatie op basis van de gehele populatie || ||
|-
!scope="row"|TDIST
| Geeft de Student's t-verdeling terug || ||
|-
!scope="row"|TINV
| Geeft de inverse van de Student's t-verdeling terug || ||
|-
!scope="row"|TTEST
| Geeft de kans terug die hoort bij de Student's t-test || ||
|-
!scope="row"|VAR
| Schatting van de variantie op basis van een steekproef || ||
|-
!scope="row"|VARP
| Berekent de variantie op basis van de gehele populatie || ||
|-
!scope="row"|WEIBULL
| Berekent de variantie op basis van de gehele populatie, inclusief getallen, tekst en logische waarden || ||
|-
!scope="row"|ZTEST
| Geeft de eenzijdige kanswaarde van een z-test terug || ||
|}
== Cube ==
{| class="wikitable collapsible sortable"
|+Lijst van Cube Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|CUBEKPIMEMBER
| Geeft een naam, eigenschap en maatstaf (Key Performance Indicator) (KPI) terug en toont de naam en eigenschap in de cel. Een KPI is een kwantificeerbare maatstaf, zoals de maandelijkse brutowinst of het kwartaalomzet van medewerkers, die wordt gebruikt om de prestaties van een organisatie te monitoren. || ||
|-
!scope="row"|CUBEMEMBER
| Geeft een lid of tupel terug in een cube-hiërarchie. Gebruik om te valideren dat het lid of de tupel in de cube bestaat. || ||
|-
!scope="row"|CUBEMEMBERPROPERTY
| Geeft de waarde van een lideigenschap in de cube terug. Gebruik om te valideren dat er een lidnaam in de cube bestaat en om de gespecificeerde eigenschap voor dit lid terug te geven. || ||
|-
!scope="row"|CUBERANKEDMEMBER
| Geeft het n-de, of gerangschikte, lid in een set terug. Gebruik het om één of meer elementen in een set op te halen, zoals de beste verkoper of de top 10 studenten. || ||
|-
!scope="row"|CUBESET
| Definieert een berekende set van leden of tupels door een set-expressie naar de cube op de server te sturen, die de set aanmaakt en die set vervolgens teruggeeft aan Microsoft Office Excel. || ||
|-
!scope="row"|CUBESETCOUNT
| Geeft het aantal items in een set terug. || ||
|-
!scope="row"|CUBEVALUE
| Geeft een geaggregeerde waarde terug van een cube. || ||
|}
== Database ==
{| class="wikitable collapsible sortable"
|+Lijst van Excel-databasefuncties
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|DAVERAGE
| Geeft het gemiddelde van geselecteerde database-items terug || ||
|-
!scope="row"|DCOUNT
| Telt de cellen die getallen bevatten in een database || ||
|-
!scope="row"|DCOUNTA
| Telt niet-lege cellen in een database || ||
|-
!scope="row"|DGET
| Haalt uit een database een enkel record dat voldoet aan de gespecificeerde criteria || ||
|-
!scope="row"|DMAX
| Geeft de maximale waarde terug uit geselecteerde database-gegevens || ||
|-
!scope="row"|DMIN
| Geeft de minimale waarde terug uit geselecteerde database-gegevens || ||
|-
!scope="row"|DPRODUCT
| Vermenigvuldigt de waarden in een bepaald veld van records die overeenkomen met de criteria in een database || ||
|-
!scope="row"|DSTDEV
| De standaardafwijking wordt geschat op basis van een steekproef van geselecteerde database-gegevens || ||
|-
!scope="row"|DSTDEVP
| Berekent de standaardafwijking op basis van de gehele populatie van geselecteerde database-gegevens || ||
|-
!scope="row"|DSUM
| Voegt de nummers toe in de veldkolom van database-gegevens die overeenkomen met de criteria || ||
|-
!scope="row"|DVAR
| Schat de variantie op basis van een steekproef uit geselecteerde database-gegevens || ||
|-
!scope="row"|DVARP
| Berekent variantie op basis van de gehele populatie van geselecteerde database-gegevens || ||
|}
<span id="Date_and_time"></span>
== Datum en tijd ==
{| class="wikitable collapsible sortable"
|+Lijst van datum en tijd Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|DATE
| Geeft het serienummer van een bepaalde datum terug || ||
|-
!scope="row"|DATEDIF
| Berekent het aantal dagen, maanden of jaren tussen twee data. Deze functie is nuttig in formules waarbij u een leeftijd moet berekenen. || ||
|-
!scope="row"|DATEVALUE
| Zet een datum in de vorm van tekst om in een serienummer || ||
|-
!scope="row"|DAY
| Zet een serienummer om in een dag van de maand || ||
|-
!scope="row"|DAYS
| Geeft het aantal dagen tussen twee datums terug || ||
|-
!scope="row"|DAYS360
| Berekent het aantal dagen tussen twee datums op basis van een jaar van 360-dagen || ||
|-
!scope="row"|EDATE
| Geeft het serienummer van de datum terug, dat het aangegeven aantal maanden vóór of na de startdatum is || ||
|-
!scope="row"|EOMONTH
| Geeft het serienummer van de laatste dag van de maand vóór of na een bepaald aantal maanden || ||
|-
!scope="row"|HOUR
| Zet een serienummer om in een uur || ||
|-
!scope="row"|ISOWEEKNUM
| Geeft het nummer van het ISO-weeknummer van het jaar terug voor een bepaalde datum || ||
|-
!scope="row"|MINUTE
| Zet een serienummer om in een minuut || ||
|-
!scope="row"|MONTH
| Zet een serienummer om in een maand || ||
|-
!scope="row"|NETWORKDAYS
| Geeft het aantal hele werkdagen tussen twee datums terug || ||
|-
!scope="row"|NETWORKDAYS.INTL
| Geeft het aantal hele werkdagen tussen twee datums terug met behulp van parameters om aan te geven welke en hoeveel dagen weekenddagen zijn || ||
|-
!scope="row"|NOW
| Geeft het serienummer van de huidige datum en tijd terug || ||
|-
!scope="row"|SECOND
| Zet een serienummer om in een seconde || ||
|-
!scope="row"|TIME
| Geeft het serienummer van een bepaald tijdstip terug || ||
|-
!scope="row"|TIMEVALUE
| Zet een tijd in de vorm van tekst om in een serienummer || ||
|-
!scope="row"|TODAY
| Geeft het serienummer van de datum van vandaag terug. || ||
|-
!scope="row"|WEEKDAY
| Zet een serienummer om in een dag van de week || {{Z+|Z17540}} || Heeft Dag, Maand en Jaar nodig in plaats van een serienummer
|-
!scope="row"|WEEKNUM
| Zet een serienummer om in een nummer dat numeriek aangeeft waar de week ligt met een jaar || ||
|-
!scope="row"|WORKDAY
| Geeft het serienummer van de datum voor of na een bepaald aantal werkdagen terug. || ||
|-
!scope="row"|WORKDAY.INTL
| Geeft het serienummer van de datum voor of na een bepaald aantal werkdagen terug met behulp van parameters die aangeven welke en hoeveel dagen weekenddagen zijn || ||
|-
!scope="row"|YEAR
| Zet een serienummer om in een jaar || ||
|-
!scope="row"|YEARFRAC
| Geeft het jaardeel terug dat staat voor het aantal hele dagen tussen 'start_date' en 'end_date' || ||
|}
<span id="Engineering"></span>
== Technisch ==
{| class="wikitable collapsible sortable"
|+Lijst van technische Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|BESSELI
| Geeft de aangepaste Besselfunctie In(x) terug || ||
|-
!scope="row"|BESSELJ
| Geeft de Besselfunctie Jn(x) terug || ||
|-
!scope="row"|BESSELK
| Geeft de aangepaste Besselfunctie Kn(x) terug || ||
|-
!scope="row"|BESSELY
| Geeft de Besselfunctie Yn(x) terug || ||
|-
!scope="row"|BIN2DEC
| Zet een binair getal om in een decimaal getal || ||
|-
!scope="row"|BIN2HEX
| Zet een binair getal om in een hexadecimaal getal || ||
|-
!scope="row"|BIN2OCT
| Zet een binair getal om in een octaal nummer || ||
|-
!scope="row"|BITAND
| Geeft een 'Bitgewijs And' van twee getallen terug || ||
|-
!scope="row"|BITLSHIFT
| Geeft een getal terug dat met shift_amount bits naar links is verschoven || ||
|-
!scope="row"|BITOR
| Geeft een 'Bitgewijs OR' van 2 getallen terug || ||
|-
!scope="row"|BITRSHIFT
| Geeft een getal terug dat met shift_amount bits naar rechts is verschoven || ||
|-
!scope="row"|BITXOR
| Geeft een bitsgewijs 'Exclusieve OR' van twee getallen terug || ||
|-
!scope="row"|COMPLEX
| Zet reële en imaginaire coëfficiënten om in een complex getal || ||
|-
!scope="row"|CONVERT
| Zet een getal om van het ene meetstelsel naar het andere. || ||
|-
!scope="row"|DEC2BIN
| Zet een decimaal getal om in een binair getal || ||
|-
!scope="row"|DEC2HEX
| Zet een decimaal getal om in een hexadecimaal getal || ||
|-
!scope="row"|DEC2OCT
| Zet een decimaal getal om in een octaal getal || ||
|-
!scope="row"|DELTA
| Test of twee waarden gelijk zijn || ||
|-
!scope="row"|ERF
| Geeft de foutfunctie terug || ||
|-
!scope="row"|ERF.PRECISE
| Geeft de foutfunctie terug || ||
|-
!scope="row"|ERFC
| Geeft de complementaire foutfunctie terug || ||
|-
!scope="row"|ERFC.PRECISE
| Geeft de complementaire functie ERF terug geïntegreerd tussen x en oneindig || ||
|-
!scope="row"|GESTEP
| Test of een getal groter is dan een drempelwaarde || ||
|-
!scope="row"|HEX2BIN
| Zet een hexadecimaal getal om in een binair getal || ||
|-
!scope="row"|HEX2DEC
| Zet een hexadecimaal getal om in een decimaal getal || ||
|-
!scope="row"|HEX2OCT
| Zet een hexadecimaal getal om in een octaal getal || ||
|-
!scope="row"|IMABS
| Geeft de absolute waarde (modulus) van een complex getal terug || ||
|-
!scope="row"|IMAGINARY
| Geeft de imaginaire coëfficiënt van een complex getal terug || ||
|-
!scope="row"|IMARGUMENT
| Geeft het argument theta terug, een hoek uitgedrukt in radialen || ||
|-
!scope="row"|IMCONJUGATE
| Geeft het complex geconjugeerde van een complex getal terug || ||
|-
!scope="row"|IMCOS
| Geeft de cosinus van een complex getal terug || ||
|-
!scope="row"|IMCOSH
| Geeft de hyperbolische cosinus van een complex getal terug || ||
|-
!scope="row"|IMCOT
| Geeft de cotangens van een complex getal terug || ||
|-
!scope="row"|IMCSC
| Geeft de cosecans van een complex getal terug || ||
|-
!scope="row"|IMCSCH
| Geeft de hyperbolische cosecans van een complex getal terug || ||
|-
!scope="row"|IMDIV
| Geeft het quotiënt van twee complexe getallen terug || ||
|-
!scope="row"|IMEXP
| Geeft de exponentiële van een complex getal terug || ||
|-
!scope="row"|IMLN
| Geeft het natuurlijke logaritme van een complex getal terug || ||
|-
!scope="row"|IMLOG10
| Geeft de logaritme van basis-10 van een complex getal terug || ||
|-
!scope="row"|IMLOG2
| Geeft de logaritme van basis-2 van een complex getal terug || ||
|-
!scope="row"|IMPOWER
| Geeft een complex getal terug dat tot een geheel getal macht is verhoogd || ||
|-
!scope="row"|IMPRODUCT
| Geeft het product van complexe getallen terug || ||
|-
!scope="row"|IMREAL
| Geeft de reële coëfficiënt van een complex getal terug || ||
|-
!scope="row"|IMSEC
| Geeft de secans van een complex getal terug || ||
|-
!scope="row"|IMSECH
| Geeft de hyperbolische secans van een complex getal terug || ||
|-
!scope="row"|IMSIN
| Geeft de sinus van een complex getal terug || ||
|-
!scope="row"|IMSINH
| Geeft de hyperbolische sinus van een complex getal terug || ||
|-
!scope="row"|IMSQRT
| Geeft de wortel van een complex getal terug || ||
|-
!scope="row"|IMSUB
| Geeft het verschil terug tussen twee complexe getallen || ||
|-
!scope="row"|IMSUM
| Geeft de som van complexe getallen terug || ||
|-
!scope="row"|IMTAN
| Geeft de tangens van een complex getal terug || ||
|-
!scope="row"|OCT2BIN
| Zet een octaal getal om in een binair getal || ||
|-
!scope="row"|OCT2DEC
| Zet een octaal getal om in een decimaal getal || ||
|-
!scope="row"|OCT2HEX
| Zet een octaal getal om in een hexadecimaal getal || ||
|}
<span id="Financial"></span>
== Financieel ==
{| class="wikitable collapsible sortable"
|+Lijst van financiële Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|ACCRINT
| Retourneert de opgebouwde rente voor een zekerheid dat periodieke rente betaalt || ||
|-
!scope="row"|ACCRINTM
| Geeft de opgebouwde rente terug voor een zekerheid dat rente betaalt op een vervaldatum || ||
|-
!scope="row"|AMORDEGRC
| Geeft de afschrijving voor elke boekhoudperiode terug met behulp van een afschrijvingscoëfficiënt || ||
|-
!scope="row"|AMORLINC
| Geeft de afschrijving voor elke boekhoudperiode terug || ||
|-
!scope="row"|COUPDAYBS
| Geeft het aantal dagen terug vanaf het begin van de couponperiode tot de afwikkelingsdatum || ||
|-
!scope="row"|COUPDAYS
| Geeft het aantal dagen in de couponperiode terug waarin de afwikkelingsdatum is opgenomen || ||
|-
!scope="row"|COUPDAYSNC
| Geeft het aantal dagen terug van de afwikkelingsdatum tot de volgende coupondatum || ||
|-
!scope="row"|COUPNCD
| Geeft de volgende coupondatum na de afwikkelingsdatum terug || ||
|-
!scope="row"|COUPNUM
| Geeft het aantal coupons terug dat tussen de afwikkelingsdatum en de vervaldatum moet worden betaald || ||
|-
!scope="row"|COUPPCD
| Geeft de vorige coupondatum vóór de afwikkelingsdatum terug || ||
|-
!scope="row"|CUMIPMT
| Geeft de cumulatieve rente terug die tussen twee perioden is betaald || ||
|-
!scope="row"|CUMPRINC
| Geeft de cumulatieve hoofdsom terug die is betaald op een lening tussen twee periodes || ||
|-
!scope="row"|DB
| Geeft de afschrijving van een activa voor een bepaalde periode terug door gebruik te maken van de fixed-declining balansmethode || ||
|-
!scope="row"|DDB
| Geeft de afschrijving van een activa voor een bepaalde periode terug door gebruik te maken van de double-declining balansmethode of een andere methode die u specificeert || ||
|-
!scope="row"|DISC
| Geeft het discontopercentage voor een zekerheid terug || ||
|-
!scope="row"|DOLLARDE
| Zet een dollarprijs, uitgedrukt als een fractie, om in een dollarprijs, uitgedrukt als een decimaal getal || ||
|-
!scope="row"|DOLLARFR
| Zet een dollarprijs, uitgedrukt als een decimaal getal, om in een dollarprijs, uitgedrukt als een fractie || ||
|-
!scope="row"|DURATION
| Geeft de jaarlijkse looptijd van een zekerheid terug met periodieke rentebetalingen || ||
|-
!scope="row"|EFFECT
| Geeft de effectieve jaarlijkse rente terug || ||
|-
!scope="row"|FV
| Geeft de toekomstige waarde van een belegging terug || ||
|-
!scope="row"|FVSCHEDULE
| Geeft de toekomstige waarde van een initiële hoofdsom terug na het toepassen van een reeks samengestelde rentetarieven || ||
|-
!scope="row"|INTRATE
| Geeft de rente terug voor een volledig geïnvesteerde zekerheid || ||
|-
!scope="row"|IPMT
| Geeft de rentebetaling voor een investering voor een bepaalde periode terug || ||
|-
!scope="row"|IRR
| Geeft het interne rendement terug voor een reeks kasstromen || ||
|-
!scope="row"|ISPMT
| Berekent de rente die wordt betaald gedurende een specifieke investeringsperiode || ||
|-
!scope="row"|MDURATION
| Geeft de Macauley-aangepaste duur terug voor een zekerheid met een veronderstelde nominale waarde van $100 || ||
|-
!scope="row"|MIRR
| Geeft het interne rendement terug, waarbij positieve en negatieve kasstromen worden gefinancierd tegen verschillende rentes || ||
|-
!scope="row"|NOMINAL
| Geeft het jaarlijkse nominale rentepercentage terug || ||
|-
!scope="row"|NPER
| Geeft het aantal periodes voor een investering terug || ||
|-
!scope="row"|NPV
| Geeft de netto contante waarde van een investering terug op basis van een reeks periodieke kasstromen en een discontovoet || ||
|-
!scope="row"|ODDFPRICE
| Geeft de prijs per $100 nominale waarde van een zekerheid terug met een oneven eerste periode || ||
|-
!scope="row"|ODDFYIELD
| Geeft het rendement van een zekerheid terug met een oneven eerste periode || ||
|-
!scope="row"|ODDLPRICE
| Geeft de prijs per $100 nominale waarde van een zekerheid terug met een oneven laatste periode || ||
|-
!scope="row"|ODDLYIELD
| Geeft het rendement van een zekerheid terug met een oneven laatste periode || ||
|-
!scope="row"|PDURATION
| Geeft het aantal periodes terug dat een investering nodig heeft om een bepaalde waarde te bereiken || ||
|-
!scope="row"|PMT
| Retourneert de periodieke betaling voor een annuïteit || ||
|-
!scope="row"|PPMT
| Geeft de betaling van de hoofdsom voor een investering voor een bepaalde periode terug || ||
|-
!scope="row"|PRICE
| Geeft de prijs terug per nominale waarde van $100 van een zekerheid dat periodieke rente betaalt || ||
|-
!scope="row"|PRICEDISC
| Geeft de prijs per nominale waarde van $100 van een afgeprijsde zekerheid terug || ||
|-
!scope="row"|PRICEMAT
| Geeft de prijs per nominale waarde van $100 terug van een zekerheid dat rente betaalt bij vervaldatum || ||
|-
!scope="row"|PV
| Geeft de huidige waarde van een investering terug || ||
|-
!scope="row"|RATE
| Geeft het rentepercentage per periode van een annuïteit terug || ||
|-
!scope="row"|RECEIVED
| Retourneert het bedrag dat bij de vervaldatum is ontvangen voor een volledig geïnvesteerd zekerheid || ||
|-
!scope="row"|RRI
| Geeft een gelijkwaardige rente voor de groei van een investering || ||
|-
!scope="row"|SLN
| Geeft de rechtlijnige afschrijving van een activa voor één periode terug || ||
|-
!scope="row"|STOCKHISTORY
| Haalt historische gegevens op over een financieel instrument || ||
|-
!scope="row"|SYD
| Geeft de "sum-of-years" afschrijving van een activa voor een bepaalde periode terug || ||
|-
!scope="row"|TBILLEQ
| Geeft het obligatie-equivalente rendement voor een schatkistwissel terug || ||
|-
!scope="row"|TBILLPRICE
| Geeft de prijs per nominale waarde van $100 voor een schatkistwissel terug || ||
|-
!scope="row"|TBILLYIELD
| Geeft het rendement terug voor een schatkistwissel || ||
|-
!scope="row"|VDB
| Geeft de afschrijving van een activa terug voor een gespecificeerde of gedeeltelijke periode door gebruik te maken van een afnemende balansmethode || ||
|-
!scope="row"|XIRR
| Geeft het interne rendement terug voor een schema van kasstromen dat niet noodzakelijkerwijs periodiek is || ||
|-
!scope="row"|XNPV
| Geeft de netto contante waarde terug voor een schema van kasstromen dat niet noodzakelijkerwijs periodiek is || ||
|-
!scope="row"|YIELD
| Geeft het rendement terug op een zekerheid dat periodieke rente betaalt || ||
|-
!scope="row"|YIELDDISC
| Geeft de jaarlijkse opbrengst terug voor een gedisconteerde zekerheid; bijvoorbeeld een schatkistwissel || ||
|-
!scope="row"|YIELDMAT
| Geeft het jaarlijkse rendement terug van een zekerheid dat rente betaalt op een vervaldatum || ||
|}
<span id="Information"></span>
== Informatie ==
{| class="wikitable collapsible sortable"
|+Lijst van informatie Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|CELL
| Geeft informatie terug over de opmaak, locatie of inhoud van een cel || ||
|-
!scope="row"|ERROR.TYPE
| Geeft een getal terug dat overeenkomt met een fouttype || ||
|-
!scope="row"|INFO
| Geeft informatie terug over de huidige operationele omgeving || ||
|-
!scope="row"|ISBLANK
| Geeft TRUE terug als de waarde leeg is || {{Z+|Z10008}} ||
|-
!scope="row"|ISERR
| Geeft TRUE terug als de waarde een willekeurige foutwaarde is anders dan #N/A || ||
|-
!scope="row"|ISERROR
| Geeft TRUE terug als de waarde een willekeurige foutwaarde is || {{Z+|Z20107}} ||
|-
!scope="row"|ISEVEN
| Geeft TRUE terug als het getal even is || {{Z+|Z12480}} ||
|-
!scope="row"|ISFORMULA
| Geeft TRUE terug als er een verwijzing is naar een cel die een formule bevat || ||
|-
!scope="row"|ISLOGICAL
| Geeft TRUE terug als de waarde een logische waarde is || ||
|-
!scope="row"|ISNA
| Geeft TRUE terug als de waarde de #N/A-foutwaarde is || ||
|-
!scope="row"|ISNONTEXT
| Geeft TRUE terug als de waarde geen tekst is || ||
|-
!scope="row"|ISNUMBER
| Geeft TRUE als de waarde een getal is || {{Z+|Z10715}} ||
|-
!scope="row"|ISODD
| Geeft TRUE terug als het getal oneven is || {{Z+|Z12429}} ||
|-
!scope="row"|ISOMITTED
| Controleert of de waarde in een LAMBDA ontbreekt en geeft TRUE of FALSE terug || ||
|-
!scope="row"|ISREF
| Geeft TRUE terug als de waarde een referentie is || ||
|-
!scope="row"|ISTEXT
| Geeft TRUE terug als de waarde een tekst is || ||
|-
!scope="row"|N
| Geeft een waarde terug die is omgezet in een getal || ||
|-
!scope="row"|NA
| Geeft de foutwaarde #N/A terug || ||
|-
!scope="row"|SHEET
| Geeft het bladnummer van het gerefereerde blad terug || ||
|-
!scope="row"|SHEETS
| Geeft het aantal bladen in een referentie terug || ||
|-
!scope="row"|TYPE
| Geeft een getal terug dat het datatype van een waarde aangeeft || ||
|}
<span id="Logical"></span>
== Logica ==
{| class="wikitable collapsible sortable"
|+Lijst van logische Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|AND
| Geeft TRUE terug als al zijn argumenten TRUE zijn || {{Z+|Z10174}} ||
|-
!scope="row"|BYCOL
| Past een LAMBDA toe op elke kolom en geeft een array van de resultaten terug || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|BYROW
| Past een LAMBDA toe op elke rij en geeft een array van de resultaten terug || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|FALSE
| Geeft de logische waarde FALSE terug || {{Z+|Z10206}} ||
|-
!scope="row"|IF
| Specificeert een logische test om uit te voeren || {{Z+|Z802}}, {{Z+|Z11542}} ||
|-
!scope="row"|IFERROR
| Geeft een waarde terug die u specificeert als een formule evalueert naar een fout; geeft anders het resultaat van de formule terug || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|IFNA
| Geeft de door u opgegeven waarde terug als de expressie wordt opgelost naar #N/A, anders geeft het resultaat van de expressie terug || ||
|-
!scope="row"|IFS
| Controleert of aan één of meer voorwaarden is voldaan en geeft een waarde terug die overeenkomt met de eerste TRUE-voorwaarde. || {{Z+|Z19601}} ||
|-
!scope="row"|LAMBDA
| Maak aangepaste, herbruikbare functies en roept ze met een vriendelijke naam aan || {{Z+|Z8}} ||
|-
!scope="row"|LET
| Wijst een naam toe aan het resultaat van een berekening || ||
|-
!scope="row"|MAKEARRAY
| Geeft een berekende array van een gespecificeerde rij- en kolomgrootte terug door een LAMBDA toe te passen || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|MAP
| Geeft een array terug die wordt gevormd door elke waarde in de array(s) te koppelen naar een nieuwe waarde door een LAMBDA toe te passen om een nieuwe waarde te creëren || {{Z+|Z873}} ||
|-
!scope="row"|NOT
| Keert de logische waarde van zijn argument om || {{Z+|Z10216}} ||
|-
!scope="row"|OR
| Geeft TRUE terug als minstens een van de argumenten TRUE is || {{Z+|Z10184}} ||
|-
!scope="row"|REDUCE
| Reduceert een array tot een enkele waarde door een LAMBDA toe te passen op elke waarde en de totale waarde in de accumulator terug te geven || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|SCAN
| Scant een array door een LAMBDA toe te passen op elke waarde en geeft een array terug met elke tussenliggende waarde || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|SWITCH
| Evalueert een expressie aan de hand van een lijst met waarden en geeft het resultaat terug dat overeenkomt met de eerste overeenkomende waarde. Als er geen overeenkomenst is, kan een optionele standaardwaarde worden teruggegeven. || ||
|-
!scope="row"|TRUE
| Geeft de logische waarde TRUE terug || {{Z+|Z10210}} ||
|-
!scope="row"|XOR
| Geeft een logisch exclusieve OF alle argumenten terug || {{Z+|Z10237}} ||
|}
<span id="Lookup_and_reference"></span>
== Opzoeken en referentie ==
{| class="wikitable collapsible sortable"
|+Lijst van zoek- en referentiefuncties van Excel
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|VSTACK
| Voegt arrays verticaal en in volgorde toe om een groter array terug te geven || ||
|-
!scope="row"|WRAPCOLS
| Wikkelt de opgegeven rij of kolom met waarden in kolommen na een bepaald aantal elementen || ||
|-
!scope="row"|WRAPROWS
| Wikkelt de opgegeven rij of kolom met waarden in rijen na een bepaald aantal elementen || ||
|-
!scope="row"|ADDRESS
| Geeft een verwijzing als tekst terug naar een enkele cel in een werkblad || ||
|-
!scope="row"|AREAS
| Geeft het aantal velden in een referentie terug || ||
|-
!scope="row"|CHOOSE
| Kiest een waarde uit een lijst van waarden || ||
|-
!scope="row"|CHOOSECOLS
| Geeft de gespecificeerde kolommen terug uit een array || ||
|-
!scope="row"|CHOOSEROWS
| Geeft de gespecificeerde rijen terug uit een array || ||
|-
!scope="row"|COLUMN
| Geeft het kolomnummer van een referentie terug || ||
|-
!scope="row"|COLUMNS
| Geeft het aantal kolommen in een referentie terug || ||
|-
!scope="row"|DROP
| Sluit een bepaald aantal rijen of kolommen uit van het begin of einde van een array || ||
|-
!scope="row"|EXPAND
| Breidt een array uit of vult deze op tot gespecificeerde rij- en kolomafmetingen || ||
|-
!scope="row"|FILTER
| Filtert een reeks gegevens op basis van criteria die u definieert || ||
|-
!scope="row"|FORMULATEXT
| Geeft de formule op de gegeven referentie terug als tekst || ||
|-
!scope="row"|GETPIVOTDATA
| Retourneert gegevens die zijn opgeslagen in een draaitafelrapport (PivotTable) || ||
|-
!scope="row"|HLOOKUP
| Kijkt in de bovenste rij van een array en geeft de waarde van de aangegeven cel terug || ||
|-
!scope="row"|HSTACK
| Voegt arrays horizontaal en in volgorde toe om een groter array terug te geven || ||
|-
!scope="row"|HYPERLINK
| Maakt een snelkoppeling of sprong aan die een document opent dat is opgeslagen op een netwerkserver, een intranet of het internet || ||
|-
!scope="row"|IMAGE
| Geeft een afbeelding terug uit een gegeven bron || ||
|-
!scope="row"|INDEX
| Gebruikt een index om een waarde te kiezen uit een referentie of array || {{Z+|Z13397}} || Controleren Indexbase
|-
!scope="row"|INDIRECT
| Geeft een referentie terug die wordt aangegeven door een tekstwaarde || ||
|-
!scope="row"|LOOKUP
| Zoekt waarden op in een vector of array || {{Z+|Z13708}} || Controleer of het mogelijk is in arrays met meerdere kolommen.
|-
!scope="row"|MATCH
| Zoekt waarden op in een referentie of array || ||
|-
!scope="row"|OFFSET
| Geeft een referentie-offset terug ten opzichte van een gegeven referentie || ||
|-
!scope="row"|ROW
| Geeft het rijnummer van een referentie terug || ||
|-
!scope="row"|ROWS
| Geeft het aantal rijen in een referentie terug || ||
|-
!scope="row"|RTD
| Haalt realtime data op uit een programma dat COM-automatisering ondersteunt || ||
|-
!scope="row"|SORT
| Sorteert de inhoud van een bereik of een array || ||
|-
!scope="row"|SORTBY
| Sorteert de inhoud van een bereik of array op basis van de waarden in een overeenkomstige bereik of array || ||
|-
!scope="row"|TAKE
| Geeft een gespecificeerd aantal aaneengesloten rijen of kolommen terug vanaf het begin of einde van een array || ||
|-
!scope="row"|TOCOL
| Geeft het array terug in één kolom || ||
|-
!scope="row"|TOROW
| Geeft het array terug in één rij || ||
|-
!scope="row"|TRANSPOSE
| Geeft het array terug waarbij de rijen en kolommen omgedraaid zijn. || ||
|-
!scope="row"|UNIQUE
| Geeft een lijst van unieke waarden terug in een lijst of bereik || ||
|-
!scope="row"|VLOOKUP
| Kijkt in de eerste kolom van een array en beweegt over de rij om de waarde van een cel terug te geven || ||
|-
!scope="row"|XLOOKUP
| Zoekt in een bereik of array, en geeft een item terug dat overeenkomt met de eerste gevonden match. Als er geen match bestaat, kan XLOOKUP de dichtstbijzijnde (benaderende) match teruggeven. || ||
|-
!scope="row"|XMATCH
| Geeft de relatieve positie van een item in een array of bereik van cellen terug. || ||
|}
<span id="Math_and_trigonometry"></span>
== Wiskunde en trigonometrie ==
{| class="wikitable collapsible sortable"
|+Lijst van Wiskunde en trigonometrie Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|ABS
| Geeft de absolute waarde van een getal terug || {{Z+|Z11235}} ||
|-
!scope="row"|ACOS
| Geeft de arccosinus van een getal terug || {{Z+|Z12497}} ||
|-
!scope="row"|ACOSH
| Geeft de inverse hyperbolische cosinus van een getal terug || {{Z+|Z12500}} ||
|-
!scope="row"|ACOT
| Geeft de arccotangent van een getal terug || ||
|-
!scope="row"|ACOTH
| Geeft de hyperbolische arccotangent van een getal terug || ||
|-
!scope="row"|AGGREGATE
| Geeft een aggregaat terug in een lijst of database || ||
|-
!scope="row"|ARABIC
| Zet een Romeins getal om in een gewoon getal || {{Z+|Z11023}} ||
|-
!scope="row"|ASIN
| Geeft de arcsinus van een getal terug || {{Z+|Z12505}} ||
|-
!scope="row"|ASINH
| Geeft de inverse hyperbolische sinus van een getal terug || {{Z+|Z12509}} ||
|-
!scope="row"|ATAN
| Geeft de arctangens van een getal terug || ||
|-
!scope="row"|ATAN2
| Geeft de arctangens terug van x- en y-coördinaten || ||
|-
!scope="row"|ATANH
| Geeft de inverse hyperbolische tangens van een getal terug || ||
|-
!scope="row"|BASE
| Zet een getal om in een tekstrepresentatie met de gegeven radix (basis) || ||
|-
!scope="row"|CEILING.MATH
| Rond een getal naar boven af op het dichtstbijzijnde geheel getal of naar het dichtstbijzijnde veelvoud van significantie || ||
|-
!scope="row"|CEILING.PRECISE
| Rond een getal af op het dichtstbijzijnde geheel getal of op het dichtstbijzijnde veelvoud van significantie. Ongeacht het teken van het getal wordt het getal afgerond. || ||
|-
!scope="row"|COMBIN
| Geeft het aantal combinaties terug voor een gegeven aantal objecten || ||
|-
!scope="row"|COMBINA
| Geeft het aantal combinaties (met herhalingen) terug voor een gegeven aantal items || ||
|-
!scope="row"|COS
| Geeft de cosinus van een getal terug || {{Z+|Z12473}}
|
|-
!scope="row"|COSH
| Geeft de hyperbolische cosinus van een getal terug || ||
|-
!scope="row"|COT
| Geeft de hyperbolische cosinus van een getal terug || ||
|-
!scope="row"|COTH
| Geeft de cotangens van een hoek terug || ||
|-
!scope="row"|CSC
| Geeft de cosecant van een hoek terug || ||
|-
!scope="row"|CSCH
| Geeft de hyperbolische cosecant van een hoek terug || ||
|-
!scope="row"|DECIMAL
| Zet een tekstweergave van een getal in een gegeven basis om in een decimaal getal || ||
|-
!scope="row"|DEGREES
| Zet radialen om in graden || ||
|-
!scope="row"|EVEN
| Rond een getal af naar het dichtstbijzijnde even geheel getal || ||
|-
!scope="row"|EXP
| Geeft e terug die wordt verhoogd tot de macht van een gegeven getal || ||
|-
!scope="row"|FACT
| Geeft de faculteit van een getal terug || ||
|-
!scope="row"|FACTDOUBLE
| Geeft de dubbele faculteit van een getal terug || ||
|-
!scope="row"|FLOOR.MATH
| Rond een getal naar beneden af op het dichtstbijzijnde geheel getal of naar het dichtstbijzijnde veelvoud van significantie || ||
|-
!scope="row"|FLOOR.PRECISE
| Rond een getal af op het dichtstbijzijnde geheel getal of op het dichtstbijzijnde veelvoud van significantie. Ongeacht het teken van het getal wordt het getal afgerond. || ||
|-
!scope="row"|GCD
| Geeft de grootste gemene deler terug || ||
|-
!scope="row"|INT
| Rond een getal af naar beneden naar het dichtstbijzijnde geheel getal || ||
|-
!scope="row"|ISO.CEILING
| Geeft een getal terug dat wordt afgerond naar het dichtstbijzijnde geheel getal of naar het dichtstbijzijnde veelvoud van significantie || ||
|-
!scope="row"|LCM
| Geeft het kleinste gemeenschappelijke veelvoud terug || ||
|-
!scope="row"|LN
| Geeft het natuurlijke logaritme van een getal terug || ||
|-
!scope="row"|LOG
| Geeft de logaritme van een getal terug met een opgegeven basisgetal || ||
|-
!scope="row"|LOG10
| Geeft de logaritme van basis-10 van een getal terug || ||
|-
!scope="row"|MDETERM
| Geeft de matrixdeterminant van een array terug || ||
|-
!scope="row"|MINVERSE
| Geeft de matrixinverse van een array terug || ||
|-
!scope="row"|MMULT
| Geeft het matrixproduct van twee arrays terug || ||
|-
!scope="row"|MOD
| Geeft de rest terug uit een deling || {{Z+|Z12476}} ||
|-
!scope="row"|MROUND
| Geeft een getal terug dat wordt afgerond op het gewenste veelvoud || ||
|-
!scope="row"|MULTINOMIAL
| Geeft de som (multinomial) van een verzameling getallen terug || ||
|-
!scope="row"|MUNIT
| Geeft de eenheidsmatrix voor de gespecificeerde dimensie terug || ||
|-
!scope="row"|ODD
| Rond een getal af naar boven op het dichtstbijzijnde oneven geheel getal || ||
|-
!scope="row"|PI
| Geeft de waarde van Pi terug || {{Z+|Z20862}} ||
|-
!scope="row"|POWER
| Geeft het resultaat terug van een getal dat tot een macht is verhoogd || {{Z+|Z13647}} ||
|-
!scope="row"|PRODUCT
| Vermenigvuldigt zijn argumenten || {{Z+|Z10862}} ||
|-
!scope="row"|QUOTIENT
| Geeft het gehele deel terug van een deling || {{Z+|Z12522}} ||
|-
!scope="row"|RADIANS
| Zet graden om in radialen || ||
|-
!scope="row"|RAND
| Geeft een willekeurig getal tussen 0 en 1 terug || ||
|-
!scope="row"|RANDARRAY
| Geeft een reeks willekeurige getallen tussen 0 en 1 terug. U kunt echter het aantal rijen en kolommen aangeven om in te vullen, de minimale en maximale waarden en of u gehele getallen of decimalen wilt terug krijgen. || ||
|-
!scope="row"|RANDBETWEEN
| Geeft een willekeurig getal terug tussen de getallen die u heeft gespecificeerd || ||
|-
!scope="row"|ROMAN
| Zet een Arabisch getal om naar een Romeins getal, als tekst || {{Z+|Z11022}} ||
|-
!scope="row"|ROUND
| Rondt een getal af op een bepaald aantal cijfers achter de komma || ||
|-
!scope="row"|ROUNDDOWN
| Rondt een getal naar beneden af, richting nul || ||
|-
!scope="row"|ROUNDUP
| Rondt een getal naar boven af, weg van nul || ||
|-
!scope="row"|SEC
| Geeft de secant van een hoek terug || ||
|-
!scope="row"|SECH
| Geeft de hyperbolische secant van een hoek terug || ||
|-
!scope="row"|SEQUENCE
| Genereert een lijst met sequentiële getallen in een array, zoals 1, 2, 3, 4 || ||
|-
!scope="row"|SERIESSUM
| Geef de som terug van macht serie op basis van de formule || ||
|-
!scope="row"|SIGN
| Geeft het teken van een getal terug || ||
|-
!scope="row"|SIN
| Geeft de sinus van een hoek terug || ||
|-
!scope="row"|SINH
| Geeft de hyperbolische sinus van een getal terug || ||
|-
!scope="row"|SQRT
| Geeft een positieve wortel terug || ||
|-
!scope="row"|SQRTPI
| Geeft de wortel terug van (getal * pi) || ||
|-
!scope="row"|SUBTOTAL
| Geeft een subtotaal terug van een lijst of database || ||
|-
!scope="row"|SUM
| Telt de argumenten op || {{Z+|Z12720}} ||
|-
!scope="row"|SUMIF
| Voegt de cellen toe die gespecificeerd zijn volgens een bepaald criterium || ||
|-
!scope="row"|SUMIFS
| Voegt de cellen toe in een bereik dat aan meerdere criteria voldoet || ||
|-
!scope="row"|SUMPRODUCT
| Geeft de som van de producten van de overeenkomstige arraycomponenten terug. || ||
|-
!scope="row"|SUMSQ
| Geeft de som van de kwadraten van de argumenten terug || ||
|-
!scope="row"|SUMX2MY2
| Geeft de som terug van het verschil van kwadraten van overeenkomstige waarden in twee arrays || ||
|-
!scope="row"|SUMX2PY2
| Geeft de som terug van de som van de kwadraten van de overeenkomstige waarden in twee arrays || ||
|-
!scope="row"|SUMXMY2
| Geeft de som van kwadraten van verschillen van overeenkomstige waarden in twee arrays terug. || ||
|-
!scope="row"|TAN
| Geeft de tangens van een getal terug || ||
|-
!scope="row"|TANH
| Geeft de hyperbolische tangens van een getal terug || ||
|-
!scope="row"|TRUNC
| Kapt een getal af tot een geheel getal || ||
|}
<span id="Statistical"></span>
== Statistiek ==
{| class="wikitable collapsible sortable"
|+Lijst van statistiek Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|AVEDEV
| Geeft het gemiddelde van de absolute afwijkingen van datapunten van hun gemiddelde terug. || ||
|-
!scope="row"|AVERAGE
| Geeft het gemiddelde van zijn argumenten terug || ||
|-
!scope="row"|AVERAGEA
| Geeft het gemiddelde van zijn argumenten terug, inclusief getallen, tekst en logische waarden || ||
|-
!scope="row"|AVERAGEIF
| Geeft het gemiddelde (rekenkundig gemiddelde) terug van alle cellen in een bereik die aan een gegeven criterium voldoen || ||
|-
!scope="row"|AVERAGEIFS
| Geeft het gemiddelde (rekenkundig gemiddelde) terug van alle cellen die aan meerdere criteria voldoen. || ||
|-
!scope="row"|BETA.DIST
| Geeft de bèta-cumulatieve verdelingsfunctie terug || ||
|-
!scope="row"|BETA.INV
| Geeft de inverse van de cumulatieve verdelingsfunctie terug voor een gespecificeerde bètaverdeling || ||
|-
!scope="row"|BINOM.DIST
| Geeft de binomiale verdelingskans van de individuele term terug || ||
|-
!scope="row"|BINOM.DIST.RANGE
| Geeft de waarschijnlijkheid van een proefresultaat terug met behulp van een binaire verdeling || ||
|-
!scope="row"|BINOM.INV
| Geeft de kleinste waarde terug waarvoor de cumulatieve binomiale verdeling kleiner is dan of gelijk aan een criteriumwaarde || ||
|-
!scope="row"|CHISQ.DIST
| Geeft de cumulatieve beta-waarschijnlijkheid dichtheidsfunctie terug || ||
|-
!scope="row"|CHISQ.DIST.RT
| Geeft de eenzijdige kans van de chi-kwadraatverdeling terug || ||
|-
!scope="row"|CHISQ.INV
| Geeft de cumulatieve beta-waarschijnlijkheid dichtheidsfunctie terug || ||
|-
!scope="row"|CHISQ.INV.RT
| Geeft de inverse van de eenzijdige kans van de chi-kwadraatverdeling terug || ||
|-
!scope="row"|CHISQ.TEST
| Geeft de test voor onafhankelijkheid terug || ||
|-
!scope="row"|CONFIDENCE.NORM
| Geeft het betrouwbaarheidsinterval terug voor een populatiegemiddelde || ||
|-
!scope="row"|CONFIDENCE.T
| Geeft het vertrouwensinterval voor een bevolkingsgemiddelde terug, met behulp van de t-verdeling || ||
|-
!scope="row"|CORREL
| Geeft de correlatiecoëfficiënt tussen twee gegevenssets terug || ||
|-
!scope="row"|COUNT
| Telt het aantal getallen in de lijst met argumenten || ||
|-
!scope="row"|COUNTA
| Telt hoeveel waarden er zijn in de lijst met argumenten || ||
|-
!scope="row"|COUNTBLANK
| Telt het aantal lege cellen binnen een bereik || ||
|-
!scope="row"|COUNTIF
| Telt het aantal cellen binnen een bereik dat aan de gegeven criteria voldoet || ||
|-
!scope="row"|COUNTIFS
| Telt het aantal cellen binnen een bereik dat aan meerdere criteria voldoet || ||
|-
!scope="row"|COVARIANCE.P
| Geeft covariantie terug, het gemiddelde van de producten van gepaarde afwijkingen || ||
|-
!scope="row"|COVARIANCE.S
| Geeft de covariantie van de steekproef terug, het gemiddelde van de productafwijkingen voor elk datapuntpaar in twee datasets || ||
|-
!scope="row"|DEVSQ
| Geeft de som van kwadraten van afwijkingen terug. || ||
|-
!scope="row"|EXPON.DIST
| Geeft de exponentiële verdeling terug || ||
|-
!scope="row"|F.DIST
| Geeft de F-kansverdeling terug || ||
|-
!scope="row"|F.DIST.RT
| Geeft de F-kansverdeling terug || ||
|-
!scope="row"|F.INV
| Geeft de inverse van de F-kansverdeling terug || ||
|-
!scope="row"|F.INV.RT
| Geeft de inverse van de F-kansverdeling terug || ||
|-
!scope="row"|FISHER
| Geeft de Fisher-transformatie terug || ||
|-
!scope="row"|FISHERINV
| Geeft de inverse van de Fisher-transformatie terug || ||
|-
!scope="row"|FORECAST
| Geeft een waarde terug volgens een lineaire trend || ||
|-
!scope="row"|FORECAST.ETS
| Geeft een toekomstige waarde terug op basis van bestaande (historische) waarden door gebruik te maken van de AAA-versie van het Exponential Smoothing (ETS) algoritme || ||
|-
!scope="row"|FORECAST.ETS.CONFINT
| Geeft een betrouwbaarheidsinterval terug voor de prognosewaarde op de opgegeven streefdatum || ||
|-
!scope="row"|FORECAST.ETS.SEASONALITY
| Geeft de lengte van het repetitieve patroon terug dat Excel detecteert voor de opgegeven tijdreeks || ||
|-
!scope="row"|FORECAST.ETS.STAT
| Geeft een statistische waarde terug als resultaat van tijdreeksvoorspellingen || ||
|-
!scope="row"|FORECAST.LINEAR
| Geeft een toekomstige waarde terug op basis van bestaande waarden || ||
|-
!scope="row"|FREQUENCY
| Geeft een frequentieverdeling terug als een verticale array || ||
|-
!scope="row"|F.TEST
| Geeft het resultaat van een F-test terug || ||
|-
!scope="row"|GAMMA
| Geeft de waarde van de Gamma-functie terug || ||
|-
!scope="row"|GAMMA.DIST
| Geeft de gamma-verdeling terug || ||
|-
!scope="row"|GAMMA.INV
| Geeft de inverse van de cumulatieve gammaverdeling terug || ||
|-
!scope="row"|GAMMALN
| Geeft het natuurlijke logaritme van de gammafunctie, Γ(x) terug || ||
|-
!scope="row"|GAMMALN.PRECISE
| Geeft het natuurlijke logaritme van de gammafunctie, Γ(x) terug || ||
|-
!scope="row"|GAUSS
| Geeft 0,5 minder dan de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|GEOMEAN
| Geeft het geometrische gemiddelde terug || ||
|-
!scope="row"|GROWTH
| Geeft waarden terug langs een exponentiële trend || ||
|-
!scope="row"|HARMEAN
| Geeft het harmonische gemiddelde terug || ||
|-
!scope="row"|HYPGEOM.DIST
| Geeft de hypergeometrische verdeling terug || ||
|-
!scope="row"|INTERCEPT
| Geeft de interceptie terug van de lineaire regressielijn || ||
|-
!scope="row"|KURT
| Geeft de kurtosis van een dataset terug || ||
|-
!scope="row"|LARGE
| Geeft de k-de grootste waarde in een dataset terug || ||
|-
!scope="row"|LINEST
| Geeft de parameters volgens een lineaire trend terug || ||
|-
!scope="row"|LOGEST
| Geeft de parameters volgens een exponentiële trend terug || ||
|-
!scope="row"|LOGNORM.DIST
| Geeft de cumulatieve lognormale verdeling terug || ||
|-
!scope="row"|LOGNORM.INV
| Geeft de inverse van de lognormale cumulatieve verdeling terug || ||
|-
!scope="row"|MAX
| Geeft de maximale waarde in een lijst van argumenten terug || ||
|-
!scope="row"|MAXA
| Geeft de maximale waarde in een lijst met argumenten (inclusief getallen, tekst en logische waarden) terug || ||
|-
!scope="row"|MAXIFS
| Geeft de maximale waarde tussen cellen die zijn gespecificeerd door een bepaalde reeks voorwaarden of criteria, terug || ||
|-
!scope="row"|MEDIAN
| Geeft de mediaan van de gegeven getallen terug || ||
|-
!scope="row"|MIN
| Geeft de minimale waarde in een lijst van argumenten terug ||
* {{z+|Z19509}}
* {{Z+|Z21341}}
||
|-
!scope="row"|MINIFS
| Geeft de minimale waarde tussen cellen die zijn gespecificeerd door een bepaalde reeks voorwaarden of criteria, terug || ||
|-
!scope="row"|MINA
| Geeft de kleinste waarde in een lijst met argumenten (inclusief getallen, tekst en logische waarden) terug || ||
|-
!scope="row"|MODE.MULT
| Geeft een verticale array terug van de meest voorkomende, of repetitieve waarden in een array of databereik || ||
|-
!scope="row"|MODE.SNGL
| Geeft de meest voorkomende waarde in een dataset terug || ||
|-
!scope="row"|NEGBINOM.DIST
| Geeft de negatieve binomiale verdeling terug || ||
|-
!scope="row"|NORM.DIST
| Geeft de normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORMINV
| Geeft de inverse van de normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORM.S.DIST
| Geeft de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORM.S.INV
| Geeft de inverse van de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|PEARSON
| Geeft de Pearson-productmoment-correlatiecoëfficiënt terug || ||
|-
!scope="row"|PERCENTILE.EXC
| Geeft het k-de percentiel van waarden in een bereik terug, waarbij k in het bereik 0..1 ligt, exclusief || ||
|-
!scope="row"|PERCENTILE.INC
| Geeft het k-de percentiel van waarden in een bereik terug || ||
|-
!scope="row"|PERCENTRANK.EXC
| Geeft de rangorde van een waarde in een dataset terug als een percentage (0..1, exclusief) van de dataset || ||
|-
!scope="row"|PERCENTRANK.INC
| Geeft de procentuele rang van een waarde in een dataset terug || ||
|-
!scope="row"|PERMUT
| Geeft het aantal permutaties terug voor een gegeven aantal objecten || ||
|-
!scope="row"|PERMUTATIONA
| Geeft het aantal permutaties terug voor een gegeven aantal objecten (met herhalingen) dat kan worden geselecteerd uit het totaal aantal objecten || ||
|-
!scope="row"|PHI
| Geeft de waarde van de dichtheidsfunctie (density) terug voor een standaard normale verdeling || ||
|-
!scope="row"|POISSON.DIST
| Geeft de Poisson-verdeling terug || ||
|-
!scope="row"|PROB
| Geeft de kans terug dat waarden in een bereik tussen twee limieten liggen || ||
|-
!scope="row"|QUARTILE.EXC
| Geeft het kwartiel van de dataset terug, gebaseerd op percentielwaarden van 0..1, exclusief || ||
|-
!scope="row"|QUARTILE.INC
| Geeft het kwartiel van een dataset terug || ||
|-
!scope="row"|RANK.AVG
| Geeft de rangorde van een getal in een lijst van getallen terug; dubbele waarden krijgen de gemiddelde rang || ||
|-
!scope="row"|RANK.EQ
| Geeft de rangorde van een getal in een lijst van getallen terug; dubbele waarden krijgen dezelfde rangorde || ||
|-
!scope="row"|RSQ
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the square of the Pearson product moment correlation coefficient</span> || ||
|-
!scope="row"|SKEW
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the skewness of a distribution</span> || ||
|-
!scope="row"|SKEW.P
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the skewness of a distribution based on a population: a characterization of the degree of asymmetry of a distribution around its mean</span> || ||
|-
!scope="row"|SLOPE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the slope of the linear regression line</span> || ||
|-
!scope="row"|SMALL
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the k-th smallest value in a data set</span> || ||
|-
!scope="row"|STANDARDIZE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns a normalized value</span> || ||
|-
!scope="row"|STDEV.P
| <span lang="en" dir="ltr" class="mw-content-ltr">Calculates standard deviation based on the entire population</span> || ||
|-
!scope="row"|STDEV.S
| <span lang="en" dir="ltr" class="mw-content-ltr">Estimates standard deviation based on a sample</span> || ||
|-
!scope="row"|STDEVA
| <span lang="en" dir="ltr" class="mw-content-ltr">Estimates standard deviation based on a sample, including numbers, text, and logical values</span> || ||
|-
!scope="row"|STDEVPA
| <span lang="en" dir="ltr" class="mw-content-ltr">Calculates standard deviation based on the entire population, including numbers, text, and logical values</span> || ||
|-
!scope="row"|STEYX
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the standard error of the predicted y-value for each x in the regression</span> || ||
|-
!scope="row"|T.DIST
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Percentage Points (probability) for the Student t-distribution</span> || ||
|-
!scope="row"|T.DIST.2T
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Percentage Points (probability) for the Student t-distribution</span> || ||
|-
!scope="row"|T.DIST.RT
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Student's t-distribution</span> || ||
|-
!scope="row"|T.INV
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the t-value of the Student's t-distribution as a function of the probability and the degrees of freedom</span> || ||
|-
!scope="row"|T.INV.2T
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the inverse of the Student's t-distribution</span> || ||
|-
!scope="row"|TREND
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns values along a linear trend</span> || ||
|-
!scope="row"|TRIMMEAN
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the mean of the interior of a data set</span> || ||
|-
!scope="row"|T.TEST
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the probability associated with a Student's t-test</span> || ||
|-
!scope="row"|VAR.P
| <span lang="en" dir="ltr" class="mw-content-ltr">Calculates variance based on the entire population</span> || ||
|-
!scope="row"|VAR.S
| <span lang="en" dir="ltr" class="mw-content-ltr">Estimates variance based on a sample</span> || ||
|-
!scope="row"|VARA
| <span lang="en" dir="ltr" class="mw-content-ltr">Estimates variance based on a sample, including numbers, text, and logical values</span> || ||
|-
!scope="row"|VARPA
| <span lang="en" dir="ltr" class="mw-content-ltr">Calculates variance based on the entire population, including numbers, text, and logical values</span> || ||
|-
!scope="row"|WEIBULL.DIST
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Weibull distribution</span> || ||
|-
!scope="row"|Z.TEST
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the one-tailed probability-value of a z-test</span> || ||
|}
<span id="Text"></span>
== Tekst ==
{| class="wikitable collapsible sortable"
|+Lijst van tekst Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|ARRAYTOTEXT
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns an array of text values from any specified range</span> || ||
|-
!scope="row"|ASC
| <span lang="en" dir="ltr" class="mw-content-ltr">Changes full-width (double-byte) English letters or katakana within a character string to half-width (single-byte) characters</span> || ||
|-
!scope="row"|BAHTTEXT
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts a number to text, using the ß (baht) currency format</span> || ||
|-
!scope="row"|CHAR
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the character specified by the code number</span> || ||
|-
!scope="row"|CLEAN
| <span lang="en" dir="ltr" class="mw-content-ltr">Removes all nonprintable characters from text</span> || ||
|-
!scope="row"|CODE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns a numeric code for the first character in a text string</span> || ||
|-
!scope="row"|CONCAT
| <span lang="en" dir="ltr" class="mw-content-ltr">Combines the text from multiple ranges and/or strings, but it doesn't provide the delimiter or IgnoreEmpty arguments.</span> || {{Z+|Z10000}} || <span lang="en" dir="ltr" class="mw-content-ltr">WF only takes two strings</span>
|-
!scope="row"|CONCATENATE
| <span lang="en" dir="ltr" class="mw-content-ltr">Joins several text items into one text item</span> || {{Z+|Z10000}} ||
|-
!scope="row"|DBCS
| <span lang="en" dir="ltr" class="mw-content-ltr">Changes half-width (single-byte) English letters or katakana within a character string to full-width (double-byte) characters</span> || ||
|-
!scope="row"|DOLLAR
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts a number to text, using the $ (dollar) currency format</span> || ||
|-
!scope="row"|EXACT
| <span lang="en" dir="ltr" class="mw-content-ltr">Checks to see if two text values are identical</span> || {{Z+|Z866}} ||
|-
!scope="row"|FIND, FINDBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Finds one text value within another (case-sensitive)</span> || ||
|-
!scope="row"|FIXED
| <span lang="en" dir="ltr" class="mw-content-ltr">Formats a number as text with a fixed number of decimals</span> || ||
|-
!scope="row"|JIS
| <span lang="en" dir="ltr" class="mw-content-ltr">Changes half-width (single-byte) characters within a string to full-width (double-byte) characters</span> || ||
|-
!scope="row"|LEFT, LEFTBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the leftmost characters from a text value</span> || ||
|-
!scope="row"|LEN, LENBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the number of characters in a text string</span> || {{Z+|Z11040}} ||
|-
!scope="row"|LOWER
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts text to lowercase</span> || {{Z+|Z10047}} ||
|-
!scope="row"|MID, MIDBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns a specific number of characters from a text string starting at the position you specify</span> || ||
|-
!scope="row"|NUMBERVALUE
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts text to number in a locale-independent manner</span> || ||
|-
!scope="row"|PHONETIC
| <span lang="en" dir="ltr" class="mw-content-ltr">Extracts the phonetic (furigana) characters from a text string</span> || ||
|-
!scope="row"|PROPER
| <span lang="en" dir="ltr" class="mw-content-ltr">Capitalizes the first letter in each word of a text value</span> || {{Z+|Z10251}} ||
|-
!scope="row"|REPLACE, REPLACEBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Replaces characters within text</span> || ||
|-
!scope="row"|REPT
| <span lang="en" dir="ltr" class="mw-content-ltr">Repeats text a given number of times</span> || {{Z+|Z10911}} ||
|-
!scope="row"|RIGHT, RIGHTBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the rightmost characters from a text value</span> || ||
|-
!scope="row"|SEARCH, SEARCHBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Finds one text value within another (not case-sensitive)</span> || ||
|-
!scope="row"|SUBSTITUTE
| <span lang="en" dir="ltr" class="mw-content-ltr">Substitutes new text for old text in a text string</span> || {{Z+|Z10075}} ||
|-
!scope="row"|T
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts its arguments to text</span> || ||
|-
!scope="row"|TEXT
| <span lang="en" dir="ltr" class="mw-content-ltr">Formats a number and converts it to text</span> || {{Z+|Z13713}} ||
|-
!scope="row"|TEXTAFTER
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns text that occurs after given character or string</span> || {{Z+|Z11412}} {{Z+|Z11416}} || <span lang="en" dir="ltr" class="mw-content-ltr">Excel has parameters to choose last (or Nth)</span>
|-
!scope="row"|TEXTBEFORE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns text that occurs before a given character or string</span> || {{Z+|Z11418}} {{Z+|Z11422}} || <span lang="en" dir="ltr" class="mw-content-ltr">Excel has parameters to choose last (or Nth)</span>
|-
!scope="row"|TEXTJOIN
| <span lang="en" dir="ltr" class="mw-content-ltr">Combines the text from multiple ranges and/or strings</span> || ||
|-
!scope="row"|TEXTSPLIT
| <span lang="en" dir="ltr" class="mw-content-ltr">Splits text strings by using column and row delimiters</span> || ||
|-
!scope="row"|TRIM
| <span lang="en" dir="ltr" class="mw-content-ltr">Removes spaces from text</span> || {{Z+|Z10079}} ||
|-
!scope="row"|UNICHAR
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Unicode character that is references by the given numeric value</span> || {{Z+|Z11534}} ||
|-
!scope="row"|UNICODE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the number (code point) that corresponds to the first character of the text</span> || {{Z+|Z11515}} ||
|-
!scope="row"|UPPER
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts text to uppercase</span> || {{Z+|Z10018}} ||
|-
!scope="row"|VALUE
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts a text argument to a number</span> || ||
|-
!scope="row"|VALUETOTEXT
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns text from any specified value</span> || ||
|-
!scope="row"|ENCODEURL
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns a URL-encoded string</span> || {{Z+|Z10761}} ||
|-
!scope="row"|FILTERXML
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns specific data from the XML content by using the specified XPath</span> || ||
|-
!scope="row"|WEBSERVICE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns data from a web service.</span>
|
|
|}
[[Category:Lists of functions]]
7qvbeycprei55b8nnrtmhlvh86k8c63
307285
307282
2026-09-01T19:50:56Z
HanV
6833
Created page with "Geeft het kwadraat van de Pearson-productmoment correlatiecoëfficiënt terug"
307285
wikitext
text/x-wiki
<languages/>
{{w|Microsoft Excel}} functies omvatten de volgende categorieën.
Deze pagina vermeldt Excel-functies als ze een bijbehorende [[Special:MyLanguage/Wikifunctions:Function model|WikiFuncties functie]] hebben.
<span id="Add-in_and_automation"></span>
== Interne en Automatisering ==
{| class="wikitable collapsible sortable"
|+Lijst van interne en automatiseringsfuncties van Excel
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|CALL
| Aanroep van een procedure in een dynamische link-bibliotheek of codebron || ||
|-
!scope="row"|EUROCONVERT
| Zet een getal om euro's, een getal van euro's omzetten naar een munt van een eurolid, of een getal van de ene munt van een eurolid naar een andere door de euro als tussenpersoon te gebruiken (triangulatie). || ||
|-
!scope="row"|REGISTER.ID
| Geeft de register-ID terug van de gespecificeerde dynamische link-bibliotheek (DLL) of codebron die eerder is geregistreerd || ||
|}
<span id="Compatibility"></span>
== Compatibiliteit ==
{| class="wikitable collapsible sortable"
|+Lijst van compatibiliteit Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|BETADIST
| Geeft de bèta-cumulatieve verdelingsfunctie terug || ||
|-
!scope="row"|BETAINV
| Geeft de inverse van de cumulatieve verdelingsfunctie terug voor een gespecificeerde bètaverdeling || ||
|-
!scope="row"|BINOMDIST
| Geeft de binomiale verdelingskans van de individuele term terug || ||
|-
!scope="row"|CEILING
| Rond een getal af naar het dichtstbijzijnde geheel getal of naar het dichtstbijzijnde veelvoud van significantie || ||
|-
!scope="row"|CHIDIST
| Geeft de eenzijdige kans van de chi-kwadraatverdeling terug || ||
|-
!scope="row"|CHIINV
| Geeft de inverse van de eenzijdige kans van de chi-kwadraatverdeling terug || ||
|-
!scope="row"|CHITEST
| Geeft de test voor onafhankelijkheid terug || ||
|-
!scope="row"|CONFIDENCE
| Geeft het betrouwbaarheidsinterval terug voor een populatiegemiddelde || ||
|-
!scope="row"|COVAR
| Geeft covariantie terug, het gemiddelde van de producten van gepaarde afwijkingen || ||
|-
!scope="row"|CRITBINOM
| Geeft de kleinste waarde terug waarvoor de cumulatieve binomiale verdeling kleiner is dan of gelijk aan een criteriumwaarde || ||
|-
!scope="row"|EXPONDIST
| Geeft de exponentiële verdeling terug || ||
|-
!scope="row"|FDIST
| Geeft de F kansverdeling terug || ||
|-
!scope="row"|FINV
| Geeft de inverse van de F-kansverdeling terug || ||
|-
!scope="row"|FLOOR
| Rondt een getal naar beneden af, richting nul || {{Z+|Z20032}}
{{Z+|Z20841}}
|
|-
!scope="row"|FTEST
| Geeft het resultaat van een F-test terug || ||
|-
!scope="row"|GAMMADIST
| Geeft de gamma-verdeling terug || ||
|-
!scope="row"|GAMMAINV
| Geeft de inverse van de cumulatieve gammaverdeling terug || ||
|-
!scope="row"|HYPGEOMDIST
| Geeft de hypergeometrische verdeling terug || ||
|-
!scope="row"|LOGINV
| Geeft de inverse van de lognormale cumulatieve verdeling terug || ||
|-
!scope="row"|LOGNORMDIST
| Geeft de cumulatieve lognormale verdeling terug || ||
|-
!scope="row"|MODE
| Geeft de meest voorkomende waarde in een dataset terug || {{Z+|Z21851}} ||
|-
!scope="row"|NEGBINOMDIST
| Geeft de negatieve binomiale verdeling terug || ||
|-
!scope="row"|NORMDIST
| Geeft de normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORM.INV
| Geeft de inverse van de normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORMSDIST
| Geeft de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORMSINV
| Geeft de inverse van de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|PERCENTILE
| Geeft het k-de percentiel van waarden in een bereik terug || ||
|-
!scope="row"|PERCENTRANK
| Geeft de procentuele rang van een waarde in een dataset terug || ||
|-
!scope="row"|POISSON
| Geeft de Poisson-verdeling terug || ||
|-
!scope="row"|QUARTILE
| Geeft het kwartiel van een dataset terug || ||
|-
!scope="row"|RANK
| Geeft de rangorde van een getal in een lijst van getallen terug || ||
|-
!scope="row"|STDEV
| Schatting van standaarddeviatie op basis van een steekproef || ||
|-
!scope="row"|STDEVP
| Berekent de standaarddeviatie op basis van de gehele populatie || ||
|-
!scope="row"|TDIST
| Geeft de Student's t-verdeling terug || ||
|-
!scope="row"|TINV
| Geeft de inverse van de Student's t-verdeling terug || ||
|-
!scope="row"|TTEST
| Geeft de kans terug die hoort bij de Student's t-test || ||
|-
!scope="row"|VAR
| Schatting van de variantie op basis van een steekproef || ||
|-
!scope="row"|VARP
| Berekent de variantie op basis van de gehele populatie || ||
|-
!scope="row"|WEIBULL
| Berekent de variantie op basis van de gehele populatie, inclusief getallen, tekst en logische waarden || ||
|-
!scope="row"|ZTEST
| Geeft de eenzijdige kanswaarde van een z-test terug || ||
|}
== Cube ==
{| class="wikitable collapsible sortable"
|+Lijst van Cube Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|CUBEKPIMEMBER
| Geeft een naam, eigenschap en maatstaf (Key Performance Indicator) (KPI) terug en toont de naam en eigenschap in de cel. Een KPI is een kwantificeerbare maatstaf, zoals de maandelijkse brutowinst of het kwartaalomzet van medewerkers, die wordt gebruikt om de prestaties van een organisatie te monitoren. || ||
|-
!scope="row"|CUBEMEMBER
| Geeft een lid of tupel terug in een cube-hiërarchie. Gebruik om te valideren dat het lid of de tupel in de cube bestaat. || ||
|-
!scope="row"|CUBEMEMBERPROPERTY
| Geeft de waarde van een lideigenschap in de cube terug. Gebruik om te valideren dat er een lidnaam in de cube bestaat en om de gespecificeerde eigenschap voor dit lid terug te geven. || ||
|-
!scope="row"|CUBERANKEDMEMBER
| Geeft het n-de, of gerangschikte, lid in een set terug. Gebruik het om één of meer elementen in een set op te halen, zoals de beste verkoper of de top 10 studenten. || ||
|-
!scope="row"|CUBESET
| Definieert een berekende set van leden of tupels door een set-expressie naar de cube op de server te sturen, die de set aanmaakt en die set vervolgens teruggeeft aan Microsoft Office Excel. || ||
|-
!scope="row"|CUBESETCOUNT
| Geeft het aantal items in een set terug. || ||
|-
!scope="row"|CUBEVALUE
| Geeft een geaggregeerde waarde terug van een cube. || ||
|}
== Database ==
{| class="wikitable collapsible sortable"
|+Lijst van Excel-databasefuncties
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|DAVERAGE
| Geeft het gemiddelde van geselecteerde database-items terug || ||
|-
!scope="row"|DCOUNT
| Telt de cellen die getallen bevatten in een database || ||
|-
!scope="row"|DCOUNTA
| Telt niet-lege cellen in een database || ||
|-
!scope="row"|DGET
| Haalt uit een database een enkel record dat voldoet aan de gespecificeerde criteria || ||
|-
!scope="row"|DMAX
| Geeft de maximale waarde terug uit geselecteerde database-gegevens || ||
|-
!scope="row"|DMIN
| Geeft de minimale waarde terug uit geselecteerde database-gegevens || ||
|-
!scope="row"|DPRODUCT
| Vermenigvuldigt de waarden in een bepaald veld van records die overeenkomen met de criteria in een database || ||
|-
!scope="row"|DSTDEV
| De standaardafwijking wordt geschat op basis van een steekproef van geselecteerde database-gegevens || ||
|-
!scope="row"|DSTDEVP
| Berekent de standaardafwijking op basis van de gehele populatie van geselecteerde database-gegevens || ||
|-
!scope="row"|DSUM
| Voegt de nummers toe in de veldkolom van database-gegevens die overeenkomen met de criteria || ||
|-
!scope="row"|DVAR
| Schat de variantie op basis van een steekproef uit geselecteerde database-gegevens || ||
|-
!scope="row"|DVARP
| Berekent variantie op basis van de gehele populatie van geselecteerde database-gegevens || ||
|}
<span id="Date_and_time"></span>
== Datum en tijd ==
{| class="wikitable collapsible sortable"
|+Lijst van datum en tijd Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|DATE
| Geeft het serienummer van een bepaalde datum terug || ||
|-
!scope="row"|DATEDIF
| Berekent het aantal dagen, maanden of jaren tussen twee data. Deze functie is nuttig in formules waarbij u een leeftijd moet berekenen. || ||
|-
!scope="row"|DATEVALUE
| Zet een datum in de vorm van tekst om in een serienummer || ||
|-
!scope="row"|DAY
| Zet een serienummer om in een dag van de maand || ||
|-
!scope="row"|DAYS
| Geeft het aantal dagen tussen twee datums terug || ||
|-
!scope="row"|DAYS360
| Berekent het aantal dagen tussen twee datums op basis van een jaar van 360-dagen || ||
|-
!scope="row"|EDATE
| Geeft het serienummer van de datum terug, dat het aangegeven aantal maanden vóór of na de startdatum is || ||
|-
!scope="row"|EOMONTH
| Geeft het serienummer van de laatste dag van de maand vóór of na een bepaald aantal maanden || ||
|-
!scope="row"|HOUR
| Zet een serienummer om in een uur || ||
|-
!scope="row"|ISOWEEKNUM
| Geeft het nummer van het ISO-weeknummer van het jaar terug voor een bepaalde datum || ||
|-
!scope="row"|MINUTE
| Zet een serienummer om in een minuut || ||
|-
!scope="row"|MONTH
| Zet een serienummer om in een maand || ||
|-
!scope="row"|NETWORKDAYS
| Geeft het aantal hele werkdagen tussen twee datums terug || ||
|-
!scope="row"|NETWORKDAYS.INTL
| Geeft het aantal hele werkdagen tussen twee datums terug met behulp van parameters om aan te geven welke en hoeveel dagen weekenddagen zijn || ||
|-
!scope="row"|NOW
| Geeft het serienummer van de huidige datum en tijd terug || ||
|-
!scope="row"|SECOND
| Zet een serienummer om in een seconde || ||
|-
!scope="row"|TIME
| Geeft het serienummer van een bepaald tijdstip terug || ||
|-
!scope="row"|TIMEVALUE
| Zet een tijd in de vorm van tekst om in een serienummer || ||
|-
!scope="row"|TODAY
| Geeft het serienummer van de datum van vandaag terug. || ||
|-
!scope="row"|WEEKDAY
| Zet een serienummer om in een dag van de week || {{Z+|Z17540}} || Heeft Dag, Maand en Jaar nodig in plaats van een serienummer
|-
!scope="row"|WEEKNUM
| Zet een serienummer om in een nummer dat numeriek aangeeft waar de week ligt met een jaar || ||
|-
!scope="row"|WORKDAY
| Geeft het serienummer van de datum voor of na een bepaald aantal werkdagen terug. || ||
|-
!scope="row"|WORKDAY.INTL
| Geeft het serienummer van de datum voor of na een bepaald aantal werkdagen terug met behulp van parameters die aangeven welke en hoeveel dagen weekenddagen zijn || ||
|-
!scope="row"|YEAR
| Zet een serienummer om in een jaar || ||
|-
!scope="row"|YEARFRAC
| Geeft het jaardeel terug dat staat voor het aantal hele dagen tussen 'start_date' en 'end_date' || ||
|}
<span id="Engineering"></span>
== Technisch ==
{| class="wikitable collapsible sortable"
|+Lijst van technische Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|BESSELI
| Geeft de aangepaste Besselfunctie In(x) terug || ||
|-
!scope="row"|BESSELJ
| Geeft de Besselfunctie Jn(x) terug || ||
|-
!scope="row"|BESSELK
| Geeft de aangepaste Besselfunctie Kn(x) terug || ||
|-
!scope="row"|BESSELY
| Geeft de Besselfunctie Yn(x) terug || ||
|-
!scope="row"|BIN2DEC
| Zet een binair getal om in een decimaal getal || ||
|-
!scope="row"|BIN2HEX
| Zet een binair getal om in een hexadecimaal getal || ||
|-
!scope="row"|BIN2OCT
| Zet een binair getal om in een octaal nummer || ||
|-
!scope="row"|BITAND
| Geeft een 'Bitgewijs And' van twee getallen terug || ||
|-
!scope="row"|BITLSHIFT
| Geeft een getal terug dat met shift_amount bits naar links is verschoven || ||
|-
!scope="row"|BITOR
| Geeft een 'Bitgewijs OR' van 2 getallen terug || ||
|-
!scope="row"|BITRSHIFT
| Geeft een getal terug dat met shift_amount bits naar rechts is verschoven || ||
|-
!scope="row"|BITXOR
| Geeft een bitsgewijs 'Exclusieve OR' van twee getallen terug || ||
|-
!scope="row"|COMPLEX
| Zet reële en imaginaire coëfficiënten om in een complex getal || ||
|-
!scope="row"|CONVERT
| Zet een getal om van het ene meetstelsel naar het andere. || ||
|-
!scope="row"|DEC2BIN
| Zet een decimaal getal om in een binair getal || ||
|-
!scope="row"|DEC2HEX
| Zet een decimaal getal om in een hexadecimaal getal || ||
|-
!scope="row"|DEC2OCT
| Zet een decimaal getal om in een octaal getal || ||
|-
!scope="row"|DELTA
| Test of twee waarden gelijk zijn || ||
|-
!scope="row"|ERF
| Geeft de foutfunctie terug || ||
|-
!scope="row"|ERF.PRECISE
| Geeft de foutfunctie terug || ||
|-
!scope="row"|ERFC
| Geeft de complementaire foutfunctie terug || ||
|-
!scope="row"|ERFC.PRECISE
| Geeft de complementaire functie ERF terug geïntegreerd tussen x en oneindig || ||
|-
!scope="row"|GESTEP
| Test of een getal groter is dan een drempelwaarde || ||
|-
!scope="row"|HEX2BIN
| Zet een hexadecimaal getal om in een binair getal || ||
|-
!scope="row"|HEX2DEC
| Zet een hexadecimaal getal om in een decimaal getal || ||
|-
!scope="row"|HEX2OCT
| Zet een hexadecimaal getal om in een octaal getal || ||
|-
!scope="row"|IMABS
| Geeft de absolute waarde (modulus) van een complex getal terug || ||
|-
!scope="row"|IMAGINARY
| Geeft de imaginaire coëfficiënt van een complex getal terug || ||
|-
!scope="row"|IMARGUMENT
| Geeft het argument theta terug, een hoek uitgedrukt in radialen || ||
|-
!scope="row"|IMCONJUGATE
| Geeft het complex geconjugeerde van een complex getal terug || ||
|-
!scope="row"|IMCOS
| Geeft de cosinus van een complex getal terug || ||
|-
!scope="row"|IMCOSH
| Geeft de hyperbolische cosinus van een complex getal terug || ||
|-
!scope="row"|IMCOT
| Geeft de cotangens van een complex getal terug || ||
|-
!scope="row"|IMCSC
| Geeft de cosecans van een complex getal terug || ||
|-
!scope="row"|IMCSCH
| Geeft de hyperbolische cosecans van een complex getal terug || ||
|-
!scope="row"|IMDIV
| Geeft het quotiënt van twee complexe getallen terug || ||
|-
!scope="row"|IMEXP
| Geeft de exponentiële van een complex getal terug || ||
|-
!scope="row"|IMLN
| Geeft het natuurlijke logaritme van een complex getal terug || ||
|-
!scope="row"|IMLOG10
| Geeft de logaritme van basis-10 van een complex getal terug || ||
|-
!scope="row"|IMLOG2
| Geeft de logaritme van basis-2 van een complex getal terug || ||
|-
!scope="row"|IMPOWER
| Geeft een complex getal terug dat tot een geheel getal macht is verhoogd || ||
|-
!scope="row"|IMPRODUCT
| Geeft het product van complexe getallen terug || ||
|-
!scope="row"|IMREAL
| Geeft de reële coëfficiënt van een complex getal terug || ||
|-
!scope="row"|IMSEC
| Geeft de secans van een complex getal terug || ||
|-
!scope="row"|IMSECH
| Geeft de hyperbolische secans van een complex getal terug || ||
|-
!scope="row"|IMSIN
| Geeft de sinus van een complex getal terug || ||
|-
!scope="row"|IMSINH
| Geeft de hyperbolische sinus van een complex getal terug || ||
|-
!scope="row"|IMSQRT
| Geeft de wortel van een complex getal terug || ||
|-
!scope="row"|IMSUB
| Geeft het verschil terug tussen twee complexe getallen || ||
|-
!scope="row"|IMSUM
| Geeft de som van complexe getallen terug || ||
|-
!scope="row"|IMTAN
| Geeft de tangens van een complex getal terug || ||
|-
!scope="row"|OCT2BIN
| Zet een octaal getal om in een binair getal || ||
|-
!scope="row"|OCT2DEC
| Zet een octaal getal om in een decimaal getal || ||
|-
!scope="row"|OCT2HEX
| Zet een octaal getal om in een hexadecimaal getal || ||
|}
<span id="Financial"></span>
== Financieel ==
{| class="wikitable collapsible sortable"
|+Lijst van financiële Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|ACCRINT
| Retourneert de opgebouwde rente voor een zekerheid dat periodieke rente betaalt || ||
|-
!scope="row"|ACCRINTM
| Geeft de opgebouwde rente terug voor een zekerheid dat rente betaalt op een vervaldatum || ||
|-
!scope="row"|AMORDEGRC
| Geeft de afschrijving voor elke boekhoudperiode terug met behulp van een afschrijvingscoëfficiënt || ||
|-
!scope="row"|AMORLINC
| Geeft de afschrijving voor elke boekhoudperiode terug || ||
|-
!scope="row"|COUPDAYBS
| Geeft het aantal dagen terug vanaf het begin van de couponperiode tot de afwikkelingsdatum || ||
|-
!scope="row"|COUPDAYS
| Geeft het aantal dagen in de couponperiode terug waarin de afwikkelingsdatum is opgenomen || ||
|-
!scope="row"|COUPDAYSNC
| Geeft het aantal dagen terug van de afwikkelingsdatum tot de volgende coupondatum || ||
|-
!scope="row"|COUPNCD
| Geeft de volgende coupondatum na de afwikkelingsdatum terug || ||
|-
!scope="row"|COUPNUM
| Geeft het aantal coupons terug dat tussen de afwikkelingsdatum en de vervaldatum moet worden betaald || ||
|-
!scope="row"|COUPPCD
| Geeft de vorige coupondatum vóór de afwikkelingsdatum terug || ||
|-
!scope="row"|CUMIPMT
| Geeft de cumulatieve rente terug die tussen twee perioden is betaald || ||
|-
!scope="row"|CUMPRINC
| Geeft de cumulatieve hoofdsom terug die is betaald op een lening tussen twee periodes || ||
|-
!scope="row"|DB
| Geeft de afschrijving van een activa voor een bepaalde periode terug door gebruik te maken van de fixed-declining balansmethode || ||
|-
!scope="row"|DDB
| Geeft de afschrijving van een activa voor een bepaalde periode terug door gebruik te maken van de double-declining balansmethode of een andere methode die u specificeert || ||
|-
!scope="row"|DISC
| Geeft het discontopercentage voor een zekerheid terug || ||
|-
!scope="row"|DOLLARDE
| Zet een dollarprijs, uitgedrukt als een fractie, om in een dollarprijs, uitgedrukt als een decimaal getal || ||
|-
!scope="row"|DOLLARFR
| Zet een dollarprijs, uitgedrukt als een decimaal getal, om in een dollarprijs, uitgedrukt als een fractie || ||
|-
!scope="row"|DURATION
| Geeft de jaarlijkse looptijd van een zekerheid terug met periodieke rentebetalingen || ||
|-
!scope="row"|EFFECT
| Geeft de effectieve jaarlijkse rente terug || ||
|-
!scope="row"|FV
| Geeft de toekomstige waarde van een belegging terug || ||
|-
!scope="row"|FVSCHEDULE
| Geeft de toekomstige waarde van een initiële hoofdsom terug na het toepassen van een reeks samengestelde rentetarieven || ||
|-
!scope="row"|INTRATE
| Geeft de rente terug voor een volledig geïnvesteerde zekerheid || ||
|-
!scope="row"|IPMT
| Geeft de rentebetaling voor een investering voor een bepaalde periode terug || ||
|-
!scope="row"|IRR
| Geeft het interne rendement terug voor een reeks kasstromen || ||
|-
!scope="row"|ISPMT
| Berekent de rente die wordt betaald gedurende een specifieke investeringsperiode || ||
|-
!scope="row"|MDURATION
| Geeft de Macauley-aangepaste duur terug voor een zekerheid met een veronderstelde nominale waarde van $100 || ||
|-
!scope="row"|MIRR
| Geeft het interne rendement terug, waarbij positieve en negatieve kasstromen worden gefinancierd tegen verschillende rentes || ||
|-
!scope="row"|NOMINAL
| Geeft het jaarlijkse nominale rentepercentage terug || ||
|-
!scope="row"|NPER
| Geeft het aantal periodes voor een investering terug || ||
|-
!scope="row"|NPV
| Geeft de netto contante waarde van een investering terug op basis van een reeks periodieke kasstromen en een discontovoet || ||
|-
!scope="row"|ODDFPRICE
| Geeft de prijs per $100 nominale waarde van een zekerheid terug met een oneven eerste periode || ||
|-
!scope="row"|ODDFYIELD
| Geeft het rendement van een zekerheid terug met een oneven eerste periode || ||
|-
!scope="row"|ODDLPRICE
| Geeft de prijs per $100 nominale waarde van een zekerheid terug met een oneven laatste periode || ||
|-
!scope="row"|ODDLYIELD
| Geeft het rendement van een zekerheid terug met een oneven laatste periode || ||
|-
!scope="row"|PDURATION
| Geeft het aantal periodes terug dat een investering nodig heeft om een bepaalde waarde te bereiken || ||
|-
!scope="row"|PMT
| Retourneert de periodieke betaling voor een annuïteit || ||
|-
!scope="row"|PPMT
| Geeft de betaling van de hoofdsom voor een investering voor een bepaalde periode terug || ||
|-
!scope="row"|PRICE
| Geeft de prijs terug per nominale waarde van $100 van een zekerheid dat periodieke rente betaalt || ||
|-
!scope="row"|PRICEDISC
| Geeft de prijs per nominale waarde van $100 van een afgeprijsde zekerheid terug || ||
|-
!scope="row"|PRICEMAT
| Geeft de prijs per nominale waarde van $100 terug van een zekerheid dat rente betaalt bij vervaldatum || ||
|-
!scope="row"|PV
| Geeft de huidige waarde van een investering terug || ||
|-
!scope="row"|RATE
| Geeft het rentepercentage per periode van een annuïteit terug || ||
|-
!scope="row"|RECEIVED
| Retourneert het bedrag dat bij de vervaldatum is ontvangen voor een volledig geïnvesteerd zekerheid || ||
|-
!scope="row"|RRI
| Geeft een gelijkwaardige rente voor de groei van een investering || ||
|-
!scope="row"|SLN
| Geeft de rechtlijnige afschrijving van een activa voor één periode terug || ||
|-
!scope="row"|STOCKHISTORY
| Haalt historische gegevens op over een financieel instrument || ||
|-
!scope="row"|SYD
| Geeft de "sum-of-years" afschrijving van een activa voor een bepaalde periode terug || ||
|-
!scope="row"|TBILLEQ
| Geeft het obligatie-equivalente rendement voor een schatkistwissel terug || ||
|-
!scope="row"|TBILLPRICE
| Geeft de prijs per nominale waarde van $100 voor een schatkistwissel terug || ||
|-
!scope="row"|TBILLYIELD
| Geeft het rendement terug voor een schatkistwissel || ||
|-
!scope="row"|VDB
| Geeft de afschrijving van een activa terug voor een gespecificeerde of gedeeltelijke periode door gebruik te maken van een afnemende balansmethode || ||
|-
!scope="row"|XIRR
| Geeft het interne rendement terug voor een schema van kasstromen dat niet noodzakelijkerwijs periodiek is || ||
|-
!scope="row"|XNPV
| Geeft de netto contante waarde terug voor een schema van kasstromen dat niet noodzakelijkerwijs periodiek is || ||
|-
!scope="row"|YIELD
| Geeft het rendement terug op een zekerheid dat periodieke rente betaalt || ||
|-
!scope="row"|YIELDDISC
| Geeft de jaarlijkse opbrengst terug voor een gedisconteerde zekerheid; bijvoorbeeld een schatkistwissel || ||
|-
!scope="row"|YIELDMAT
| Geeft het jaarlijkse rendement terug van een zekerheid dat rente betaalt op een vervaldatum || ||
|}
<span id="Information"></span>
== Informatie ==
{| class="wikitable collapsible sortable"
|+Lijst van informatie Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|CELL
| Geeft informatie terug over de opmaak, locatie of inhoud van een cel || ||
|-
!scope="row"|ERROR.TYPE
| Geeft een getal terug dat overeenkomt met een fouttype || ||
|-
!scope="row"|INFO
| Geeft informatie terug over de huidige operationele omgeving || ||
|-
!scope="row"|ISBLANK
| Geeft TRUE terug als de waarde leeg is || {{Z+|Z10008}} ||
|-
!scope="row"|ISERR
| Geeft TRUE terug als de waarde een willekeurige foutwaarde is anders dan #N/A || ||
|-
!scope="row"|ISERROR
| Geeft TRUE terug als de waarde een willekeurige foutwaarde is || {{Z+|Z20107}} ||
|-
!scope="row"|ISEVEN
| Geeft TRUE terug als het getal even is || {{Z+|Z12480}} ||
|-
!scope="row"|ISFORMULA
| Geeft TRUE terug als er een verwijzing is naar een cel die een formule bevat || ||
|-
!scope="row"|ISLOGICAL
| Geeft TRUE terug als de waarde een logische waarde is || ||
|-
!scope="row"|ISNA
| Geeft TRUE terug als de waarde de #N/A-foutwaarde is || ||
|-
!scope="row"|ISNONTEXT
| Geeft TRUE terug als de waarde geen tekst is || ||
|-
!scope="row"|ISNUMBER
| Geeft TRUE als de waarde een getal is || {{Z+|Z10715}} ||
|-
!scope="row"|ISODD
| Geeft TRUE terug als het getal oneven is || {{Z+|Z12429}} ||
|-
!scope="row"|ISOMITTED
| Controleert of de waarde in een LAMBDA ontbreekt en geeft TRUE of FALSE terug || ||
|-
!scope="row"|ISREF
| Geeft TRUE terug als de waarde een referentie is || ||
|-
!scope="row"|ISTEXT
| Geeft TRUE terug als de waarde een tekst is || ||
|-
!scope="row"|N
| Geeft een waarde terug die is omgezet in een getal || ||
|-
!scope="row"|NA
| Geeft de foutwaarde #N/A terug || ||
|-
!scope="row"|SHEET
| Geeft het bladnummer van het gerefereerde blad terug || ||
|-
!scope="row"|SHEETS
| Geeft het aantal bladen in een referentie terug || ||
|-
!scope="row"|TYPE
| Geeft een getal terug dat het datatype van een waarde aangeeft || ||
|}
<span id="Logical"></span>
== Logica ==
{| class="wikitable collapsible sortable"
|+Lijst van logische Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|AND
| Geeft TRUE terug als al zijn argumenten TRUE zijn || {{Z+|Z10174}} ||
|-
!scope="row"|BYCOL
| Past een LAMBDA toe op elke kolom en geeft een array van de resultaten terug || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|BYROW
| Past een LAMBDA toe op elke rij en geeft een array van de resultaten terug || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|FALSE
| Geeft de logische waarde FALSE terug || {{Z+|Z10206}} ||
|-
!scope="row"|IF
| Specificeert een logische test om uit te voeren || {{Z+|Z802}}, {{Z+|Z11542}} ||
|-
!scope="row"|IFERROR
| Geeft een waarde terug die u specificeert als een formule evalueert naar een fout; geeft anders het resultaat van de formule terug || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|IFNA
| Geeft de door u opgegeven waarde terug als de expressie wordt opgelost naar #N/A, anders geeft het resultaat van de expressie terug || ||
|-
!scope="row"|IFS
| Controleert of aan één of meer voorwaarden is voldaan en geeft een waarde terug die overeenkomt met de eerste TRUE-voorwaarde. || {{Z+|Z19601}} ||
|-
!scope="row"|LAMBDA
| Maak aangepaste, herbruikbare functies en roept ze met een vriendelijke naam aan || {{Z+|Z8}} ||
|-
!scope="row"|LET
| Wijst een naam toe aan het resultaat van een berekening || ||
|-
!scope="row"|MAKEARRAY
| Geeft een berekende array van een gespecificeerde rij- en kolomgrootte terug door een LAMBDA toe te passen || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|MAP
| Geeft een array terug die wordt gevormd door elke waarde in de array(s) te koppelen naar een nieuwe waarde door een LAMBDA toe te passen om een nieuwe waarde te creëren || {{Z+|Z873}} ||
|-
!scope="row"|NOT
| Keert de logische waarde van zijn argument om || {{Z+|Z10216}} ||
|-
!scope="row"|OR
| Geeft TRUE terug als minstens een van de argumenten TRUE is || {{Z+|Z10184}} ||
|-
!scope="row"|REDUCE
| Reduceert een array tot een enkele waarde door een LAMBDA toe te passen op elke waarde en de totale waarde in de accumulator terug te geven || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|SCAN
| Scant een array door een LAMBDA toe te passen op elke waarde en geeft een array terug met elke tussenliggende waarde || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|SWITCH
| Evalueert een expressie aan de hand van een lijst met waarden en geeft het resultaat terug dat overeenkomt met de eerste overeenkomende waarde. Als er geen overeenkomenst is, kan een optionele standaardwaarde worden teruggegeven. || ||
|-
!scope="row"|TRUE
| Geeft de logische waarde TRUE terug || {{Z+|Z10210}} ||
|-
!scope="row"|XOR
| Geeft een logisch exclusieve OF alle argumenten terug || {{Z+|Z10237}} ||
|}
<span id="Lookup_and_reference"></span>
== Opzoeken en referentie ==
{| class="wikitable collapsible sortable"
|+Lijst van zoek- en referentiefuncties van Excel
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|VSTACK
| Voegt arrays verticaal en in volgorde toe om een groter array terug te geven || ||
|-
!scope="row"|WRAPCOLS
| Wikkelt de opgegeven rij of kolom met waarden in kolommen na een bepaald aantal elementen || ||
|-
!scope="row"|WRAPROWS
| Wikkelt de opgegeven rij of kolom met waarden in rijen na een bepaald aantal elementen || ||
|-
!scope="row"|ADDRESS
| Geeft een verwijzing als tekst terug naar een enkele cel in een werkblad || ||
|-
!scope="row"|AREAS
| Geeft het aantal velden in een referentie terug || ||
|-
!scope="row"|CHOOSE
| Kiest een waarde uit een lijst van waarden || ||
|-
!scope="row"|CHOOSECOLS
| Geeft de gespecificeerde kolommen terug uit een array || ||
|-
!scope="row"|CHOOSEROWS
| Geeft de gespecificeerde rijen terug uit een array || ||
|-
!scope="row"|COLUMN
| Geeft het kolomnummer van een referentie terug || ||
|-
!scope="row"|COLUMNS
| Geeft het aantal kolommen in een referentie terug || ||
|-
!scope="row"|DROP
| Sluit een bepaald aantal rijen of kolommen uit van het begin of einde van een array || ||
|-
!scope="row"|EXPAND
| Breidt een array uit of vult deze op tot gespecificeerde rij- en kolomafmetingen || ||
|-
!scope="row"|FILTER
| Filtert een reeks gegevens op basis van criteria die u definieert || ||
|-
!scope="row"|FORMULATEXT
| Geeft de formule op de gegeven referentie terug als tekst || ||
|-
!scope="row"|GETPIVOTDATA
| Retourneert gegevens die zijn opgeslagen in een draaitafelrapport (PivotTable) || ||
|-
!scope="row"|HLOOKUP
| Kijkt in de bovenste rij van een array en geeft de waarde van de aangegeven cel terug || ||
|-
!scope="row"|HSTACK
| Voegt arrays horizontaal en in volgorde toe om een groter array terug te geven || ||
|-
!scope="row"|HYPERLINK
| Maakt een snelkoppeling of sprong aan die een document opent dat is opgeslagen op een netwerkserver, een intranet of het internet || ||
|-
!scope="row"|IMAGE
| Geeft een afbeelding terug uit een gegeven bron || ||
|-
!scope="row"|INDEX
| Gebruikt een index om een waarde te kiezen uit een referentie of array || {{Z+|Z13397}} || Controleren Indexbase
|-
!scope="row"|INDIRECT
| Geeft een referentie terug die wordt aangegeven door een tekstwaarde || ||
|-
!scope="row"|LOOKUP
| Zoekt waarden op in een vector of array || {{Z+|Z13708}} || Controleer of het mogelijk is in arrays met meerdere kolommen.
|-
!scope="row"|MATCH
| Zoekt waarden op in een referentie of array || ||
|-
!scope="row"|OFFSET
| Geeft een referentie-offset terug ten opzichte van een gegeven referentie || ||
|-
!scope="row"|ROW
| Geeft het rijnummer van een referentie terug || ||
|-
!scope="row"|ROWS
| Geeft het aantal rijen in een referentie terug || ||
|-
!scope="row"|RTD
| Haalt realtime data op uit een programma dat COM-automatisering ondersteunt || ||
|-
!scope="row"|SORT
| Sorteert de inhoud van een bereik of een array || ||
|-
!scope="row"|SORTBY
| Sorteert de inhoud van een bereik of array op basis van de waarden in een overeenkomstige bereik of array || ||
|-
!scope="row"|TAKE
| Geeft een gespecificeerd aantal aaneengesloten rijen of kolommen terug vanaf het begin of einde van een array || ||
|-
!scope="row"|TOCOL
| Geeft het array terug in één kolom || ||
|-
!scope="row"|TOROW
| Geeft het array terug in één rij || ||
|-
!scope="row"|TRANSPOSE
| Geeft het array terug waarbij de rijen en kolommen omgedraaid zijn. || ||
|-
!scope="row"|UNIQUE
| Geeft een lijst van unieke waarden terug in een lijst of bereik || ||
|-
!scope="row"|VLOOKUP
| Kijkt in de eerste kolom van een array en beweegt over de rij om de waarde van een cel terug te geven || ||
|-
!scope="row"|XLOOKUP
| Zoekt in een bereik of array, en geeft een item terug dat overeenkomt met de eerste gevonden match. Als er geen match bestaat, kan XLOOKUP de dichtstbijzijnde (benaderende) match teruggeven. || ||
|-
!scope="row"|XMATCH
| Geeft de relatieve positie van een item in een array of bereik van cellen terug. || ||
|}
<span id="Math_and_trigonometry"></span>
== Wiskunde en trigonometrie ==
{| class="wikitable collapsible sortable"
|+Lijst van Wiskunde en trigonometrie Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|ABS
| Geeft de absolute waarde van een getal terug || {{Z+|Z11235}} ||
|-
!scope="row"|ACOS
| Geeft de arccosinus van een getal terug || {{Z+|Z12497}} ||
|-
!scope="row"|ACOSH
| Geeft de inverse hyperbolische cosinus van een getal terug || {{Z+|Z12500}} ||
|-
!scope="row"|ACOT
| Geeft de arccotangent van een getal terug || ||
|-
!scope="row"|ACOTH
| Geeft de hyperbolische arccotangent van een getal terug || ||
|-
!scope="row"|AGGREGATE
| Geeft een aggregaat terug in een lijst of database || ||
|-
!scope="row"|ARABIC
| Zet een Romeins getal om in een gewoon getal || {{Z+|Z11023}} ||
|-
!scope="row"|ASIN
| Geeft de arcsinus van een getal terug || {{Z+|Z12505}} ||
|-
!scope="row"|ASINH
| Geeft de inverse hyperbolische sinus van een getal terug || {{Z+|Z12509}} ||
|-
!scope="row"|ATAN
| Geeft de arctangens van een getal terug || ||
|-
!scope="row"|ATAN2
| Geeft de arctangens terug van x- en y-coördinaten || ||
|-
!scope="row"|ATANH
| Geeft de inverse hyperbolische tangens van een getal terug || ||
|-
!scope="row"|BASE
| Zet een getal om in een tekstrepresentatie met de gegeven radix (basis) || ||
|-
!scope="row"|CEILING.MATH
| Rond een getal naar boven af op het dichtstbijzijnde geheel getal of naar het dichtstbijzijnde veelvoud van significantie || ||
|-
!scope="row"|CEILING.PRECISE
| Rond een getal af op het dichtstbijzijnde geheel getal of op het dichtstbijzijnde veelvoud van significantie. Ongeacht het teken van het getal wordt het getal afgerond. || ||
|-
!scope="row"|COMBIN
| Geeft het aantal combinaties terug voor een gegeven aantal objecten || ||
|-
!scope="row"|COMBINA
| Geeft het aantal combinaties (met herhalingen) terug voor een gegeven aantal items || ||
|-
!scope="row"|COS
| Geeft de cosinus van een getal terug || {{Z+|Z12473}}
|
|-
!scope="row"|COSH
| Geeft de hyperbolische cosinus van een getal terug || ||
|-
!scope="row"|COT
| Geeft de hyperbolische cosinus van een getal terug || ||
|-
!scope="row"|COTH
| Geeft de cotangens van een hoek terug || ||
|-
!scope="row"|CSC
| Geeft de cosecant van een hoek terug || ||
|-
!scope="row"|CSCH
| Geeft de hyperbolische cosecant van een hoek terug || ||
|-
!scope="row"|DECIMAL
| Zet een tekstweergave van een getal in een gegeven basis om in een decimaal getal || ||
|-
!scope="row"|DEGREES
| Zet radialen om in graden || ||
|-
!scope="row"|EVEN
| Rond een getal af naar het dichtstbijzijnde even geheel getal || ||
|-
!scope="row"|EXP
| Geeft e terug die wordt verhoogd tot de macht van een gegeven getal || ||
|-
!scope="row"|FACT
| Geeft de faculteit van een getal terug || ||
|-
!scope="row"|FACTDOUBLE
| Geeft de dubbele faculteit van een getal terug || ||
|-
!scope="row"|FLOOR.MATH
| Rond een getal naar beneden af op het dichtstbijzijnde geheel getal of naar het dichtstbijzijnde veelvoud van significantie || ||
|-
!scope="row"|FLOOR.PRECISE
| Rond een getal af op het dichtstbijzijnde geheel getal of op het dichtstbijzijnde veelvoud van significantie. Ongeacht het teken van het getal wordt het getal afgerond. || ||
|-
!scope="row"|GCD
| Geeft de grootste gemene deler terug || ||
|-
!scope="row"|INT
| Rond een getal af naar beneden naar het dichtstbijzijnde geheel getal || ||
|-
!scope="row"|ISO.CEILING
| Geeft een getal terug dat wordt afgerond naar het dichtstbijzijnde geheel getal of naar het dichtstbijzijnde veelvoud van significantie || ||
|-
!scope="row"|LCM
| Geeft het kleinste gemeenschappelijke veelvoud terug || ||
|-
!scope="row"|LN
| Geeft het natuurlijke logaritme van een getal terug || ||
|-
!scope="row"|LOG
| Geeft de logaritme van een getal terug met een opgegeven basisgetal || ||
|-
!scope="row"|LOG10
| Geeft de logaritme van basis-10 van een getal terug || ||
|-
!scope="row"|MDETERM
| Geeft de matrixdeterminant van een array terug || ||
|-
!scope="row"|MINVERSE
| Geeft de matrixinverse van een array terug || ||
|-
!scope="row"|MMULT
| Geeft het matrixproduct van twee arrays terug || ||
|-
!scope="row"|MOD
| Geeft de rest terug uit een deling || {{Z+|Z12476}} ||
|-
!scope="row"|MROUND
| Geeft een getal terug dat wordt afgerond op het gewenste veelvoud || ||
|-
!scope="row"|MULTINOMIAL
| Geeft de som (multinomial) van een verzameling getallen terug || ||
|-
!scope="row"|MUNIT
| Geeft de eenheidsmatrix voor de gespecificeerde dimensie terug || ||
|-
!scope="row"|ODD
| Rond een getal af naar boven op het dichtstbijzijnde oneven geheel getal || ||
|-
!scope="row"|PI
| Geeft de waarde van Pi terug || {{Z+|Z20862}} ||
|-
!scope="row"|POWER
| Geeft het resultaat terug van een getal dat tot een macht is verhoogd || {{Z+|Z13647}} ||
|-
!scope="row"|PRODUCT
| Vermenigvuldigt zijn argumenten || {{Z+|Z10862}} ||
|-
!scope="row"|QUOTIENT
| Geeft het gehele deel terug van een deling || {{Z+|Z12522}} ||
|-
!scope="row"|RADIANS
| Zet graden om in radialen || ||
|-
!scope="row"|RAND
| Geeft een willekeurig getal tussen 0 en 1 terug || ||
|-
!scope="row"|RANDARRAY
| Geeft een reeks willekeurige getallen tussen 0 en 1 terug. U kunt echter het aantal rijen en kolommen aangeven om in te vullen, de minimale en maximale waarden en of u gehele getallen of decimalen wilt terug krijgen. || ||
|-
!scope="row"|RANDBETWEEN
| Geeft een willekeurig getal terug tussen de getallen die u heeft gespecificeerd || ||
|-
!scope="row"|ROMAN
| Zet een Arabisch getal om naar een Romeins getal, als tekst || {{Z+|Z11022}} ||
|-
!scope="row"|ROUND
| Rondt een getal af op een bepaald aantal cijfers achter de komma || ||
|-
!scope="row"|ROUNDDOWN
| Rondt een getal naar beneden af, richting nul || ||
|-
!scope="row"|ROUNDUP
| Rondt een getal naar boven af, weg van nul || ||
|-
!scope="row"|SEC
| Geeft de secant van een hoek terug || ||
|-
!scope="row"|SECH
| Geeft de hyperbolische secant van een hoek terug || ||
|-
!scope="row"|SEQUENCE
| Genereert een lijst met sequentiële getallen in een array, zoals 1, 2, 3, 4 || ||
|-
!scope="row"|SERIESSUM
| Geef de som terug van macht serie op basis van de formule || ||
|-
!scope="row"|SIGN
| Geeft het teken van een getal terug || ||
|-
!scope="row"|SIN
| Geeft de sinus van een hoek terug || ||
|-
!scope="row"|SINH
| Geeft de hyperbolische sinus van een getal terug || ||
|-
!scope="row"|SQRT
| Geeft een positieve wortel terug || ||
|-
!scope="row"|SQRTPI
| Geeft de wortel terug van (getal * pi) || ||
|-
!scope="row"|SUBTOTAL
| Geeft een subtotaal terug van een lijst of database || ||
|-
!scope="row"|SUM
| Telt de argumenten op || {{Z+|Z12720}} ||
|-
!scope="row"|SUMIF
| Voegt de cellen toe die gespecificeerd zijn volgens een bepaald criterium || ||
|-
!scope="row"|SUMIFS
| Voegt de cellen toe in een bereik dat aan meerdere criteria voldoet || ||
|-
!scope="row"|SUMPRODUCT
| Geeft de som van de producten van de overeenkomstige arraycomponenten terug. || ||
|-
!scope="row"|SUMSQ
| Geeft de som van de kwadraten van de argumenten terug || ||
|-
!scope="row"|SUMX2MY2
| Geeft de som terug van het verschil van kwadraten van overeenkomstige waarden in twee arrays || ||
|-
!scope="row"|SUMX2PY2
| Geeft de som terug van de som van de kwadraten van de overeenkomstige waarden in twee arrays || ||
|-
!scope="row"|SUMXMY2
| Geeft de som van kwadraten van verschillen van overeenkomstige waarden in twee arrays terug. || ||
|-
!scope="row"|TAN
| Geeft de tangens van een getal terug || ||
|-
!scope="row"|TANH
| Geeft de hyperbolische tangens van een getal terug || ||
|-
!scope="row"|TRUNC
| Kapt een getal af tot een geheel getal || ||
|}
<span id="Statistical"></span>
== Statistiek ==
{| class="wikitable collapsible sortable"
|+Lijst van statistiek Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|AVEDEV
| Geeft het gemiddelde van de absolute afwijkingen van datapunten van hun gemiddelde terug. || ||
|-
!scope="row"|AVERAGE
| Geeft het gemiddelde van zijn argumenten terug || ||
|-
!scope="row"|AVERAGEA
| Geeft het gemiddelde van zijn argumenten terug, inclusief getallen, tekst en logische waarden || ||
|-
!scope="row"|AVERAGEIF
| Geeft het gemiddelde (rekenkundig gemiddelde) terug van alle cellen in een bereik die aan een gegeven criterium voldoen || ||
|-
!scope="row"|AVERAGEIFS
| Geeft het gemiddelde (rekenkundig gemiddelde) terug van alle cellen die aan meerdere criteria voldoen. || ||
|-
!scope="row"|BETA.DIST
| Geeft de bèta-cumulatieve verdelingsfunctie terug || ||
|-
!scope="row"|BETA.INV
| Geeft de inverse van de cumulatieve verdelingsfunctie terug voor een gespecificeerde bètaverdeling || ||
|-
!scope="row"|BINOM.DIST
| Geeft de binomiale verdelingskans van de individuele term terug || ||
|-
!scope="row"|BINOM.DIST.RANGE
| Geeft de waarschijnlijkheid van een proefresultaat terug met behulp van een binaire verdeling || ||
|-
!scope="row"|BINOM.INV
| Geeft de kleinste waarde terug waarvoor de cumulatieve binomiale verdeling kleiner is dan of gelijk aan een criteriumwaarde || ||
|-
!scope="row"|CHISQ.DIST
| Geeft de cumulatieve beta-waarschijnlijkheid dichtheidsfunctie terug || ||
|-
!scope="row"|CHISQ.DIST.RT
| Geeft de eenzijdige kans van de chi-kwadraatverdeling terug || ||
|-
!scope="row"|CHISQ.INV
| Geeft de cumulatieve beta-waarschijnlijkheid dichtheidsfunctie terug || ||
|-
!scope="row"|CHISQ.INV.RT
| Geeft de inverse van de eenzijdige kans van de chi-kwadraatverdeling terug || ||
|-
!scope="row"|CHISQ.TEST
| Geeft de test voor onafhankelijkheid terug || ||
|-
!scope="row"|CONFIDENCE.NORM
| Geeft het betrouwbaarheidsinterval terug voor een populatiegemiddelde || ||
|-
!scope="row"|CONFIDENCE.T
| Geeft het vertrouwensinterval voor een bevolkingsgemiddelde terug, met behulp van de t-verdeling || ||
|-
!scope="row"|CORREL
| Geeft de correlatiecoëfficiënt tussen twee gegevenssets terug || ||
|-
!scope="row"|COUNT
| Telt het aantal getallen in de lijst met argumenten || ||
|-
!scope="row"|COUNTA
| Telt hoeveel waarden er zijn in de lijst met argumenten || ||
|-
!scope="row"|COUNTBLANK
| Telt het aantal lege cellen binnen een bereik || ||
|-
!scope="row"|COUNTIF
| Telt het aantal cellen binnen een bereik dat aan de gegeven criteria voldoet || ||
|-
!scope="row"|COUNTIFS
| Telt het aantal cellen binnen een bereik dat aan meerdere criteria voldoet || ||
|-
!scope="row"|COVARIANCE.P
| Geeft covariantie terug, het gemiddelde van de producten van gepaarde afwijkingen || ||
|-
!scope="row"|COVARIANCE.S
| Geeft de covariantie van de steekproef terug, het gemiddelde van de productafwijkingen voor elk datapuntpaar in twee datasets || ||
|-
!scope="row"|DEVSQ
| Geeft de som van kwadraten van afwijkingen terug. || ||
|-
!scope="row"|EXPON.DIST
| Geeft de exponentiële verdeling terug || ||
|-
!scope="row"|F.DIST
| Geeft de F-kansverdeling terug || ||
|-
!scope="row"|F.DIST.RT
| Geeft de F-kansverdeling terug || ||
|-
!scope="row"|F.INV
| Geeft de inverse van de F-kansverdeling terug || ||
|-
!scope="row"|F.INV.RT
| Geeft de inverse van de F-kansverdeling terug || ||
|-
!scope="row"|FISHER
| Geeft de Fisher-transformatie terug || ||
|-
!scope="row"|FISHERINV
| Geeft de inverse van de Fisher-transformatie terug || ||
|-
!scope="row"|FORECAST
| Geeft een waarde terug volgens een lineaire trend || ||
|-
!scope="row"|FORECAST.ETS
| Geeft een toekomstige waarde terug op basis van bestaande (historische) waarden door gebruik te maken van de AAA-versie van het Exponential Smoothing (ETS) algoritme || ||
|-
!scope="row"|FORECAST.ETS.CONFINT
| Geeft een betrouwbaarheidsinterval terug voor de prognosewaarde op de opgegeven streefdatum || ||
|-
!scope="row"|FORECAST.ETS.SEASONALITY
| Geeft de lengte van het repetitieve patroon terug dat Excel detecteert voor de opgegeven tijdreeks || ||
|-
!scope="row"|FORECAST.ETS.STAT
| Geeft een statistische waarde terug als resultaat van tijdreeksvoorspellingen || ||
|-
!scope="row"|FORECAST.LINEAR
| Geeft een toekomstige waarde terug op basis van bestaande waarden || ||
|-
!scope="row"|FREQUENCY
| Geeft een frequentieverdeling terug als een verticale array || ||
|-
!scope="row"|F.TEST
| Geeft het resultaat van een F-test terug || ||
|-
!scope="row"|GAMMA
| Geeft de waarde van de Gamma-functie terug || ||
|-
!scope="row"|GAMMA.DIST
| Geeft de gamma-verdeling terug || ||
|-
!scope="row"|GAMMA.INV
| Geeft de inverse van de cumulatieve gammaverdeling terug || ||
|-
!scope="row"|GAMMALN
| Geeft het natuurlijke logaritme van de gammafunctie, Γ(x) terug || ||
|-
!scope="row"|GAMMALN.PRECISE
| Geeft het natuurlijke logaritme van de gammafunctie, Γ(x) terug || ||
|-
!scope="row"|GAUSS
| Geeft 0,5 minder dan de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|GEOMEAN
| Geeft het geometrische gemiddelde terug || ||
|-
!scope="row"|GROWTH
| Geeft waarden terug langs een exponentiële trend || ||
|-
!scope="row"|HARMEAN
| Geeft het harmonische gemiddelde terug || ||
|-
!scope="row"|HYPGEOM.DIST
| Geeft de hypergeometrische verdeling terug || ||
|-
!scope="row"|INTERCEPT
| Geeft de interceptie terug van de lineaire regressielijn || ||
|-
!scope="row"|KURT
| Geeft de kurtosis van een dataset terug || ||
|-
!scope="row"|LARGE
| Geeft de k-de grootste waarde in een dataset terug || ||
|-
!scope="row"|LINEST
| Geeft de parameters volgens een lineaire trend terug || ||
|-
!scope="row"|LOGEST
| Geeft de parameters volgens een exponentiële trend terug || ||
|-
!scope="row"|LOGNORM.DIST
| Geeft de cumulatieve lognormale verdeling terug || ||
|-
!scope="row"|LOGNORM.INV
| Geeft de inverse van de lognormale cumulatieve verdeling terug || ||
|-
!scope="row"|MAX
| Geeft de maximale waarde in een lijst van argumenten terug || ||
|-
!scope="row"|MAXA
| Geeft de maximale waarde in een lijst met argumenten (inclusief getallen, tekst en logische waarden) terug || ||
|-
!scope="row"|MAXIFS
| Geeft de maximale waarde tussen cellen die zijn gespecificeerd door een bepaalde reeks voorwaarden of criteria, terug || ||
|-
!scope="row"|MEDIAN
| Geeft de mediaan van de gegeven getallen terug || ||
|-
!scope="row"|MIN
| Geeft de minimale waarde in een lijst van argumenten terug ||
* {{z+|Z19509}}
* {{Z+|Z21341}}
||
|-
!scope="row"|MINIFS
| Geeft de minimale waarde tussen cellen die zijn gespecificeerd door een bepaalde reeks voorwaarden of criteria, terug || ||
|-
!scope="row"|MINA
| Geeft de kleinste waarde in een lijst met argumenten (inclusief getallen, tekst en logische waarden) terug || ||
|-
!scope="row"|MODE.MULT
| Geeft een verticale array terug van de meest voorkomende, of repetitieve waarden in een array of databereik || ||
|-
!scope="row"|MODE.SNGL
| Geeft de meest voorkomende waarde in een dataset terug || ||
|-
!scope="row"|NEGBINOM.DIST
| Geeft de negatieve binomiale verdeling terug || ||
|-
!scope="row"|NORM.DIST
| Geeft de normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORMINV
| Geeft de inverse van de normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORM.S.DIST
| Geeft de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORM.S.INV
| Geeft de inverse van de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|PEARSON
| Geeft de Pearson-productmoment-correlatiecoëfficiënt terug || ||
|-
!scope="row"|PERCENTILE.EXC
| Geeft het k-de percentiel van waarden in een bereik terug, waarbij k in het bereik 0..1 ligt, exclusief || ||
|-
!scope="row"|PERCENTILE.INC
| Geeft het k-de percentiel van waarden in een bereik terug || ||
|-
!scope="row"|PERCENTRANK.EXC
| Geeft de rangorde van een waarde in een dataset terug als een percentage (0..1, exclusief) van de dataset || ||
|-
!scope="row"|PERCENTRANK.INC
| Geeft de procentuele rang van een waarde in een dataset terug || ||
|-
!scope="row"|PERMUT
| Geeft het aantal permutaties terug voor een gegeven aantal objecten || ||
|-
!scope="row"|PERMUTATIONA
| Geeft het aantal permutaties terug voor een gegeven aantal objecten (met herhalingen) dat kan worden geselecteerd uit het totaal aantal objecten || ||
|-
!scope="row"|PHI
| Geeft de waarde van de dichtheidsfunctie (density) terug voor een standaard normale verdeling || ||
|-
!scope="row"|POISSON.DIST
| Geeft de Poisson-verdeling terug || ||
|-
!scope="row"|PROB
| Geeft de kans terug dat waarden in een bereik tussen twee limieten liggen || ||
|-
!scope="row"|QUARTILE.EXC
| Geeft het kwartiel van de dataset terug, gebaseerd op percentielwaarden van 0..1, exclusief || ||
|-
!scope="row"|QUARTILE.INC
| Geeft het kwartiel van een dataset terug || ||
|-
!scope="row"|RANK.AVG
| Geeft de rangorde van een getal in een lijst van getallen terug; dubbele waarden krijgen de gemiddelde rang || ||
|-
!scope="row"|RANK.EQ
| Geeft de rangorde van een getal in een lijst van getallen terug; dubbele waarden krijgen dezelfde rangorde || ||
|-
!scope="row"|RSQ
| Geeft het kwadraat van de Pearson-productmoment correlatiecoëfficiënt terug || ||
|-
!scope="row"|SKEW
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the skewness of a distribution</span> || ||
|-
!scope="row"|SKEW.P
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the skewness of a distribution based on a population: a characterization of the degree of asymmetry of a distribution around its mean</span> || ||
|-
!scope="row"|SLOPE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the slope of the linear regression line</span> || ||
|-
!scope="row"|SMALL
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the k-th smallest value in a data set</span> || ||
|-
!scope="row"|STANDARDIZE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns a normalized value</span> || ||
|-
!scope="row"|STDEV.P
| <span lang="en" dir="ltr" class="mw-content-ltr">Calculates standard deviation based on the entire population</span> || ||
|-
!scope="row"|STDEV.S
| <span lang="en" dir="ltr" class="mw-content-ltr">Estimates standard deviation based on a sample</span> || ||
|-
!scope="row"|STDEVA
| <span lang="en" dir="ltr" class="mw-content-ltr">Estimates standard deviation based on a sample, including numbers, text, and logical values</span> || ||
|-
!scope="row"|STDEVPA
| <span lang="en" dir="ltr" class="mw-content-ltr">Calculates standard deviation based on the entire population, including numbers, text, and logical values</span> || ||
|-
!scope="row"|STEYX
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the standard error of the predicted y-value for each x in the regression</span> || ||
|-
!scope="row"|T.DIST
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Percentage Points (probability) for the Student t-distribution</span> || ||
|-
!scope="row"|T.DIST.2T
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Percentage Points (probability) for the Student t-distribution</span> || ||
|-
!scope="row"|T.DIST.RT
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Student's t-distribution</span> || ||
|-
!scope="row"|T.INV
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the t-value of the Student's t-distribution as a function of the probability and the degrees of freedom</span> || ||
|-
!scope="row"|T.INV.2T
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the inverse of the Student's t-distribution</span> || ||
|-
!scope="row"|TREND
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns values along a linear trend</span> || ||
|-
!scope="row"|TRIMMEAN
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the mean of the interior of a data set</span> || ||
|-
!scope="row"|T.TEST
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the probability associated with a Student's t-test</span> || ||
|-
!scope="row"|VAR.P
| <span lang="en" dir="ltr" class="mw-content-ltr">Calculates variance based on the entire population</span> || ||
|-
!scope="row"|VAR.S
| <span lang="en" dir="ltr" class="mw-content-ltr">Estimates variance based on a sample</span> || ||
|-
!scope="row"|VARA
| <span lang="en" dir="ltr" class="mw-content-ltr">Estimates variance based on a sample, including numbers, text, and logical values</span> || ||
|-
!scope="row"|VARPA
| <span lang="en" dir="ltr" class="mw-content-ltr">Calculates variance based on the entire population, including numbers, text, and logical values</span> || ||
|-
!scope="row"|WEIBULL.DIST
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Weibull distribution</span> || ||
|-
!scope="row"|Z.TEST
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the one-tailed probability-value of a z-test</span> || ||
|}
<span id="Text"></span>
== Tekst ==
{| class="wikitable collapsible sortable"
|+Lijst van tekst Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|ARRAYTOTEXT
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns an array of text values from any specified range</span> || ||
|-
!scope="row"|ASC
| <span lang="en" dir="ltr" class="mw-content-ltr">Changes full-width (double-byte) English letters or katakana within a character string to half-width (single-byte) characters</span> || ||
|-
!scope="row"|BAHTTEXT
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts a number to text, using the ß (baht) currency format</span> || ||
|-
!scope="row"|CHAR
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the character specified by the code number</span> || ||
|-
!scope="row"|CLEAN
| <span lang="en" dir="ltr" class="mw-content-ltr">Removes all nonprintable characters from text</span> || ||
|-
!scope="row"|CODE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns a numeric code for the first character in a text string</span> || ||
|-
!scope="row"|CONCAT
| <span lang="en" dir="ltr" class="mw-content-ltr">Combines the text from multiple ranges and/or strings, but it doesn't provide the delimiter or IgnoreEmpty arguments.</span> || {{Z+|Z10000}} || <span lang="en" dir="ltr" class="mw-content-ltr">WF only takes two strings</span>
|-
!scope="row"|CONCATENATE
| <span lang="en" dir="ltr" class="mw-content-ltr">Joins several text items into one text item</span> || {{Z+|Z10000}} ||
|-
!scope="row"|DBCS
| <span lang="en" dir="ltr" class="mw-content-ltr">Changes half-width (single-byte) English letters or katakana within a character string to full-width (double-byte) characters</span> || ||
|-
!scope="row"|DOLLAR
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts a number to text, using the $ (dollar) currency format</span> || ||
|-
!scope="row"|EXACT
| <span lang="en" dir="ltr" class="mw-content-ltr">Checks to see if two text values are identical</span> || {{Z+|Z866}} ||
|-
!scope="row"|FIND, FINDBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Finds one text value within another (case-sensitive)</span> || ||
|-
!scope="row"|FIXED
| <span lang="en" dir="ltr" class="mw-content-ltr">Formats a number as text with a fixed number of decimals</span> || ||
|-
!scope="row"|JIS
| <span lang="en" dir="ltr" class="mw-content-ltr">Changes half-width (single-byte) characters within a string to full-width (double-byte) characters</span> || ||
|-
!scope="row"|LEFT, LEFTBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the leftmost characters from a text value</span> || ||
|-
!scope="row"|LEN, LENBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the number of characters in a text string</span> || {{Z+|Z11040}} ||
|-
!scope="row"|LOWER
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts text to lowercase</span> || {{Z+|Z10047}} ||
|-
!scope="row"|MID, MIDBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns a specific number of characters from a text string starting at the position you specify</span> || ||
|-
!scope="row"|NUMBERVALUE
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts text to number in a locale-independent manner</span> || ||
|-
!scope="row"|PHONETIC
| <span lang="en" dir="ltr" class="mw-content-ltr">Extracts the phonetic (furigana) characters from a text string</span> || ||
|-
!scope="row"|PROPER
| <span lang="en" dir="ltr" class="mw-content-ltr">Capitalizes the first letter in each word of a text value</span> || {{Z+|Z10251}} ||
|-
!scope="row"|REPLACE, REPLACEBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Replaces characters within text</span> || ||
|-
!scope="row"|REPT
| <span lang="en" dir="ltr" class="mw-content-ltr">Repeats text a given number of times</span> || {{Z+|Z10911}} ||
|-
!scope="row"|RIGHT, RIGHTBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the rightmost characters from a text value</span> || ||
|-
!scope="row"|SEARCH, SEARCHBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Finds one text value within another (not case-sensitive)</span> || ||
|-
!scope="row"|SUBSTITUTE
| <span lang="en" dir="ltr" class="mw-content-ltr">Substitutes new text for old text in a text string</span> || {{Z+|Z10075}} ||
|-
!scope="row"|T
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts its arguments to text</span> || ||
|-
!scope="row"|TEXT
| <span lang="en" dir="ltr" class="mw-content-ltr">Formats a number and converts it to text</span> || {{Z+|Z13713}} ||
|-
!scope="row"|TEXTAFTER
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns text that occurs after given character or string</span> || {{Z+|Z11412}} {{Z+|Z11416}} || <span lang="en" dir="ltr" class="mw-content-ltr">Excel has parameters to choose last (or Nth)</span>
|-
!scope="row"|TEXTBEFORE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns text that occurs before a given character or string</span> || {{Z+|Z11418}} {{Z+|Z11422}} || <span lang="en" dir="ltr" class="mw-content-ltr">Excel has parameters to choose last (or Nth)</span>
|-
!scope="row"|TEXTJOIN
| <span lang="en" dir="ltr" class="mw-content-ltr">Combines the text from multiple ranges and/or strings</span> || ||
|-
!scope="row"|TEXTSPLIT
| <span lang="en" dir="ltr" class="mw-content-ltr">Splits text strings by using column and row delimiters</span> || ||
|-
!scope="row"|TRIM
| <span lang="en" dir="ltr" class="mw-content-ltr">Removes spaces from text</span> || {{Z+|Z10079}} ||
|-
!scope="row"|UNICHAR
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Unicode character that is references by the given numeric value</span> || {{Z+|Z11534}} ||
|-
!scope="row"|UNICODE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the number (code point) that corresponds to the first character of the text</span> || {{Z+|Z11515}} ||
|-
!scope="row"|UPPER
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts text to uppercase</span> || {{Z+|Z10018}} ||
|-
!scope="row"|VALUE
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts a text argument to a number</span> || ||
|-
!scope="row"|VALUETOTEXT
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns text from any specified value</span> || ||
|-
!scope="row"|ENCODEURL
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns a URL-encoded string</span> || {{Z+|Z10761}} ||
|-
!scope="row"|FILTERXML
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns specific data from the XML content by using the specified XPath</span> || ||
|-
!scope="row"|WEBSERVICE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns data from a web service.</span>
|
|
|}
[[Category:Lists of functions]]
a8kakhsm2y2vqahxvg9w5yw257l9llg
307287
307285
2026-09-01T19:51:11Z
HanV
6833
Created page with "Geeft de scheefheid van een verdeling terug"
307287
wikitext
text/x-wiki
<languages/>
{{w|Microsoft Excel}} functies omvatten de volgende categorieën.
Deze pagina vermeldt Excel-functies als ze een bijbehorende [[Special:MyLanguage/Wikifunctions:Function model|WikiFuncties functie]] hebben.
<span id="Add-in_and_automation"></span>
== Interne en Automatisering ==
{| class="wikitable collapsible sortable"
|+Lijst van interne en automatiseringsfuncties van Excel
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|CALL
| Aanroep van een procedure in een dynamische link-bibliotheek of codebron || ||
|-
!scope="row"|EUROCONVERT
| Zet een getal om euro's, een getal van euro's omzetten naar een munt van een eurolid, of een getal van de ene munt van een eurolid naar een andere door de euro als tussenpersoon te gebruiken (triangulatie). || ||
|-
!scope="row"|REGISTER.ID
| Geeft de register-ID terug van de gespecificeerde dynamische link-bibliotheek (DLL) of codebron die eerder is geregistreerd || ||
|}
<span id="Compatibility"></span>
== Compatibiliteit ==
{| class="wikitable collapsible sortable"
|+Lijst van compatibiliteit Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|BETADIST
| Geeft de bèta-cumulatieve verdelingsfunctie terug || ||
|-
!scope="row"|BETAINV
| Geeft de inverse van de cumulatieve verdelingsfunctie terug voor een gespecificeerde bètaverdeling || ||
|-
!scope="row"|BINOMDIST
| Geeft de binomiale verdelingskans van de individuele term terug || ||
|-
!scope="row"|CEILING
| Rond een getal af naar het dichtstbijzijnde geheel getal of naar het dichtstbijzijnde veelvoud van significantie || ||
|-
!scope="row"|CHIDIST
| Geeft de eenzijdige kans van de chi-kwadraatverdeling terug || ||
|-
!scope="row"|CHIINV
| Geeft de inverse van de eenzijdige kans van de chi-kwadraatverdeling terug || ||
|-
!scope="row"|CHITEST
| Geeft de test voor onafhankelijkheid terug || ||
|-
!scope="row"|CONFIDENCE
| Geeft het betrouwbaarheidsinterval terug voor een populatiegemiddelde || ||
|-
!scope="row"|COVAR
| Geeft covariantie terug, het gemiddelde van de producten van gepaarde afwijkingen || ||
|-
!scope="row"|CRITBINOM
| Geeft de kleinste waarde terug waarvoor de cumulatieve binomiale verdeling kleiner is dan of gelijk aan een criteriumwaarde || ||
|-
!scope="row"|EXPONDIST
| Geeft de exponentiële verdeling terug || ||
|-
!scope="row"|FDIST
| Geeft de F kansverdeling terug || ||
|-
!scope="row"|FINV
| Geeft de inverse van de F-kansverdeling terug || ||
|-
!scope="row"|FLOOR
| Rondt een getal naar beneden af, richting nul || {{Z+|Z20032}}
{{Z+|Z20841}}
|
|-
!scope="row"|FTEST
| Geeft het resultaat van een F-test terug || ||
|-
!scope="row"|GAMMADIST
| Geeft de gamma-verdeling terug || ||
|-
!scope="row"|GAMMAINV
| Geeft de inverse van de cumulatieve gammaverdeling terug || ||
|-
!scope="row"|HYPGEOMDIST
| Geeft de hypergeometrische verdeling terug || ||
|-
!scope="row"|LOGINV
| Geeft de inverse van de lognormale cumulatieve verdeling terug || ||
|-
!scope="row"|LOGNORMDIST
| Geeft de cumulatieve lognormale verdeling terug || ||
|-
!scope="row"|MODE
| Geeft de meest voorkomende waarde in een dataset terug || {{Z+|Z21851}} ||
|-
!scope="row"|NEGBINOMDIST
| Geeft de negatieve binomiale verdeling terug || ||
|-
!scope="row"|NORMDIST
| Geeft de normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORM.INV
| Geeft de inverse van de normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORMSDIST
| Geeft de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORMSINV
| Geeft de inverse van de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|PERCENTILE
| Geeft het k-de percentiel van waarden in een bereik terug || ||
|-
!scope="row"|PERCENTRANK
| Geeft de procentuele rang van een waarde in een dataset terug || ||
|-
!scope="row"|POISSON
| Geeft de Poisson-verdeling terug || ||
|-
!scope="row"|QUARTILE
| Geeft het kwartiel van een dataset terug || ||
|-
!scope="row"|RANK
| Geeft de rangorde van een getal in een lijst van getallen terug || ||
|-
!scope="row"|STDEV
| Schatting van standaarddeviatie op basis van een steekproef || ||
|-
!scope="row"|STDEVP
| Berekent de standaarddeviatie op basis van de gehele populatie || ||
|-
!scope="row"|TDIST
| Geeft de Student's t-verdeling terug || ||
|-
!scope="row"|TINV
| Geeft de inverse van de Student's t-verdeling terug || ||
|-
!scope="row"|TTEST
| Geeft de kans terug die hoort bij de Student's t-test || ||
|-
!scope="row"|VAR
| Schatting van de variantie op basis van een steekproef || ||
|-
!scope="row"|VARP
| Berekent de variantie op basis van de gehele populatie || ||
|-
!scope="row"|WEIBULL
| Berekent de variantie op basis van de gehele populatie, inclusief getallen, tekst en logische waarden || ||
|-
!scope="row"|ZTEST
| Geeft de eenzijdige kanswaarde van een z-test terug || ||
|}
== Cube ==
{| class="wikitable collapsible sortable"
|+Lijst van Cube Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|CUBEKPIMEMBER
| Geeft een naam, eigenschap en maatstaf (Key Performance Indicator) (KPI) terug en toont de naam en eigenschap in de cel. Een KPI is een kwantificeerbare maatstaf, zoals de maandelijkse brutowinst of het kwartaalomzet van medewerkers, die wordt gebruikt om de prestaties van een organisatie te monitoren. || ||
|-
!scope="row"|CUBEMEMBER
| Geeft een lid of tupel terug in een cube-hiërarchie. Gebruik om te valideren dat het lid of de tupel in de cube bestaat. || ||
|-
!scope="row"|CUBEMEMBERPROPERTY
| Geeft de waarde van een lideigenschap in de cube terug. Gebruik om te valideren dat er een lidnaam in de cube bestaat en om de gespecificeerde eigenschap voor dit lid terug te geven. || ||
|-
!scope="row"|CUBERANKEDMEMBER
| Geeft het n-de, of gerangschikte, lid in een set terug. Gebruik het om één of meer elementen in een set op te halen, zoals de beste verkoper of de top 10 studenten. || ||
|-
!scope="row"|CUBESET
| Definieert een berekende set van leden of tupels door een set-expressie naar de cube op de server te sturen, die de set aanmaakt en die set vervolgens teruggeeft aan Microsoft Office Excel. || ||
|-
!scope="row"|CUBESETCOUNT
| Geeft het aantal items in een set terug. || ||
|-
!scope="row"|CUBEVALUE
| Geeft een geaggregeerde waarde terug van een cube. || ||
|}
== Database ==
{| class="wikitable collapsible sortable"
|+Lijst van Excel-databasefuncties
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|DAVERAGE
| Geeft het gemiddelde van geselecteerde database-items terug || ||
|-
!scope="row"|DCOUNT
| Telt de cellen die getallen bevatten in een database || ||
|-
!scope="row"|DCOUNTA
| Telt niet-lege cellen in een database || ||
|-
!scope="row"|DGET
| Haalt uit een database een enkel record dat voldoet aan de gespecificeerde criteria || ||
|-
!scope="row"|DMAX
| Geeft de maximale waarde terug uit geselecteerde database-gegevens || ||
|-
!scope="row"|DMIN
| Geeft de minimale waarde terug uit geselecteerde database-gegevens || ||
|-
!scope="row"|DPRODUCT
| Vermenigvuldigt de waarden in een bepaald veld van records die overeenkomen met de criteria in een database || ||
|-
!scope="row"|DSTDEV
| De standaardafwijking wordt geschat op basis van een steekproef van geselecteerde database-gegevens || ||
|-
!scope="row"|DSTDEVP
| Berekent de standaardafwijking op basis van de gehele populatie van geselecteerde database-gegevens || ||
|-
!scope="row"|DSUM
| Voegt de nummers toe in de veldkolom van database-gegevens die overeenkomen met de criteria || ||
|-
!scope="row"|DVAR
| Schat de variantie op basis van een steekproef uit geselecteerde database-gegevens || ||
|-
!scope="row"|DVARP
| Berekent variantie op basis van de gehele populatie van geselecteerde database-gegevens || ||
|}
<span id="Date_and_time"></span>
== Datum en tijd ==
{| class="wikitable collapsible sortable"
|+Lijst van datum en tijd Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|DATE
| Geeft het serienummer van een bepaalde datum terug || ||
|-
!scope="row"|DATEDIF
| Berekent het aantal dagen, maanden of jaren tussen twee data. Deze functie is nuttig in formules waarbij u een leeftijd moet berekenen. || ||
|-
!scope="row"|DATEVALUE
| Zet een datum in de vorm van tekst om in een serienummer || ||
|-
!scope="row"|DAY
| Zet een serienummer om in een dag van de maand || ||
|-
!scope="row"|DAYS
| Geeft het aantal dagen tussen twee datums terug || ||
|-
!scope="row"|DAYS360
| Berekent het aantal dagen tussen twee datums op basis van een jaar van 360-dagen || ||
|-
!scope="row"|EDATE
| Geeft het serienummer van de datum terug, dat het aangegeven aantal maanden vóór of na de startdatum is || ||
|-
!scope="row"|EOMONTH
| Geeft het serienummer van de laatste dag van de maand vóór of na een bepaald aantal maanden || ||
|-
!scope="row"|HOUR
| Zet een serienummer om in een uur || ||
|-
!scope="row"|ISOWEEKNUM
| Geeft het nummer van het ISO-weeknummer van het jaar terug voor een bepaalde datum || ||
|-
!scope="row"|MINUTE
| Zet een serienummer om in een minuut || ||
|-
!scope="row"|MONTH
| Zet een serienummer om in een maand || ||
|-
!scope="row"|NETWORKDAYS
| Geeft het aantal hele werkdagen tussen twee datums terug || ||
|-
!scope="row"|NETWORKDAYS.INTL
| Geeft het aantal hele werkdagen tussen twee datums terug met behulp van parameters om aan te geven welke en hoeveel dagen weekenddagen zijn || ||
|-
!scope="row"|NOW
| Geeft het serienummer van de huidige datum en tijd terug || ||
|-
!scope="row"|SECOND
| Zet een serienummer om in een seconde || ||
|-
!scope="row"|TIME
| Geeft het serienummer van een bepaald tijdstip terug || ||
|-
!scope="row"|TIMEVALUE
| Zet een tijd in de vorm van tekst om in een serienummer || ||
|-
!scope="row"|TODAY
| Geeft het serienummer van de datum van vandaag terug. || ||
|-
!scope="row"|WEEKDAY
| Zet een serienummer om in een dag van de week || {{Z+|Z17540}} || Heeft Dag, Maand en Jaar nodig in plaats van een serienummer
|-
!scope="row"|WEEKNUM
| Zet een serienummer om in een nummer dat numeriek aangeeft waar de week ligt met een jaar || ||
|-
!scope="row"|WORKDAY
| Geeft het serienummer van de datum voor of na een bepaald aantal werkdagen terug. || ||
|-
!scope="row"|WORKDAY.INTL
| Geeft het serienummer van de datum voor of na een bepaald aantal werkdagen terug met behulp van parameters die aangeven welke en hoeveel dagen weekenddagen zijn || ||
|-
!scope="row"|YEAR
| Zet een serienummer om in een jaar || ||
|-
!scope="row"|YEARFRAC
| Geeft het jaardeel terug dat staat voor het aantal hele dagen tussen 'start_date' en 'end_date' || ||
|}
<span id="Engineering"></span>
== Technisch ==
{| class="wikitable collapsible sortable"
|+Lijst van technische Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|BESSELI
| Geeft de aangepaste Besselfunctie In(x) terug || ||
|-
!scope="row"|BESSELJ
| Geeft de Besselfunctie Jn(x) terug || ||
|-
!scope="row"|BESSELK
| Geeft de aangepaste Besselfunctie Kn(x) terug || ||
|-
!scope="row"|BESSELY
| Geeft de Besselfunctie Yn(x) terug || ||
|-
!scope="row"|BIN2DEC
| Zet een binair getal om in een decimaal getal || ||
|-
!scope="row"|BIN2HEX
| Zet een binair getal om in een hexadecimaal getal || ||
|-
!scope="row"|BIN2OCT
| Zet een binair getal om in een octaal nummer || ||
|-
!scope="row"|BITAND
| Geeft een 'Bitgewijs And' van twee getallen terug || ||
|-
!scope="row"|BITLSHIFT
| Geeft een getal terug dat met shift_amount bits naar links is verschoven || ||
|-
!scope="row"|BITOR
| Geeft een 'Bitgewijs OR' van 2 getallen terug || ||
|-
!scope="row"|BITRSHIFT
| Geeft een getal terug dat met shift_amount bits naar rechts is verschoven || ||
|-
!scope="row"|BITXOR
| Geeft een bitsgewijs 'Exclusieve OR' van twee getallen terug || ||
|-
!scope="row"|COMPLEX
| Zet reële en imaginaire coëfficiënten om in een complex getal || ||
|-
!scope="row"|CONVERT
| Zet een getal om van het ene meetstelsel naar het andere. || ||
|-
!scope="row"|DEC2BIN
| Zet een decimaal getal om in een binair getal || ||
|-
!scope="row"|DEC2HEX
| Zet een decimaal getal om in een hexadecimaal getal || ||
|-
!scope="row"|DEC2OCT
| Zet een decimaal getal om in een octaal getal || ||
|-
!scope="row"|DELTA
| Test of twee waarden gelijk zijn || ||
|-
!scope="row"|ERF
| Geeft de foutfunctie terug || ||
|-
!scope="row"|ERF.PRECISE
| Geeft de foutfunctie terug || ||
|-
!scope="row"|ERFC
| Geeft de complementaire foutfunctie terug || ||
|-
!scope="row"|ERFC.PRECISE
| Geeft de complementaire functie ERF terug geïntegreerd tussen x en oneindig || ||
|-
!scope="row"|GESTEP
| Test of een getal groter is dan een drempelwaarde || ||
|-
!scope="row"|HEX2BIN
| Zet een hexadecimaal getal om in een binair getal || ||
|-
!scope="row"|HEX2DEC
| Zet een hexadecimaal getal om in een decimaal getal || ||
|-
!scope="row"|HEX2OCT
| Zet een hexadecimaal getal om in een octaal getal || ||
|-
!scope="row"|IMABS
| Geeft de absolute waarde (modulus) van een complex getal terug || ||
|-
!scope="row"|IMAGINARY
| Geeft de imaginaire coëfficiënt van een complex getal terug || ||
|-
!scope="row"|IMARGUMENT
| Geeft het argument theta terug, een hoek uitgedrukt in radialen || ||
|-
!scope="row"|IMCONJUGATE
| Geeft het complex geconjugeerde van een complex getal terug || ||
|-
!scope="row"|IMCOS
| Geeft de cosinus van een complex getal terug || ||
|-
!scope="row"|IMCOSH
| Geeft de hyperbolische cosinus van een complex getal terug || ||
|-
!scope="row"|IMCOT
| Geeft de cotangens van een complex getal terug || ||
|-
!scope="row"|IMCSC
| Geeft de cosecans van een complex getal terug || ||
|-
!scope="row"|IMCSCH
| Geeft de hyperbolische cosecans van een complex getal terug || ||
|-
!scope="row"|IMDIV
| Geeft het quotiënt van twee complexe getallen terug || ||
|-
!scope="row"|IMEXP
| Geeft de exponentiële van een complex getal terug || ||
|-
!scope="row"|IMLN
| Geeft het natuurlijke logaritme van een complex getal terug || ||
|-
!scope="row"|IMLOG10
| Geeft de logaritme van basis-10 van een complex getal terug || ||
|-
!scope="row"|IMLOG2
| Geeft de logaritme van basis-2 van een complex getal terug || ||
|-
!scope="row"|IMPOWER
| Geeft een complex getal terug dat tot een geheel getal macht is verhoogd || ||
|-
!scope="row"|IMPRODUCT
| Geeft het product van complexe getallen terug || ||
|-
!scope="row"|IMREAL
| Geeft de reële coëfficiënt van een complex getal terug || ||
|-
!scope="row"|IMSEC
| Geeft de secans van een complex getal terug || ||
|-
!scope="row"|IMSECH
| Geeft de hyperbolische secans van een complex getal terug || ||
|-
!scope="row"|IMSIN
| Geeft de sinus van een complex getal terug || ||
|-
!scope="row"|IMSINH
| Geeft de hyperbolische sinus van een complex getal terug || ||
|-
!scope="row"|IMSQRT
| Geeft de wortel van een complex getal terug || ||
|-
!scope="row"|IMSUB
| Geeft het verschil terug tussen twee complexe getallen || ||
|-
!scope="row"|IMSUM
| Geeft de som van complexe getallen terug || ||
|-
!scope="row"|IMTAN
| Geeft de tangens van een complex getal terug || ||
|-
!scope="row"|OCT2BIN
| Zet een octaal getal om in een binair getal || ||
|-
!scope="row"|OCT2DEC
| Zet een octaal getal om in een decimaal getal || ||
|-
!scope="row"|OCT2HEX
| Zet een octaal getal om in een hexadecimaal getal || ||
|}
<span id="Financial"></span>
== Financieel ==
{| class="wikitable collapsible sortable"
|+Lijst van financiële Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|ACCRINT
| Retourneert de opgebouwde rente voor een zekerheid dat periodieke rente betaalt || ||
|-
!scope="row"|ACCRINTM
| Geeft de opgebouwde rente terug voor een zekerheid dat rente betaalt op een vervaldatum || ||
|-
!scope="row"|AMORDEGRC
| Geeft de afschrijving voor elke boekhoudperiode terug met behulp van een afschrijvingscoëfficiënt || ||
|-
!scope="row"|AMORLINC
| Geeft de afschrijving voor elke boekhoudperiode terug || ||
|-
!scope="row"|COUPDAYBS
| Geeft het aantal dagen terug vanaf het begin van de couponperiode tot de afwikkelingsdatum || ||
|-
!scope="row"|COUPDAYS
| Geeft het aantal dagen in de couponperiode terug waarin de afwikkelingsdatum is opgenomen || ||
|-
!scope="row"|COUPDAYSNC
| Geeft het aantal dagen terug van de afwikkelingsdatum tot de volgende coupondatum || ||
|-
!scope="row"|COUPNCD
| Geeft de volgende coupondatum na de afwikkelingsdatum terug || ||
|-
!scope="row"|COUPNUM
| Geeft het aantal coupons terug dat tussen de afwikkelingsdatum en de vervaldatum moet worden betaald || ||
|-
!scope="row"|COUPPCD
| Geeft de vorige coupondatum vóór de afwikkelingsdatum terug || ||
|-
!scope="row"|CUMIPMT
| Geeft de cumulatieve rente terug die tussen twee perioden is betaald || ||
|-
!scope="row"|CUMPRINC
| Geeft de cumulatieve hoofdsom terug die is betaald op een lening tussen twee periodes || ||
|-
!scope="row"|DB
| Geeft de afschrijving van een activa voor een bepaalde periode terug door gebruik te maken van de fixed-declining balansmethode || ||
|-
!scope="row"|DDB
| Geeft de afschrijving van een activa voor een bepaalde periode terug door gebruik te maken van de double-declining balansmethode of een andere methode die u specificeert || ||
|-
!scope="row"|DISC
| Geeft het discontopercentage voor een zekerheid terug || ||
|-
!scope="row"|DOLLARDE
| Zet een dollarprijs, uitgedrukt als een fractie, om in een dollarprijs, uitgedrukt als een decimaal getal || ||
|-
!scope="row"|DOLLARFR
| Zet een dollarprijs, uitgedrukt als een decimaal getal, om in een dollarprijs, uitgedrukt als een fractie || ||
|-
!scope="row"|DURATION
| Geeft de jaarlijkse looptijd van een zekerheid terug met periodieke rentebetalingen || ||
|-
!scope="row"|EFFECT
| Geeft de effectieve jaarlijkse rente terug || ||
|-
!scope="row"|FV
| Geeft de toekomstige waarde van een belegging terug || ||
|-
!scope="row"|FVSCHEDULE
| Geeft de toekomstige waarde van een initiële hoofdsom terug na het toepassen van een reeks samengestelde rentetarieven || ||
|-
!scope="row"|INTRATE
| Geeft de rente terug voor een volledig geïnvesteerde zekerheid || ||
|-
!scope="row"|IPMT
| Geeft de rentebetaling voor een investering voor een bepaalde periode terug || ||
|-
!scope="row"|IRR
| Geeft het interne rendement terug voor een reeks kasstromen || ||
|-
!scope="row"|ISPMT
| Berekent de rente die wordt betaald gedurende een specifieke investeringsperiode || ||
|-
!scope="row"|MDURATION
| Geeft de Macauley-aangepaste duur terug voor een zekerheid met een veronderstelde nominale waarde van $100 || ||
|-
!scope="row"|MIRR
| Geeft het interne rendement terug, waarbij positieve en negatieve kasstromen worden gefinancierd tegen verschillende rentes || ||
|-
!scope="row"|NOMINAL
| Geeft het jaarlijkse nominale rentepercentage terug || ||
|-
!scope="row"|NPER
| Geeft het aantal periodes voor een investering terug || ||
|-
!scope="row"|NPV
| Geeft de netto contante waarde van een investering terug op basis van een reeks periodieke kasstromen en een discontovoet || ||
|-
!scope="row"|ODDFPRICE
| Geeft de prijs per $100 nominale waarde van een zekerheid terug met een oneven eerste periode || ||
|-
!scope="row"|ODDFYIELD
| Geeft het rendement van een zekerheid terug met een oneven eerste periode || ||
|-
!scope="row"|ODDLPRICE
| Geeft de prijs per $100 nominale waarde van een zekerheid terug met een oneven laatste periode || ||
|-
!scope="row"|ODDLYIELD
| Geeft het rendement van een zekerheid terug met een oneven laatste periode || ||
|-
!scope="row"|PDURATION
| Geeft het aantal periodes terug dat een investering nodig heeft om een bepaalde waarde te bereiken || ||
|-
!scope="row"|PMT
| Retourneert de periodieke betaling voor een annuïteit || ||
|-
!scope="row"|PPMT
| Geeft de betaling van de hoofdsom voor een investering voor een bepaalde periode terug || ||
|-
!scope="row"|PRICE
| Geeft de prijs terug per nominale waarde van $100 van een zekerheid dat periodieke rente betaalt || ||
|-
!scope="row"|PRICEDISC
| Geeft de prijs per nominale waarde van $100 van een afgeprijsde zekerheid terug || ||
|-
!scope="row"|PRICEMAT
| Geeft de prijs per nominale waarde van $100 terug van een zekerheid dat rente betaalt bij vervaldatum || ||
|-
!scope="row"|PV
| Geeft de huidige waarde van een investering terug || ||
|-
!scope="row"|RATE
| Geeft het rentepercentage per periode van een annuïteit terug || ||
|-
!scope="row"|RECEIVED
| Retourneert het bedrag dat bij de vervaldatum is ontvangen voor een volledig geïnvesteerd zekerheid || ||
|-
!scope="row"|RRI
| Geeft een gelijkwaardige rente voor de groei van een investering || ||
|-
!scope="row"|SLN
| Geeft de rechtlijnige afschrijving van een activa voor één periode terug || ||
|-
!scope="row"|STOCKHISTORY
| Haalt historische gegevens op over een financieel instrument || ||
|-
!scope="row"|SYD
| Geeft de "sum-of-years" afschrijving van een activa voor een bepaalde periode terug || ||
|-
!scope="row"|TBILLEQ
| Geeft het obligatie-equivalente rendement voor een schatkistwissel terug || ||
|-
!scope="row"|TBILLPRICE
| Geeft de prijs per nominale waarde van $100 voor een schatkistwissel terug || ||
|-
!scope="row"|TBILLYIELD
| Geeft het rendement terug voor een schatkistwissel || ||
|-
!scope="row"|VDB
| Geeft de afschrijving van een activa terug voor een gespecificeerde of gedeeltelijke periode door gebruik te maken van een afnemende balansmethode || ||
|-
!scope="row"|XIRR
| Geeft het interne rendement terug voor een schema van kasstromen dat niet noodzakelijkerwijs periodiek is || ||
|-
!scope="row"|XNPV
| Geeft de netto contante waarde terug voor een schema van kasstromen dat niet noodzakelijkerwijs periodiek is || ||
|-
!scope="row"|YIELD
| Geeft het rendement terug op een zekerheid dat periodieke rente betaalt || ||
|-
!scope="row"|YIELDDISC
| Geeft de jaarlijkse opbrengst terug voor een gedisconteerde zekerheid; bijvoorbeeld een schatkistwissel || ||
|-
!scope="row"|YIELDMAT
| Geeft het jaarlijkse rendement terug van een zekerheid dat rente betaalt op een vervaldatum || ||
|}
<span id="Information"></span>
== Informatie ==
{| class="wikitable collapsible sortable"
|+Lijst van informatie Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|CELL
| Geeft informatie terug over de opmaak, locatie of inhoud van een cel || ||
|-
!scope="row"|ERROR.TYPE
| Geeft een getal terug dat overeenkomt met een fouttype || ||
|-
!scope="row"|INFO
| Geeft informatie terug over de huidige operationele omgeving || ||
|-
!scope="row"|ISBLANK
| Geeft TRUE terug als de waarde leeg is || {{Z+|Z10008}} ||
|-
!scope="row"|ISERR
| Geeft TRUE terug als de waarde een willekeurige foutwaarde is anders dan #N/A || ||
|-
!scope="row"|ISERROR
| Geeft TRUE terug als de waarde een willekeurige foutwaarde is || {{Z+|Z20107}} ||
|-
!scope="row"|ISEVEN
| Geeft TRUE terug als het getal even is || {{Z+|Z12480}} ||
|-
!scope="row"|ISFORMULA
| Geeft TRUE terug als er een verwijzing is naar een cel die een formule bevat || ||
|-
!scope="row"|ISLOGICAL
| Geeft TRUE terug als de waarde een logische waarde is || ||
|-
!scope="row"|ISNA
| Geeft TRUE terug als de waarde de #N/A-foutwaarde is || ||
|-
!scope="row"|ISNONTEXT
| Geeft TRUE terug als de waarde geen tekst is || ||
|-
!scope="row"|ISNUMBER
| Geeft TRUE als de waarde een getal is || {{Z+|Z10715}} ||
|-
!scope="row"|ISODD
| Geeft TRUE terug als het getal oneven is || {{Z+|Z12429}} ||
|-
!scope="row"|ISOMITTED
| Controleert of de waarde in een LAMBDA ontbreekt en geeft TRUE of FALSE terug || ||
|-
!scope="row"|ISREF
| Geeft TRUE terug als de waarde een referentie is || ||
|-
!scope="row"|ISTEXT
| Geeft TRUE terug als de waarde een tekst is || ||
|-
!scope="row"|N
| Geeft een waarde terug die is omgezet in een getal || ||
|-
!scope="row"|NA
| Geeft de foutwaarde #N/A terug || ||
|-
!scope="row"|SHEET
| Geeft het bladnummer van het gerefereerde blad terug || ||
|-
!scope="row"|SHEETS
| Geeft het aantal bladen in een referentie terug || ||
|-
!scope="row"|TYPE
| Geeft een getal terug dat het datatype van een waarde aangeeft || ||
|}
<span id="Logical"></span>
== Logica ==
{| class="wikitable collapsible sortable"
|+Lijst van logische Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|AND
| Geeft TRUE terug als al zijn argumenten TRUE zijn || {{Z+|Z10174}} ||
|-
!scope="row"|BYCOL
| Past een LAMBDA toe op elke kolom en geeft een array van de resultaten terug || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|BYROW
| Past een LAMBDA toe op elke rij en geeft een array van de resultaten terug || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|FALSE
| Geeft de logische waarde FALSE terug || {{Z+|Z10206}} ||
|-
!scope="row"|IF
| Specificeert een logische test om uit te voeren || {{Z+|Z802}}, {{Z+|Z11542}} ||
|-
!scope="row"|IFERROR
| Geeft een waarde terug die u specificeert als een formule evalueert naar een fout; geeft anders het resultaat van de formule terug || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|IFNA
| Geeft de door u opgegeven waarde terug als de expressie wordt opgelost naar #N/A, anders geeft het resultaat van de expressie terug || ||
|-
!scope="row"|IFS
| Controleert of aan één of meer voorwaarden is voldaan en geeft een waarde terug die overeenkomt met de eerste TRUE-voorwaarde. || {{Z+|Z19601}} ||
|-
!scope="row"|LAMBDA
| Maak aangepaste, herbruikbare functies en roept ze met een vriendelijke naam aan || {{Z+|Z8}} ||
|-
!scope="row"|LET
| Wijst een naam toe aan het resultaat van een berekening || ||
|-
!scope="row"|MAKEARRAY
| Geeft een berekende array van een gespecificeerde rij- en kolomgrootte terug door een LAMBDA toe te passen || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|MAP
| Geeft een array terug die wordt gevormd door elke waarde in de array(s) te koppelen naar een nieuwe waarde door een LAMBDA toe te passen om een nieuwe waarde te creëren || {{Z+|Z873}} ||
|-
!scope="row"|NOT
| Keert de logische waarde van zijn argument om || {{Z+|Z10216}} ||
|-
!scope="row"|OR
| Geeft TRUE terug als minstens een van de argumenten TRUE is || {{Z+|Z10184}} ||
|-
!scope="row"|REDUCE
| Reduceert een array tot een enkele waarde door een LAMBDA toe te passen op elke waarde en de totale waarde in de accumulator terug te geven || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|SCAN
| Scant een array door een LAMBDA toe te passen op elke waarde en geeft een array terug met elke tussenliggende waarde || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|SWITCH
| Evalueert een expressie aan de hand van een lijst met waarden en geeft het resultaat terug dat overeenkomt met de eerste overeenkomende waarde. Als er geen overeenkomenst is, kan een optionele standaardwaarde worden teruggegeven. || ||
|-
!scope="row"|TRUE
| Geeft de logische waarde TRUE terug || {{Z+|Z10210}} ||
|-
!scope="row"|XOR
| Geeft een logisch exclusieve OF alle argumenten terug || {{Z+|Z10237}} ||
|}
<span id="Lookup_and_reference"></span>
== Opzoeken en referentie ==
{| class="wikitable collapsible sortable"
|+Lijst van zoek- en referentiefuncties van Excel
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|VSTACK
| Voegt arrays verticaal en in volgorde toe om een groter array terug te geven || ||
|-
!scope="row"|WRAPCOLS
| Wikkelt de opgegeven rij of kolom met waarden in kolommen na een bepaald aantal elementen || ||
|-
!scope="row"|WRAPROWS
| Wikkelt de opgegeven rij of kolom met waarden in rijen na een bepaald aantal elementen || ||
|-
!scope="row"|ADDRESS
| Geeft een verwijzing als tekst terug naar een enkele cel in een werkblad || ||
|-
!scope="row"|AREAS
| Geeft het aantal velden in een referentie terug || ||
|-
!scope="row"|CHOOSE
| Kiest een waarde uit een lijst van waarden || ||
|-
!scope="row"|CHOOSECOLS
| Geeft de gespecificeerde kolommen terug uit een array || ||
|-
!scope="row"|CHOOSEROWS
| Geeft de gespecificeerde rijen terug uit een array || ||
|-
!scope="row"|COLUMN
| Geeft het kolomnummer van een referentie terug || ||
|-
!scope="row"|COLUMNS
| Geeft het aantal kolommen in een referentie terug || ||
|-
!scope="row"|DROP
| Sluit een bepaald aantal rijen of kolommen uit van het begin of einde van een array || ||
|-
!scope="row"|EXPAND
| Breidt een array uit of vult deze op tot gespecificeerde rij- en kolomafmetingen || ||
|-
!scope="row"|FILTER
| Filtert een reeks gegevens op basis van criteria die u definieert || ||
|-
!scope="row"|FORMULATEXT
| Geeft de formule op de gegeven referentie terug als tekst || ||
|-
!scope="row"|GETPIVOTDATA
| Retourneert gegevens die zijn opgeslagen in een draaitafelrapport (PivotTable) || ||
|-
!scope="row"|HLOOKUP
| Kijkt in de bovenste rij van een array en geeft de waarde van de aangegeven cel terug || ||
|-
!scope="row"|HSTACK
| Voegt arrays horizontaal en in volgorde toe om een groter array terug te geven || ||
|-
!scope="row"|HYPERLINK
| Maakt een snelkoppeling of sprong aan die een document opent dat is opgeslagen op een netwerkserver, een intranet of het internet || ||
|-
!scope="row"|IMAGE
| Geeft een afbeelding terug uit een gegeven bron || ||
|-
!scope="row"|INDEX
| Gebruikt een index om een waarde te kiezen uit een referentie of array || {{Z+|Z13397}} || Controleren Indexbase
|-
!scope="row"|INDIRECT
| Geeft een referentie terug die wordt aangegeven door een tekstwaarde || ||
|-
!scope="row"|LOOKUP
| Zoekt waarden op in een vector of array || {{Z+|Z13708}} || Controleer of het mogelijk is in arrays met meerdere kolommen.
|-
!scope="row"|MATCH
| Zoekt waarden op in een referentie of array || ||
|-
!scope="row"|OFFSET
| Geeft een referentie-offset terug ten opzichte van een gegeven referentie || ||
|-
!scope="row"|ROW
| Geeft het rijnummer van een referentie terug || ||
|-
!scope="row"|ROWS
| Geeft het aantal rijen in een referentie terug || ||
|-
!scope="row"|RTD
| Haalt realtime data op uit een programma dat COM-automatisering ondersteunt || ||
|-
!scope="row"|SORT
| Sorteert de inhoud van een bereik of een array || ||
|-
!scope="row"|SORTBY
| Sorteert de inhoud van een bereik of array op basis van de waarden in een overeenkomstige bereik of array || ||
|-
!scope="row"|TAKE
| Geeft een gespecificeerd aantal aaneengesloten rijen of kolommen terug vanaf het begin of einde van een array || ||
|-
!scope="row"|TOCOL
| Geeft het array terug in één kolom || ||
|-
!scope="row"|TOROW
| Geeft het array terug in één rij || ||
|-
!scope="row"|TRANSPOSE
| Geeft het array terug waarbij de rijen en kolommen omgedraaid zijn. || ||
|-
!scope="row"|UNIQUE
| Geeft een lijst van unieke waarden terug in een lijst of bereik || ||
|-
!scope="row"|VLOOKUP
| Kijkt in de eerste kolom van een array en beweegt over de rij om de waarde van een cel terug te geven || ||
|-
!scope="row"|XLOOKUP
| Zoekt in een bereik of array, en geeft een item terug dat overeenkomt met de eerste gevonden match. Als er geen match bestaat, kan XLOOKUP de dichtstbijzijnde (benaderende) match teruggeven. || ||
|-
!scope="row"|XMATCH
| Geeft de relatieve positie van een item in een array of bereik van cellen terug. || ||
|}
<span id="Math_and_trigonometry"></span>
== Wiskunde en trigonometrie ==
{| class="wikitable collapsible sortable"
|+Lijst van Wiskunde en trigonometrie Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|ABS
| Geeft de absolute waarde van een getal terug || {{Z+|Z11235}} ||
|-
!scope="row"|ACOS
| Geeft de arccosinus van een getal terug || {{Z+|Z12497}} ||
|-
!scope="row"|ACOSH
| Geeft de inverse hyperbolische cosinus van een getal terug || {{Z+|Z12500}} ||
|-
!scope="row"|ACOT
| Geeft de arccotangent van een getal terug || ||
|-
!scope="row"|ACOTH
| Geeft de hyperbolische arccotangent van een getal terug || ||
|-
!scope="row"|AGGREGATE
| Geeft een aggregaat terug in een lijst of database || ||
|-
!scope="row"|ARABIC
| Zet een Romeins getal om in een gewoon getal || {{Z+|Z11023}} ||
|-
!scope="row"|ASIN
| Geeft de arcsinus van een getal terug || {{Z+|Z12505}} ||
|-
!scope="row"|ASINH
| Geeft de inverse hyperbolische sinus van een getal terug || {{Z+|Z12509}} ||
|-
!scope="row"|ATAN
| Geeft de arctangens van een getal terug || ||
|-
!scope="row"|ATAN2
| Geeft de arctangens terug van x- en y-coördinaten || ||
|-
!scope="row"|ATANH
| Geeft de inverse hyperbolische tangens van een getal terug || ||
|-
!scope="row"|BASE
| Zet een getal om in een tekstrepresentatie met de gegeven radix (basis) || ||
|-
!scope="row"|CEILING.MATH
| Rond een getal naar boven af op het dichtstbijzijnde geheel getal of naar het dichtstbijzijnde veelvoud van significantie || ||
|-
!scope="row"|CEILING.PRECISE
| Rond een getal af op het dichtstbijzijnde geheel getal of op het dichtstbijzijnde veelvoud van significantie. Ongeacht het teken van het getal wordt het getal afgerond. || ||
|-
!scope="row"|COMBIN
| Geeft het aantal combinaties terug voor een gegeven aantal objecten || ||
|-
!scope="row"|COMBINA
| Geeft het aantal combinaties (met herhalingen) terug voor een gegeven aantal items || ||
|-
!scope="row"|COS
| Geeft de cosinus van een getal terug || {{Z+|Z12473}}
|
|-
!scope="row"|COSH
| Geeft de hyperbolische cosinus van een getal terug || ||
|-
!scope="row"|COT
| Geeft de hyperbolische cosinus van een getal terug || ||
|-
!scope="row"|COTH
| Geeft de cotangens van een hoek terug || ||
|-
!scope="row"|CSC
| Geeft de cosecant van een hoek terug || ||
|-
!scope="row"|CSCH
| Geeft de hyperbolische cosecant van een hoek terug || ||
|-
!scope="row"|DECIMAL
| Zet een tekstweergave van een getal in een gegeven basis om in een decimaal getal || ||
|-
!scope="row"|DEGREES
| Zet radialen om in graden || ||
|-
!scope="row"|EVEN
| Rond een getal af naar het dichtstbijzijnde even geheel getal || ||
|-
!scope="row"|EXP
| Geeft e terug die wordt verhoogd tot de macht van een gegeven getal || ||
|-
!scope="row"|FACT
| Geeft de faculteit van een getal terug || ||
|-
!scope="row"|FACTDOUBLE
| Geeft de dubbele faculteit van een getal terug || ||
|-
!scope="row"|FLOOR.MATH
| Rond een getal naar beneden af op het dichtstbijzijnde geheel getal of naar het dichtstbijzijnde veelvoud van significantie || ||
|-
!scope="row"|FLOOR.PRECISE
| Rond een getal af op het dichtstbijzijnde geheel getal of op het dichtstbijzijnde veelvoud van significantie. Ongeacht het teken van het getal wordt het getal afgerond. || ||
|-
!scope="row"|GCD
| Geeft de grootste gemene deler terug || ||
|-
!scope="row"|INT
| Rond een getal af naar beneden naar het dichtstbijzijnde geheel getal || ||
|-
!scope="row"|ISO.CEILING
| Geeft een getal terug dat wordt afgerond naar het dichtstbijzijnde geheel getal of naar het dichtstbijzijnde veelvoud van significantie || ||
|-
!scope="row"|LCM
| Geeft het kleinste gemeenschappelijke veelvoud terug || ||
|-
!scope="row"|LN
| Geeft het natuurlijke logaritme van een getal terug || ||
|-
!scope="row"|LOG
| Geeft de logaritme van een getal terug met een opgegeven basisgetal || ||
|-
!scope="row"|LOG10
| Geeft de logaritme van basis-10 van een getal terug || ||
|-
!scope="row"|MDETERM
| Geeft de matrixdeterminant van een array terug || ||
|-
!scope="row"|MINVERSE
| Geeft de matrixinverse van een array terug || ||
|-
!scope="row"|MMULT
| Geeft het matrixproduct van twee arrays terug || ||
|-
!scope="row"|MOD
| Geeft de rest terug uit een deling || {{Z+|Z12476}} ||
|-
!scope="row"|MROUND
| Geeft een getal terug dat wordt afgerond op het gewenste veelvoud || ||
|-
!scope="row"|MULTINOMIAL
| Geeft de som (multinomial) van een verzameling getallen terug || ||
|-
!scope="row"|MUNIT
| Geeft de eenheidsmatrix voor de gespecificeerde dimensie terug || ||
|-
!scope="row"|ODD
| Rond een getal af naar boven op het dichtstbijzijnde oneven geheel getal || ||
|-
!scope="row"|PI
| Geeft de waarde van Pi terug || {{Z+|Z20862}} ||
|-
!scope="row"|POWER
| Geeft het resultaat terug van een getal dat tot een macht is verhoogd || {{Z+|Z13647}} ||
|-
!scope="row"|PRODUCT
| Vermenigvuldigt zijn argumenten || {{Z+|Z10862}} ||
|-
!scope="row"|QUOTIENT
| Geeft het gehele deel terug van een deling || {{Z+|Z12522}} ||
|-
!scope="row"|RADIANS
| Zet graden om in radialen || ||
|-
!scope="row"|RAND
| Geeft een willekeurig getal tussen 0 en 1 terug || ||
|-
!scope="row"|RANDARRAY
| Geeft een reeks willekeurige getallen tussen 0 en 1 terug. U kunt echter het aantal rijen en kolommen aangeven om in te vullen, de minimale en maximale waarden en of u gehele getallen of decimalen wilt terug krijgen. || ||
|-
!scope="row"|RANDBETWEEN
| Geeft een willekeurig getal terug tussen de getallen die u heeft gespecificeerd || ||
|-
!scope="row"|ROMAN
| Zet een Arabisch getal om naar een Romeins getal, als tekst || {{Z+|Z11022}} ||
|-
!scope="row"|ROUND
| Rondt een getal af op een bepaald aantal cijfers achter de komma || ||
|-
!scope="row"|ROUNDDOWN
| Rondt een getal naar beneden af, richting nul || ||
|-
!scope="row"|ROUNDUP
| Rondt een getal naar boven af, weg van nul || ||
|-
!scope="row"|SEC
| Geeft de secant van een hoek terug || ||
|-
!scope="row"|SECH
| Geeft de hyperbolische secant van een hoek terug || ||
|-
!scope="row"|SEQUENCE
| Genereert een lijst met sequentiële getallen in een array, zoals 1, 2, 3, 4 || ||
|-
!scope="row"|SERIESSUM
| Geef de som terug van macht serie op basis van de formule || ||
|-
!scope="row"|SIGN
| Geeft het teken van een getal terug || ||
|-
!scope="row"|SIN
| Geeft de sinus van een hoek terug || ||
|-
!scope="row"|SINH
| Geeft de hyperbolische sinus van een getal terug || ||
|-
!scope="row"|SQRT
| Geeft een positieve wortel terug || ||
|-
!scope="row"|SQRTPI
| Geeft de wortel terug van (getal * pi) || ||
|-
!scope="row"|SUBTOTAL
| Geeft een subtotaal terug van een lijst of database || ||
|-
!scope="row"|SUM
| Telt de argumenten op || {{Z+|Z12720}} ||
|-
!scope="row"|SUMIF
| Voegt de cellen toe die gespecificeerd zijn volgens een bepaald criterium || ||
|-
!scope="row"|SUMIFS
| Voegt de cellen toe in een bereik dat aan meerdere criteria voldoet || ||
|-
!scope="row"|SUMPRODUCT
| Geeft de som van de producten van de overeenkomstige arraycomponenten terug. || ||
|-
!scope="row"|SUMSQ
| Geeft de som van de kwadraten van de argumenten terug || ||
|-
!scope="row"|SUMX2MY2
| Geeft de som terug van het verschil van kwadraten van overeenkomstige waarden in twee arrays || ||
|-
!scope="row"|SUMX2PY2
| Geeft de som terug van de som van de kwadraten van de overeenkomstige waarden in twee arrays || ||
|-
!scope="row"|SUMXMY2
| Geeft de som van kwadraten van verschillen van overeenkomstige waarden in twee arrays terug. || ||
|-
!scope="row"|TAN
| Geeft de tangens van een getal terug || ||
|-
!scope="row"|TANH
| Geeft de hyperbolische tangens van een getal terug || ||
|-
!scope="row"|TRUNC
| Kapt een getal af tot een geheel getal || ||
|}
<span id="Statistical"></span>
== Statistiek ==
{| class="wikitable collapsible sortable"
|+Lijst van statistiek Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|AVEDEV
| Geeft het gemiddelde van de absolute afwijkingen van datapunten van hun gemiddelde terug. || ||
|-
!scope="row"|AVERAGE
| Geeft het gemiddelde van zijn argumenten terug || ||
|-
!scope="row"|AVERAGEA
| Geeft het gemiddelde van zijn argumenten terug, inclusief getallen, tekst en logische waarden || ||
|-
!scope="row"|AVERAGEIF
| Geeft het gemiddelde (rekenkundig gemiddelde) terug van alle cellen in een bereik die aan een gegeven criterium voldoen || ||
|-
!scope="row"|AVERAGEIFS
| Geeft het gemiddelde (rekenkundig gemiddelde) terug van alle cellen die aan meerdere criteria voldoen. || ||
|-
!scope="row"|BETA.DIST
| Geeft de bèta-cumulatieve verdelingsfunctie terug || ||
|-
!scope="row"|BETA.INV
| Geeft de inverse van de cumulatieve verdelingsfunctie terug voor een gespecificeerde bètaverdeling || ||
|-
!scope="row"|BINOM.DIST
| Geeft de binomiale verdelingskans van de individuele term terug || ||
|-
!scope="row"|BINOM.DIST.RANGE
| Geeft de waarschijnlijkheid van een proefresultaat terug met behulp van een binaire verdeling || ||
|-
!scope="row"|BINOM.INV
| Geeft de kleinste waarde terug waarvoor de cumulatieve binomiale verdeling kleiner is dan of gelijk aan een criteriumwaarde || ||
|-
!scope="row"|CHISQ.DIST
| Geeft de cumulatieve beta-waarschijnlijkheid dichtheidsfunctie terug || ||
|-
!scope="row"|CHISQ.DIST.RT
| Geeft de eenzijdige kans van de chi-kwadraatverdeling terug || ||
|-
!scope="row"|CHISQ.INV
| Geeft de cumulatieve beta-waarschijnlijkheid dichtheidsfunctie terug || ||
|-
!scope="row"|CHISQ.INV.RT
| Geeft de inverse van de eenzijdige kans van de chi-kwadraatverdeling terug || ||
|-
!scope="row"|CHISQ.TEST
| Geeft de test voor onafhankelijkheid terug || ||
|-
!scope="row"|CONFIDENCE.NORM
| Geeft het betrouwbaarheidsinterval terug voor een populatiegemiddelde || ||
|-
!scope="row"|CONFIDENCE.T
| Geeft het vertrouwensinterval voor een bevolkingsgemiddelde terug, met behulp van de t-verdeling || ||
|-
!scope="row"|CORREL
| Geeft de correlatiecoëfficiënt tussen twee gegevenssets terug || ||
|-
!scope="row"|COUNT
| Telt het aantal getallen in de lijst met argumenten || ||
|-
!scope="row"|COUNTA
| Telt hoeveel waarden er zijn in de lijst met argumenten || ||
|-
!scope="row"|COUNTBLANK
| Telt het aantal lege cellen binnen een bereik || ||
|-
!scope="row"|COUNTIF
| Telt het aantal cellen binnen een bereik dat aan de gegeven criteria voldoet || ||
|-
!scope="row"|COUNTIFS
| Telt het aantal cellen binnen een bereik dat aan meerdere criteria voldoet || ||
|-
!scope="row"|COVARIANCE.P
| Geeft covariantie terug, het gemiddelde van de producten van gepaarde afwijkingen || ||
|-
!scope="row"|COVARIANCE.S
| Geeft de covariantie van de steekproef terug, het gemiddelde van de productafwijkingen voor elk datapuntpaar in twee datasets || ||
|-
!scope="row"|DEVSQ
| Geeft de som van kwadraten van afwijkingen terug. || ||
|-
!scope="row"|EXPON.DIST
| Geeft de exponentiële verdeling terug || ||
|-
!scope="row"|F.DIST
| Geeft de F-kansverdeling terug || ||
|-
!scope="row"|F.DIST.RT
| Geeft de F-kansverdeling terug || ||
|-
!scope="row"|F.INV
| Geeft de inverse van de F-kansverdeling terug || ||
|-
!scope="row"|F.INV.RT
| Geeft de inverse van de F-kansverdeling terug || ||
|-
!scope="row"|FISHER
| Geeft de Fisher-transformatie terug || ||
|-
!scope="row"|FISHERINV
| Geeft de inverse van de Fisher-transformatie terug || ||
|-
!scope="row"|FORECAST
| Geeft een waarde terug volgens een lineaire trend || ||
|-
!scope="row"|FORECAST.ETS
| Geeft een toekomstige waarde terug op basis van bestaande (historische) waarden door gebruik te maken van de AAA-versie van het Exponential Smoothing (ETS) algoritme || ||
|-
!scope="row"|FORECAST.ETS.CONFINT
| Geeft een betrouwbaarheidsinterval terug voor de prognosewaarde op de opgegeven streefdatum || ||
|-
!scope="row"|FORECAST.ETS.SEASONALITY
| Geeft de lengte van het repetitieve patroon terug dat Excel detecteert voor de opgegeven tijdreeks || ||
|-
!scope="row"|FORECAST.ETS.STAT
| Geeft een statistische waarde terug als resultaat van tijdreeksvoorspellingen || ||
|-
!scope="row"|FORECAST.LINEAR
| Geeft een toekomstige waarde terug op basis van bestaande waarden || ||
|-
!scope="row"|FREQUENCY
| Geeft een frequentieverdeling terug als een verticale array || ||
|-
!scope="row"|F.TEST
| Geeft het resultaat van een F-test terug || ||
|-
!scope="row"|GAMMA
| Geeft de waarde van de Gamma-functie terug || ||
|-
!scope="row"|GAMMA.DIST
| Geeft de gamma-verdeling terug || ||
|-
!scope="row"|GAMMA.INV
| Geeft de inverse van de cumulatieve gammaverdeling terug || ||
|-
!scope="row"|GAMMALN
| Geeft het natuurlijke logaritme van de gammafunctie, Γ(x) terug || ||
|-
!scope="row"|GAMMALN.PRECISE
| Geeft het natuurlijke logaritme van de gammafunctie, Γ(x) terug || ||
|-
!scope="row"|GAUSS
| Geeft 0,5 minder dan de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|GEOMEAN
| Geeft het geometrische gemiddelde terug || ||
|-
!scope="row"|GROWTH
| Geeft waarden terug langs een exponentiële trend || ||
|-
!scope="row"|HARMEAN
| Geeft het harmonische gemiddelde terug || ||
|-
!scope="row"|HYPGEOM.DIST
| Geeft de hypergeometrische verdeling terug || ||
|-
!scope="row"|INTERCEPT
| Geeft de interceptie terug van de lineaire regressielijn || ||
|-
!scope="row"|KURT
| Geeft de kurtosis van een dataset terug || ||
|-
!scope="row"|LARGE
| Geeft de k-de grootste waarde in een dataset terug || ||
|-
!scope="row"|LINEST
| Geeft de parameters volgens een lineaire trend terug || ||
|-
!scope="row"|LOGEST
| Geeft de parameters volgens een exponentiële trend terug || ||
|-
!scope="row"|LOGNORM.DIST
| Geeft de cumulatieve lognormale verdeling terug || ||
|-
!scope="row"|LOGNORM.INV
| Geeft de inverse van de lognormale cumulatieve verdeling terug || ||
|-
!scope="row"|MAX
| Geeft de maximale waarde in een lijst van argumenten terug || ||
|-
!scope="row"|MAXA
| Geeft de maximale waarde in een lijst met argumenten (inclusief getallen, tekst en logische waarden) terug || ||
|-
!scope="row"|MAXIFS
| Geeft de maximale waarde tussen cellen die zijn gespecificeerd door een bepaalde reeks voorwaarden of criteria, terug || ||
|-
!scope="row"|MEDIAN
| Geeft de mediaan van de gegeven getallen terug || ||
|-
!scope="row"|MIN
| Geeft de minimale waarde in een lijst van argumenten terug ||
* {{z+|Z19509}}
* {{Z+|Z21341}}
||
|-
!scope="row"|MINIFS
| Geeft de minimale waarde tussen cellen die zijn gespecificeerd door een bepaalde reeks voorwaarden of criteria, terug || ||
|-
!scope="row"|MINA
| Geeft de kleinste waarde in een lijst met argumenten (inclusief getallen, tekst en logische waarden) terug || ||
|-
!scope="row"|MODE.MULT
| Geeft een verticale array terug van de meest voorkomende, of repetitieve waarden in een array of databereik || ||
|-
!scope="row"|MODE.SNGL
| Geeft de meest voorkomende waarde in een dataset terug || ||
|-
!scope="row"|NEGBINOM.DIST
| Geeft de negatieve binomiale verdeling terug || ||
|-
!scope="row"|NORM.DIST
| Geeft de normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORMINV
| Geeft de inverse van de normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORM.S.DIST
| Geeft de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORM.S.INV
| Geeft de inverse van de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|PEARSON
| Geeft de Pearson-productmoment-correlatiecoëfficiënt terug || ||
|-
!scope="row"|PERCENTILE.EXC
| Geeft het k-de percentiel van waarden in een bereik terug, waarbij k in het bereik 0..1 ligt, exclusief || ||
|-
!scope="row"|PERCENTILE.INC
| Geeft het k-de percentiel van waarden in een bereik terug || ||
|-
!scope="row"|PERCENTRANK.EXC
| Geeft de rangorde van een waarde in een dataset terug als een percentage (0..1, exclusief) van de dataset || ||
|-
!scope="row"|PERCENTRANK.INC
| Geeft de procentuele rang van een waarde in een dataset terug || ||
|-
!scope="row"|PERMUT
| Geeft het aantal permutaties terug voor een gegeven aantal objecten || ||
|-
!scope="row"|PERMUTATIONA
| Geeft het aantal permutaties terug voor een gegeven aantal objecten (met herhalingen) dat kan worden geselecteerd uit het totaal aantal objecten || ||
|-
!scope="row"|PHI
| Geeft de waarde van de dichtheidsfunctie (density) terug voor een standaard normale verdeling || ||
|-
!scope="row"|POISSON.DIST
| Geeft de Poisson-verdeling terug || ||
|-
!scope="row"|PROB
| Geeft de kans terug dat waarden in een bereik tussen twee limieten liggen || ||
|-
!scope="row"|QUARTILE.EXC
| Geeft het kwartiel van de dataset terug, gebaseerd op percentielwaarden van 0..1, exclusief || ||
|-
!scope="row"|QUARTILE.INC
| Geeft het kwartiel van een dataset terug || ||
|-
!scope="row"|RANK.AVG
| Geeft de rangorde van een getal in een lijst van getallen terug; dubbele waarden krijgen de gemiddelde rang || ||
|-
!scope="row"|RANK.EQ
| Geeft de rangorde van een getal in een lijst van getallen terug; dubbele waarden krijgen dezelfde rangorde || ||
|-
!scope="row"|RSQ
| Geeft het kwadraat van de Pearson-productmoment correlatiecoëfficiënt terug || ||
|-
!scope="row"|SKEW
| Geeft de scheefheid van een verdeling terug || ||
|-
!scope="row"|SKEW.P
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the skewness of a distribution based on a population: a characterization of the degree of asymmetry of a distribution around its mean</span> || ||
|-
!scope="row"|SLOPE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the slope of the linear regression line</span> || ||
|-
!scope="row"|SMALL
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the k-th smallest value in a data set</span> || ||
|-
!scope="row"|STANDARDIZE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns a normalized value</span> || ||
|-
!scope="row"|STDEV.P
| <span lang="en" dir="ltr" class="mw-content-ltr">Calculates standard deviation based on the entire population</span> || ||
|-
!scope="row"|STDEV.S
| <span lang="en" dir="ltr" class="mw-content-ltr">Estimates standard deviation based on a sample</span> || ||
|-
!scope="row"|STDEVA
| <span lang="en" dir="ltr" class="mw-content-ltr">Estimates standard deviation based on a sample, including numbers, text, and logical values</span> || ||
|-
!scope="row"|STDEVPA
| <span lang="en" dir="ltr" class="mw-content-ltr">Calculates standard deviation based on the entire population, including numbers, text, and logical values</span> || ||
|-
!scope="row"|STEYX
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the standard error of the predicted y-value for each x in the regression</span> || ||
|-
!scope="row"|T.DIST
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Percentage Points (probability) for the Student t-distribution</span> || ||
|-
!scope="row"|T.DIST.2T
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Percentage Points (probability) for the Student t-distribution</span> || ||
|-
!scope="row"|T.DIST.RT
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Student's t-distribution</span> || ||
|-
!scope="row"|T.INV
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the t-value of the Student's t-distribution as a function of the probability and the degrees of freedom</span> || ||
|-
!scope="row"|T.INV.2T
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the inverse of the Student's t-distribution</span> || ||
|-
!scope="row"|TREND
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns values along a linear trend</span> || ||
|-
!scope="row"|TRIMMEAN
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the mean of the interior of a data set</span> || ||
|-
!scope="row"|T.TEST
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the probability associated with a Student's t-test</span> || ||
|-
!scope="row"|VAR.P
| <span lang="en" dir="ltr" class="mw-content-ltr">Calculates variance based on the entire population</span> || ||
|-
!scope="row"|VAR.S
| <span lang="en" dir="ltr" class="mw-content-ltr">Estimates variance based on a sample</span> || ||
|-
!scope="row"|VARA
| <span lang="en" dir="ltr" class="mw-content-ltr">Estimates variance based on a sample, including numbers, text, and logical values</span> || ||
|-
!scope="row"|VARPA
| <span lang="en" dir="ltr" class="mw-content-ltr">Calculates variance based on the entire population, including numbers, text, and logical values</span> || ||
|-
!scope="row"|WEIBULL.DIST
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Weibull distribution</span> || ||
|-
!scope="row"|Z.TEST
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the one-tailed probability-value of a z-test</span> || ||
|}
<span id="Text"></span>
== Tekst ==
{| class="wikitable collapsible sortable"
|+Lijst van tekst Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|ARRAYTOTEXT
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns an array of text values from any specified range</span> || ||
|-
!scope="row"|ASC
| <span lang="en" dir="ltr" class="mw-content-ltr">Changes full-width (double-byte) English letters or katakana within a character string to half-width (single-byte) characters</span> || ||
|-
!scope="row"|BAHTTEXT
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts a number to text, using the ß (baht) currency format</span> || ||
|-
!scope="row"|CHAR
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the character specified by the code number</span> || ||
|-
!scope="row"|CLEAN
| <span lang="en" dir="ltr" class="mw-content-ltr">Removes all nonprintable characters from text</span> || ||
|-
!scope="row"|CODE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns a numeric code for the first character in a text string</span> || ||
|-
!scope="row"|CONCAT
| <span lang="en" dir="ltr" class="mw-content-ltr">Combines the text from multiple ranges and/or strings, but it doesn't provide the delimiter or IgnoreEmpty arguments.</span> || {{Z+|Z10000}} || <span lang="en" dir="ltr" class="mw-content-ltr">WF only takes two strings</span>
|-
!scope="row"|CONCATENATE
| <span lang="en" dir="ltr" class="mw-content-ltr">Joins several text items into one text item</span> || {{Z+|Z10000}} ||
|-
!scope="row"|DBCS
| <span lang="en" dir="ltr" class="mw-content-ltr">Changes half-width (single-byte) English letters or katakana within a character string to full-width (double-byte) characters</span> || ||
|-
!scope="row"|DOLLAR
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts a number to text, using the $ (dollar) currency format</span> || ||
|-
!scope="row"|EXACT
| <span lang="en" dir="ltr" class="mw-content-ltr">Checks to see if two text values are identical</span> || {{Z+|Z866}} ||
|-
!scope="row"|FIND, FINDBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Finds one text value within another (case-sensitive)</span> || ||
|-
!scope="row"|FIXED
| <span lang="en" dir="ltr" class="mw-content-ltr">Formats a number as text with a fixed number of decimals</span> || ||
|-
!scope="row"|JIS
| <span lang="en" dir="ltr" class="mw-content-ltr">Changes half-width (single-byte) characters within a string to full-width (double-byte) characters</span> || ||
|-
!scope="row"|LEFT, LEFTBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the leftmost characters from a text value</span> || ||
|-
!scope="row"|LEN, LENBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the number of characters in a text string</span> || {{Z+|Z11040}} ||
|-
!scope="row"|LOWER
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts text to lowercase</span> || {{Z+|Z10047}} ||
|-
!scope="row"|MID, MIDBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns a specific number of characters from a text string starting at the position you specify</span> || ||
|-
!scope="row"|NUMBERVALUE
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts text to number in a locale-independent manner</span> || ||
|-
!scope="row"|PHONETIC
| <span lang="en" dir="ltr" class="mw-content-ltr">Extracts the phonetic (furigana) characters from a text string</span> || ||
|-
!scope="row"|PROPER
| <span lang="en" dir="ltr" class="mw-content-ltr">Capitalizes the first letter in each word of a text value</span> || {{Z+|Z10251}} ||
|-
!scope="row"|REPLACE, REPLACEBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Replaces characters within text</span> || ||
|-
!scope="row"|REPT
| <span lang="en" dir="ltr" class="mw-content-ltr">Repeats text a given number of times</span> || {{Z+|Z10911}} ||
|-
!scope="row"|RIGHT, RIGHTBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the rightmost characters from a text value</span> || ||
|-
!scope="row"|SEARCH, SEARCHBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Finds one text value within another (not case-sensitive)</span> || ||
|-
!scope="row"|SUBSTITUTE
| <span lang="en" dir="ltr" class="mw-content-ltr">Substitutes new text for old text in a text string</span> || {{Z+|Z10075}} ||
|-
!scope="row"|T
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts its arguments to text</span> || ||
|-
!scope="row"|TEXT
| <span lang="en" dir="ltr" class="mw-content-ltr">Formats a number and converts it to text</span> || {{Z+|Z13713}} ||
|-
!scope="row"|TEXTAFTER
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns text that occurs after given character or string</span> || {{Z+|Z11412}} {{Z+|Z11416}} || <span lang="en" dir="ltr" class="mw-content-ltr">Excel has parameters to choose last (or Nth)</span>
|-
!scope="row"|TEXTBEFORE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns text that occurs before a given character or string</span> || {{Z+|Z11418}} {{Z+|Z11422}} || <span lang="en" dir="ltr" class="mw-content-ltr">Excel has parameters to choose last (or Nth)</span>
|-
!scope="row"|TEXTJOIN
| <span lang="en" dir="ltr" class="mw-content-ltr">Combines the text from multiple ranges and/or strings</span> || ||
|-
!scope="row"|TEXTSPLIT
| <span lang="en" dir="ltr" class="mw-content-ltr">Splits text strings by using column and row delimiters</span> || ||
|-
!scope="row"|TRIM
| <span lang="en" dir="ltr" class="mw-content-ltr">Removes spaces from text</span> || {{Z+|Z10079}} ||
|-
!scope="row"|UNICHAR
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Unicode character that is references by the given numeric value</span> || {{Z+|Z11534}} ||
|-
!scope="row"|UNICODE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the number (code point) that corresponds to the first character of the text</span> || {{Z+|Z11515}} ||
|-
!scope="row"|UPPER
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts text to uppercase</span> || {{Z+|Z10018}} ||
|-
!scope="row"|VALUE
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts a text argument to a number</span> || ||
|-
!scope="row"|VALUETOTEXT
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns text from any specified value</span> || ||
|-
!scope="row"|ENCODEURL
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns a URL-encoded string</span> || {{Z+|Z10761}} ||
|-
!scope="row"|FILTERXML
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns specific data from the XML content by using the specified XPath</span> || ||
|-
!scope="row"|WEBSERVICE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns data from a web service.</span>
|
|
|}
[[Category:Lists of functions]]
qqna13bhh2eovr0z47hrke6h73yjprx
307289
307287
2026-09-01T19:51:30Z
HanV
6833
Created page with "Geeft de scheefheid van een verdeling terug op basis van een populatie: een karakterisering van de mate van asymmetrie van een verdeling rond haar gemiddelde"
307289
wikitext
text/x-wiki
<languages/>
{{w|Microsoft Excel}} functies omvatten de volgende categorieën.
Deze pagina vermeldt Excel-functies als ze een bijbehorende [[Special:MyLanguage/Wikifunctions:Function model|WikiFuncties functie]] hebben.
<span id="Add-in_and_automation"></span>
== Interne en Automatisering ==
{| class="wikitable collapsible sortable"
|+Lijst van interne en automatiseringsfuncties van Excel
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|CALL
| Aanroep van een procedure in een dynamische link-bibliotheek of codebron || ||
|-
!scope="row"|EUROCONVERT
| Zet een getal om euro's, een getal van euro's omzetten naar een munt van een eurolid, of een getal van de ene munt van een eurolid naar een andere door de euro als tussenpersoon te gebruiken (triangulatie). || ||
|-
!scope="row"|REGISTER.ID
| Geeft de register-ID terug van de gespecificeerde dynamische link-bibliotheek (DLL) of codebron die eerder is geregistreerd || ||
|}
<span id="Compatibility"></span>
== Compatibiliteit ==
{| class="wikitable collapsible sortable"
|+Lijst van compatibiliteit Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|BETADIST
| Geeft de bèta-cumulatieve verdelingsfunctie terug || ||
|-
!scope="row"|BETAINV
| Geeft de inverse van de cumulatieve verdelingsfunctie terug voor een gespecificeerde bètaverdeling || ||
|-
!scope="row"|BINOMDIST
| Geeft de binomiale verdelingskans van de individuele term terug || ||
|-
!scope="row"|CEILING
| Rond een getal af naar het dichtstbijzijnde geheel getal of naar het dichtstbijzijnde veelvoud van significantie || ||
|-
!scope="row"|CHIDIST
| Geeft de eenzijdige kans van de chi-kwadraatverdeling terug || ||
|-
!scope="row"|CHIINV
| Geeft de inverse van de eenzijdige kans van de chi-kwadraatverdeling terug || ||
|-
!scope="row"|CHITEST
| Geeft de test voor onafhankelijkheid terug || ||
|-
!scope="row"|CONFIDENCE
| Geeft het betrouwbaarheidsinterval terug voor een populatiegemiddelde || ||
|-
!scope="row"|COVAR
| Geeft covariantie terug, het gemiddelde van de producten van gepaarde afwijkingen || ||
|-
!scope="row"|CRITBINOM
| Geeft de kleinste waarde terug waarvoor de cumulatieve binomiale verdeling kleiner is dan of gelijk aan een criteriumwaarde || ||
|-
!scope="row"|EXPONDIST
| Geeft de exponentiële verdeling terug || ||
|-
!scope="row"|FDIST
| Geeft de F kansverdeling terug || ||
|-
!scope="row"|FINV
| Geeft de inverse van de F-kansverdeling terug || ||
|-
!scope="row"|FLOOR
| Rondt een getal naar beneden af, richting nul || {{Z+|Z20032}}
{{Z+|Z20841}}
|
|-
!scope="row"|FTEST
| Geeft het resultaat van een F-test terug || ||
|-
!scope="row"|GAMMADIST
| Geeft de gamma-verdeling terug || ||
|-
!scope="row"|GAMMAINV
| Geeft de inverse van de cumulatieve gammaverdeling terug || ||
|-
!scope="row"|HYPGEOMDIST
| Geeft de hypergeometrische verdeling terug || ||
|-
!scope="row"|LOGINV
| Geeft de inverse van de lognormale cumulatieve verdeling terug || ||
|-
!scope="row"|LOGNORMDIST
| Geeft de cumulatieve lognormale verdeling terug || ||
|-
!scope="row"|MODE
| Geeft de meest voorkomende waarde in een dataset terug || {{Z+|Z21851}} ||
|-
!scope="row"|NEGBINOMDIST
| Geeft de negatieve binomiale verdeling terug || ||
|-
!scope="row"|NORMDIST
| Geeft de normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORM.INV
| Geeft de inverse van de normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORMSDIST
| Geeft de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORMSINV
| Geeft de inverse van de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|PERCENTILE
| Geeft het k-de percentiel van waarden in een bereik terug || ||
|-
!scope="row"|PERCENTRANK
| Geeft de procentuele rang van een waarde in een dataset terug || ||
|-
!scope="row"|POISSON
| Geeft de Poisson-verdeling terug || ||
|-
!scope="row"|QUARTILE
| Geeft het kwartiel van een dataset terug || ||
|-
!scope="row"|RANK
| Geeft de rangorde van een getal in een lijst van getallen terug || ||
|-
!scope="row"|STDEV
| Schatting van standaarddeviatie op basis van een steekproef || ||
|-
!scope="row"|STDEVP
| Berekent de standaarddeviatie op basis van de gehele populatie || ||
|-
!scope="row"|TDIST
| Geeft de Student's t-verdeling terug || ||
|-
!scope="row"|TINV
| Geeft de inverse van de Student's t-verdeling terug || ||
|-
!scope="row"|TTEST
| Geeft de kans terug die hoort bij de Student's t-test || ||
|-
!scope="row"|VAR
| Schatting van de variantie op basis van een steekproef || ||
|-
!scope="row"|VARP
| Berekent de variantie op basis van de gehele populatie || ||
|-
!scope="row"|WEIBULL
| Berekent de variantie op basis van de gehele populatie, inclusief getallen, tekst en logische waarden || ||
|-
!scope="row"|ZTEST
| Geeft de eenzijdige kanswaarde van een z-test terug || ||
|}
== Cube ==
{| class="wikitable collapsible sortable"
|+Lijst van Cube Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|CUBEKPIMEMBER
| Geeft een naam, eigenschap en maatstaf (Key Performance Indicator) (KPI) terug en toont de naam en eigenschap in de cel. Een KPI is een kwantificeerbare maatstaf, zoals de maandelijkse brutowinst of het kwartaalomzet van medewerkers, die wordt gebruikt om de prestaties van een organisatie te monitoren. || ||
|-
!scope="row"|CUBEMEMBER
| Geeft een lid of tupel terug in een cube-hiërarchie. Gebruik om te valideren dat het lid of de tupel in de cube bestaat. || ||
|-
!scope="row"|CUBEMEMBERPROPERTY
| Geeft de waarde van een lideigenschap in de cube terug. Gebruik om te valideren dat er een lidnaam in de cube bestaat en om de gespecificeerde eigenschap voor dit lid terug te geven. || ||
|-
!scope="row"|CUBERANKEDMEMBER
| Geeft het n-de, of gerangschikte, lid in een set terug. Gebruik het om één of meer elementen in een set op te halen, zoals de beste verkoper of de top 10 studenten. || ||
|-
!scope="row"|CUBESET
| Definieert een berekende set van leden of tupels door een set-expressie naar de cube op de server te sturen, die de set aanmaakt en die set vervolgens teruggeeft aan Microsoft Office Excel. || ||
|-
!scope="row"|CUBESETCOUNT
| Geeft het aantal items in een set terug. || ||
|-
!scope="row"|CUBEVALUE
| Geeft een geaggregeerde waarde terug van een cube. || ||
|}
== Database ==
{| class="wikitable collapsible sortable"
|+Lijst van Excel-databasefuncties
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|DAVERAGE
| Geeft het gemiddelde van geselecteerde database-items terug || ||
|-
!scope="row"|DCOUNT
| Telt de cellen die getallen bevatten in een database || ||
|-
!scope="row"|DCOUNTA
| Telt niet-lege cellen in een database || ||
|-
!scope="row"|DGET
| Haalt uit een database een enkel record dat voldoet aan de gespecificeerde criteria || ||
|-
!scope="row"|DMAX
| Geeft de maximale waarde terug uit geselecteerde database-gegevens || ||
|-
!scope="row"|DMIN
| Geeft de minimale waarde terug uit geselecteerde database-gegevens || ||
|-
!scope="row"|DPRODUCT
| Vermenigvuldigt de waarden in een bepaald veld van records die overeenkomen met de criteria in een database || ||
|-
!scope="row"|DSTDEV
| De standaardafwijking wordt geschat op basis van een steekproef van geselecteerde database-gegevens || ||
|-
!scope="row"|DSTDEVP
| Berekent de standaardafwijking op basis van de gehele populatie van geselecteerde database-gegevens || ||
|-
!scope="row"|DSUM
| Voegt de nummers toe in de veldkolom van database-gegevens die overeenkomen met de criteria || ||
|-
!scope="row"|DVAR
| Schat de variantie op basis van een steekproef uit geselecteerde database-gegevens || ||
|-
!scope="row"|DVARP
| Berekent variantie op basis van de gehele populatie van geselecteerde database-gegevens || ||
|}
<span id="Date_and_time"></span>
== Datum en tijd ==
{| class="wikitable collapsible sortable"
|+Lijst van datum en tijd Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|DATE
| Geeft het serienummer van een bepaalde datum terug || ||
|-
!scope="row"|DATEDIF
| Berekent het aantal dagen, maanden of jaren tussen twee data. Deze functie is nuttig in formules waarbij u een leeftijd moet berekenen. || ||
|-
!scope="row"|DATEVALUE
| Zet een datum in de vorm van tekst om in een serienummer || ||
|-
!scope="row"|DAY
| Zet een serienummer om in een dag van de maand || ||
|-
!scope="row"|DAYS
| Geeft het aantal dagen tussen twee datums terug || ||
|-
!scope="row"|DAYS360
| Berekent het aantal dagen tussen twee datums op basis van een jaar van 360-dagen || ||
|-
!scope="row"|EDATE
| Geeft het serienummer van de datum terug, dat het aangegeven aantal maanden vóór of na de startdatum is || ||
|-
!scope="row"|EOMONTH
| Geeft het serienummer van de laatste dag van de maand vóór of na een bepaald aantal maanden || ||
|-
!scope="row"|HOUR
| Zet een serienummer om in een uur || ||
|-
!scope="row"|ISOWEEKNUM
| Geeft het nummer van het ISO-weeknummer van het jaar terug voor een bepaalde datum || ||
|-
!scope="row"|MINUTE
| Zet een serienummer om in een minuut || ||
|-
!scope="row"|MONTH
| Zet een serienummer om in een maand || ||
|-
!scope="row"|NETWORKDAYS
| Geeft het aantal hele werkdagen tussen twee datums terug || ||
|-
!scope="row"|NETWORKDAYS.INTL
| Geeft het aantal hele werkdagen tussen twee datums terug met behulp van parameters om aan te geven welke en hoeveel dagen weekenddagen zijn || ||
|-
!scope="row"|NOW
| Geeft het serienummer van de huidige datum en tijd terug || ||
|-
!scope="row"|SECOND
| Zet een serienummer om in een seconde || ||
|-
!scope="row"|TIME
| Geeft het serienummer van een bepaald tijdstip terug || ||
|-
!scope="row"|TIMEVALUE
| Zet een tijd in de vorm van tekst om in een serienummer || ||
|-
!scope="row"|TODAY
| Geeft het serienummer van de datum van vandaag terug. || ||
|-
!scope="row"|WEEKDAY
| Zet een serienummer om in een dag van de week || {{Z+|Z17540}} || Heeft Dag, Maand en Jaar nodig in plaats van een serienummer
|-
!scope="row"|WEEKNUM
| Zet een serienummer om in een nummer dat numeriek aangeeft waar de week ligt met een jaar || ||
|-
!scope="row"|WORKDAY
| Geeft het serienummer van de datum voor of na een bepaald aantal werkdagen terug. || ||
|-
!scope="row"|WORKDAY.INTL
| Geeft het serienummer van de datum voor of na een bepaald aantal werkdagen terug met behulp van parameters die aangeven welke en hoeveel dagen weekenddagen zijn || ||
|-
!scope="row"|YEAR
| Zet een serienummer om in een jaar || ||
|-
!scope="row"|YEARFRAC
| Geeft het jaardeel terug dat staat voor het aantal hele dagen tussen 'start_date' en 'end_date' || ||
|}
<span id="Engineering"></span>
== Technisch ==
{| class="wikitable collapsible sortable"
|+Lijst van technische Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|BESSELI
| Geeft de aangepaste Besselfunctie In(x) terug || ||
|-
!scope="row"|BESSELJ
| Geeft de Besselfunctie Jn(x) terug || ||
|-
!scope="row"|BESSELK
| Geeft de aangepaste Besselfunctie Kn(x) terug || ||
|-
!scope="row"|BESSELY
| Geeft de Besselfunctie Yn(x) terug || ||
|-
!scope="row"|BIN2DEC
| Zet een binair getal om in een decimaal getal || ||
|-
!scope="row"|BIN2HEX
| Zet een binair getal om in een hexadecimaal getal || ||
|-
!scope="row"|BIN2OCT
| Zet een binair getal om in een octaal nummer || ||
|-
!scope="row"|BITAND
| Geeft een 'Bitgewijs And' van twee getallen terug || ||
|-
!scope="row"|BITLSHIFT
| Geeft een getal terug dat met shift_amount bits naar links is verschoven || ||
|-
!scope="row"|BITOR
| Geeft een 'Bitgewijs OR' van 2 getallen terug || ||
|-
!scope="row"|BITRSHIFT
| Geeft een getal terug dat met shift_amount bits naar rechts is verschoven || ||
|-
!scope="row"|BITXOR
| Geeft een bitsgewijs 'Exclusieve OR' van twee getallen terug || ||
|-
!scope="row"|COMPLEX
| Zet reële en imaginaire coëfficiënten om in een complex getal || ||
|-
!scope="row"|CONVERT
| Zet een getal om van het ene meetstelsel naar het andere. || ||
|-
!scope="row"|DEC2BIN
| Zet een decimaal getal om in een binair getal || ||
|-
!scope="row"|DEC2HEX
| Zet een decimaal getal om in een hexadecimaal getal || ||
|-
!scope="row"|DEC2OCT
| Zet een decimaal getal om in een octaal getal || ||
|-
!scope="row"|DELTA
| Test of twee waarden gelijk zijn || ||
|-
!scope="row"|ERF
| Geeft de foutfunctie terug || ||
|-
!scope="row"|ERF.PRECISE
| Geeft de foutfunctie terug || ||
|-
!scope="row"|ERFC
| Geeft de complementaire foutfunctie terug || ||
|-
!scope="row"|ERFC.PRECISE
| Geeft de complementaire functie ERF terug geïntegreerd tussen x en oneindig || ||
|-
!scope="row"|GESTEP
| Test of een getal groter is dan een drempelwaarde || ||
|-
!scope="row"|HEX2BIN
| Zet een hexadecimaal getal om in een binair getal || ||
|-
!scope="row"|HEX2DEC
| Zet een hexadecimaal getal om in een decimaal getal || ||
|-
!scope="row"|HEX2OCT
| Zet een hexadecimaal getal om in een octaal getal || ||
|-
!scope="row"|IMABS
| Geeft de absolute waarde (modulus) van een complex getal terug || ||
|-
!scope="row"|IMAGINARY
| Geeft de imaginaire coëfficiënt van een complex getal terug || ||
|-
!scope="row"|IMARGUMENT
| Geeft het argument theta terug, een hoek uitgedrukt in radialen || ||
|-
!scope="row"|IMCONJUGATE
| Geeft het complex geconjugeerde van een complex getal terug || ||
|-
!scope="row"|IMCOS
| Geeft de cosinus van een complex getal terug || ||
|-
!scope="row"|IMCOSH
| Geeft de hyperbolische cosinus van een complex getal terug || ||
|-
!scope="row"|IMCOT
| Geeft de cotangens van een complex getal terug || ||
|-
!scope="row"|IMCSC
| Geeft de cosecans van een complex getal terug || ||
|-
!scope="row"|IMCSCH
| Geeft de hyperbolische cosecans van een complex getal terug || ||
|-
!scope="row"|IMDIV
| Geeft het quotiënt van twee complexe getallen terug || ||
|-
!scope="row"|IMEXP
| Geeft de exponentiële van een complex getal terug || ||
|-
!scope="row"|IMLN
| Geeft het natuurlijke logaritme van een complex getal terug || ||
|-
!scope="row"|IMLOG10
| Geeft de logaritme van basis-10 van een complex getal terug || ||
|-
!scope="row"|IMLOG2
| Geeft de logaritme van basis-2 van een complex getal terug || ||
|-
!scope="row"|IMPOWER
| Geeft een complex getal terug dat tot een geheel getal macht is verhoogd || ||
|-
!scope="row"|IMPRODUCT
| Geeft het product van complexe getallen terug || ||
|-
!scope="row"|IMREAL
| Geeft de reële coëfficiënt van een complex getal terug || ||
|-
!scope="row"|IMSEC
| Geeft de secans van een complex getal terug || ||
|-
!scope="row"|IMSECH
| Geeft de hyperbolische secans van een complex getal terug || ||
|-
!scope="row"|IMSIN
| Geeft de sinus van een complex getal terug || ||
|-
!scope="row"|IMSINH
| Geeft de hyperbolische sinus van een complex getal terug || ||
|-
!scope="row"|IMSQRT
| Geeft de wortel van een complex getal terug || ||
|-
!scope="row"|IMSUB
| Geeft het verschil terug tussen twee complexe getallen || ||
|-
!scope="row"|IMSUM
| Geeft de som van complexe getallen terug || ||
|-
!scope="row"|IMTAN
| Geeft de tangens van een complex getal terug || ||
|-
!scope="row"|OCT2BIN
| Zet een octaal getal om in een binair getal || ||
|-
!scope="row"|OCT2DEC
| Zet een octaal getal om in een decimaal getal || ||
|-
!scope="row"|OCT2HEX
| Zet een octaal getal om in een hexadecimaal getal || ||
|}
<span id="Financial"></span>
== Financieel ==
{| class="wikitable collapsible sortable"
|+Lijst van financiële Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|ACCRINT
| Retourneert de opgebouwde rente voor een zekerheid dat periodieke rente betaalt || ||
|-
!scope="row"|ACCRINTM
| Geeft de opgebouwde rente terug voor een zekerheid dat rente betaalt op een vervaldatum || ||
|-
!scope="row"|AMORDEGRC
| Geeft de afschrijving voor elke boekhoudperiode terug met behulp van een afschrijvingscoëfficiënt || ||
|-
!scope="row"|AMORLINC
| Geeft de afschrijving voor elke boekhoudperiode terug || ||
|-
!scope="row"|COUPDAYBS
| Geeft het aantal dagen terug vanaf het begin van de couponperiode tot de afwikkelingsdatum || ||
|-
!scope="row"|COUPDAYS
| Geeft het aantal dagen in de couponperiode terug waarin de afwikkelingsdatum is opgenomen || ||
|-
!scope="row"|COUPDAYSNC
| Geeft het aantal dagen terug van de afwikkelingsdatum tot de volgende coupondatum || ||
|-
!scope="row"|COUPNCD
| Geeft de volgende coupondatum na de afwikkelingsdatum terug || ||
|-
!scope="row"|COUPNUM
| Geeft het aantal coupons terug dat tussen de afwikkelingsdatum en de vervaldatum moet worden betaald || ||
|-
!scope="row"|COUPPCD
| Geeft de vorige coupondatum vóór de afwikkelingsdatum terug || ||
|-
!scope="row"|CUMIPMT
| Geeft de cumulatieve rente terug die tussen twee perioden is betaald || ||
|-
!scope="row"|CUMPRINC
| Geeft de cumulatieve hoofdsom terug die is betaald op een lening tussen twee periodes || ||
|-
!scope="row"|DB
| Geeft de afschrijving van een activa voor een bepaalde periode terug door gebruik te maken van de fixed-declining balansmethode || ||
|-
!scope="row"|DDB
| Geeft de afschrijving van een activa voor een bepaalde periode terug door gebruik te maken van de double-declining balansmethode of een andere methode die u specificeert || ||
|-
!scope="row"|DISC
| Geeft het discontopercentage voor een zekerheid terug || ||
|-
!scope="row"|DOLLARDE
| Zet een dollarprijs, uitgedrukt als een fractie, om in een dollarprijs, uitgedrukt als een decimaal getal || ||
|-
!scope="row"|DOLLARFR
| Zet een dollarprijs, uitgedrukt als een decimaal getal, om in een dollarprijs, uitgedrukt als een fractie || ||
|-
!scope="row"|DURATION
| Geeft de jaarlijkse looptijd van een zekerheid terug met periodieke rentebetalingen || ||
|-
!scope="row"|EFFECT
| Geeft de effectieve jaarlijkse rente terug || ||
|-
!scope="row"|FV
| Geeft de toekomstige waarde van een belegging terug || ||
|-
!scope="row"|FVSCHEDULE
| Geeft de toekomstige waarde van een initiële hoofdsom terug na het toepassen van een reeks samengestelde rentetarieven || ||
|-
!scope="row"|INTRATE
| Geeft de rente terug voor een volledig geïnvesteerde zekerheid || ||
|-
!scope="row"|IPMT
| Geeft de rentebetaling voor een investering voor een bepaalde periode terug || ||
|-
!scope="row"|IRR
| Geeft het interne rendement terug voor een reeks kasstromen || ||
|-
!scope="row"|ISPMT
| Berekent de rente die wordt betaald gedurende een specifieke investeringsperiode || ||
|-
!scope="row"|MDURATION
| Geeft de Macauley-aangepaste duur terug voor een zekerheid met een veronderstelde nominale waarde van $100 || ||
|-
!scope="row"|MIRR
| Geeft het interne rendement terug, waarbij positieve en negatieve kasstromen worden gefinancierd tegen verschillende rentes || ||
|-
!scope="row"|NOMINAL
| Geeft het jaarlijkse nominale rentepercentage terug || ||
|-
!scope="row"|NPER
| Geeft het aantal periodes voor een investering terug || ||
|-
!scope="row"|NPV
| Geeft de netto contante waarde van een investering terug op basis van een reeks periodieke kasstromen en een discontovoet || ||
|-
!scope="row"|ODDFPRICE
| Geeft de prijs per $100 nominale waarde van een zekerheid terug met een oneven eerste periode || ||
|-
!scope="row"|ODDFYIELD
| Geeft het rendement van een zekerheid terug met een oneven eerste periode || ||
|-
!scope="row"|ODDLPRICE
| Geeft de prijs per $100 nominale waarde van een zekerheid terug met een oneven laatste periode || ||
|-
!scope="row"|ODDLYIELD
| Geeft het rendement van een zekerheid terug met een oneven laatste periode || ||
|-
!scope="row"|PDURATION
| Geeft het aantal periodes terug dat een investering nodig heeft om een bepaalde waarde te bereiken || ||
|-
!scope="row"|PMT
| Retourneert de periodieke betaling voor een annuïteit || ||
|-
!scope="row"|PPMT
| Geeft de betaling van de hoofdsom voor een investering voor een bepaalde periode terug || ||
|-
!scope="row"|PRICE
| Geeft de prijs terug per nominale waarde van $100 van een zekerheid dat periodieke rente betaalt || ||
|-
!scope="row"|PRICEDISC
| Geeft de prijs per nominale waarde van $100 van een afgeprijsde zekerheid terug || ||
|-
!scope="row"|PRICEMAT
| Geeft de prijs per nominale waarde van $100 terug van een zekerheid dat rente betaalt bij vervaldatum || ||
|-
!scope="row"|PV
| Geeft de huidige waarde van een investering terug || ||
|-
!scope="row"|RATE
| Geeft het rentepercentage per periode van een annuïteit terug || ||
|-
!scope="row"|RECEIVED
| Retourneert het bedrag dat bij de vervaldatum is ontvangen voor een volledig geïnvesteerd zekerheid || ||
|-
!scope="row"|RRI
| Geeft een gelijkwaardige rente voor de groei van een investering || ||
|-
!scope="row"|SLN
| Geeft de rechtlijnige afschrijving van een activa voor één periode terug || ||
|-
!scope="row"|STOCKHISTORY
| Haalt historische gegevens op over een financieel instrument || ||
|-
!scope="row"|SYD
| Geeft de "sum-of-years" afschrijving van een activa voor een bepaalde periode terug || ||
|-
!scope="row"|TBILLEQ
| Geeft het obligatie-equivalente rendement voor een schatkistwissel terug || ||
|-
!scope="row"|TBILLPRICE
| Geeft de prijs per nominale waarde van $100 voor een schatkistwissel terug || ||
|-
!scope="row"|TBILLYIELD
| Geeft het rendement terug voor een schatkistwissel || ||
|-
!scope="row"|VDB
| Geeft de afschrijving van een activa terug voor een gespecificeerde of gedeeltelijke periode door gebruik te maken van een afnemende balansmethode || ||
|-
!scope="row"|XIRR
| Geeft het interne rendement terug voor een schema van kasstromen dat niet noodzakelijkerwijs periodiek is || ||
|-
!scope="row"|XNPV
| Geeft de netto contante waarde terug voor een schema van kasstromen dat niet noodzakelijkerwijs periodiek is || ||
|-
!scope="row"|YIELD
| Geeft het rendement terug op een zekerheid dat periodieke rente betaalt || ||
|-
!scope="row"|YIELDDISC
| Geeft de jaarlijkse opbrengst terug voor een gedisconteerde zekerheid; bijvoorbeeld een schatkistwissel || ||
|-
!scope="row"|YIELDMAT
| Geeft het jaarlijkse rendement terug van een zekerheid dat rente betaalt op een vervaldatum || ||
|}
<span id="Information"></span>
== Informatie ==
{| class="wikitable collapsible sortable"
|+Lijst van informatie Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|CELL
| Geeft informatie terug over de opmaak, locatie of inhoud van een cel || ||
|-
!scope="row"|ERROR.TYPE
| Geeft een getal terug dat overeenkomt met een fouttype || ||
|-
!scope="row"|INFO
| Geeft informatie terug over de huidige operationele omgeving || ||
|-
!scope="row"|ISBLANK
| Geeft TRUE terug als de waarde leeg is || {{Z+|Z10008}} ||
|-
!scope="row"|ISERR
| Geeft TRUE terug als de waarde een willekeurige foutwaarde is anders dan #N/A || ||
|-
!scope="row"|ISERROR
| Geeft TRUE terug als de waarde een willekeurige foutwaarde is || {{Z+|Z20107}} ||
|-
!scope="row"|ISEVEN
| Geeft TRUE terug als het getal even is || {{Z+|Z12480}} ||
|-
!scope="row"|ISFORMULA
| Geeft TRUE terug als er een verwijzing is naar een cel die een formule bevat || ||
|-
!scope="row"|ISLOGICAL
| Geeft TRUE terug als de waarde een logische waarde is || ||
|-
!scope="row"|ISNA
| Geeft TRUE terug als de waarde de #N/A-foutwaarde is || ||
|-
!scope="row"|ISNONTEXT
| Geeft TRUE terug als de waarde geen tekst is || ||
|-
!scope="row"|ISNUMBER
| Geeft TRUE als de waarde een getal is || {{Z+|Z10715}} ||
|-
!scope="row"|ISODD
| Geeft TRUE terug als het getal oneven is || {{Z+|Z12429}} ||
|-
!scope="row"|ISOMITTED
| Controleert of de waarde in een LAMBDA ontbreekt en geeft TRUE of FALSE terug || ||
|-
!scope="row"|ISREF
| Geeft TRUE terug als de waarde een referentie is || ||
|-
!scope="row"|ISTEXT
| Geeft TRUE terug als de waarde een tekst is || ||
|-
!scope="row"|N
| Geeft een waarde terug die is omgezet in een getal || ||
|-
!scope="row"|NA
| Geeft de foutwaarde #N/A terug || ||
|-
!scope="row"|SHEET
| Geeft het bladnummer van het gerefereerde blad terug || ||
|-
!scope="row"|SHEETS
| Geeft het aantal bladen in een referentie terug || ||
|-
!scope="row"|TYPE
| Geeft een getal terug dat het datatype van een waarde aangeeft || ||
|}
<span id="Logical"></span>
== Logica ==
{| class="wikitable collapsible sortable"
|+Lijst van logische Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|AND
| Geeft TRUE terug als al zijn argumenten TRUE zijn || {{Z+|Z10174}} ||
|-
!scope="row"|BYCOL
| Past een LAMBDA toe op elke kolom en geeft een array van de resultaten terug || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|BYROW
| Past een LAMBDA toe op elke rij en geeft een array van de resultaten terug || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|FALSE
| Geeft de logische waarde FALSE terug || {{Z+|Z10206}} ||
|-
!scope="row"|IF
| Specificeert een logische test om uit te voeren || {{Z+|Z802}}, {{Z+|Z11542}} ||
|-
!scope="row"|IFERROR
| Geeft een waarde terug die u specificeert als een formule evalueert naar een fout; geeft anders het resultaat van de formule terug || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|IFNA
| Geeft de door u opgegeven waarde terug als de expressie wordt opgelost naar #N/A, anders geeft het resultaat van de expressie terug || ||
|-
!scope="row"|IFS
| Controleert of aan één of meer voorwaarden is voldaan en geeft een waarde terug die overeenkomt met de eerste TRUE-voorwaarde. || {{Z+|Z19601}} ||
|-
!scope="row"|LAMBDA
| Maak aangepaste, herbruikbare functies en roept ze met een vriendelijke naam aan || {{Z+|Z8}} ||
|-
!scope="row"|LET
| Wijst een naam toe aan het resultaat van een berekening || ||
|-
!scope="row"|MAKEARRAY
| Geeft een berekende array van een gespecificeerde rij- en kolomgrootte terug door een LAMBDA toe te passen || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|MAP
| Geeft een array terug die wordt gevormd door elke waarde in de array(s) te koppelen naar een nieuwe waarde door een LAMBDA toe te passen om een nieuwe waarde te creëren || {{Z+|Z873}} ||
|-
!scope="row"|NOT
| Keert de logische waarde van zijn argument om || {{Z+|Z10216}} ||
|-
!scope="row"|OR
| Geeft TRUE terug als minstens een van de argumenten TRUE is || {{Z+|Z10184}} ||
|-
!scope="row"|REDUCE
| Reduceert een array tot een enkele waarde door een LAMBDA toe te passen op elke waarde en de totale waarde in de accumulator terug te geven || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|SCAN
| Scant een array door een LAMBDA toe te passen op elke waarde en geeft een array terug met elke tussenliggende waarde || || Wordt nu als niet mogelijk beschouwd
|-
!scope="row"|SWITCH
| Evalueert een expressie aan de hand van een lijst met waarden en geeft het resultaat terug dat overeenkomt met de eerste overeenkomende waarde. Als er geen overeenkomenst is, kan een optionele standaardwaarde worden teruggegeven. || ||
|-
!scope="row"|TRUE
| Geeft de logische waarde TRUE terug || {{Z+|Z10210}} ||
|-
!scope="row"|XOR
| Geeft een logisch exclusieve OF alle argumenten terug || {{Z+|Z10237}} ||
|}
<span id="Lookup_and_reference"></span>
== Opzoeken en referentie ==
{| class="wikitable collapsible sortable"
|+Lijst van zoek- en referentiefuncties van Excel
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|VSTACK
| Voegt arrays verticaal en in volgorde toe om een groter array terug te geven || ||
|-
!scope="row"|WRAPCOLS
| Wikkelt de opgegeven rij of kolom met waarden in kolommen na een bepaald aantal elementen || ||
|-
!scope="row"|WRAPROWS
| Wikkelt de opgegeven rij of kolom met waarden in rijen na een bepaald aantal elementen || ||
|-
!scope="row"|ADDRESS
| Geeft een verwijzing als tekst terug naar een enkele cel in een werkblad || ||
|-
!scope="row"|AREAS
| Geeft het aantal velden in een referentie terug || ||
|-
!scope="row"|CHOOSE
| Kiest een waarde uit een lijst van waarden || ||
|-
!scope="row"|CHOOSECOLS
| Geeft de gespecificeerde kolommen terug uit een array || ||
|-
!scope="row"|CHOOSEROWS
| Geeft de gespecificeerde rijen terug uit een array || ||
|-
!scope="row"|COLUMN
| Geeft het kolomnummer van een referentie terug || ||
|-
!scope="row"|COLUMNS
| Geeft het aantal kolommen in een referentie terug || ||
|-
!scope="row"|DROP
| Sluit een bepaald aantal rijen of kolommen uit van het begin of einde van een array || ||
|-
!scope="row"|EXPAND
| Breidt een array uit of vult deze op tot gespecificeerde rij- en kolomafmetingen || ||
|-
!scope="row"|FILTER
| Filtert een reeks gegevens op basis van criteria die u definieert || ||
|-
!scope="row"|FORMULATEXT
| Geeft de formule op de gegeven referentie terug als tekst || ||
|-
!scope="row"|GETPIVOTDATA
| Retourneert gegevens die zijn opgeslagen in een draaitafelrapport (PivotTable) || ||
|-
!scope="row"|HLOOKUP
| Kijkt in de bovenste rij van een array en geeft de waarde van de aangegeven cel terug || ||
|-
!scope="row"|HSTACK
| Voegt arrays horizontaal en in volgorde toe om een groter array terug te geven || ||
|-
!scope="row"|HYPERLINK
| Maakt een snelkoppeling of sprong aan die een document opent dat is opgeslagen op een netwerkserver, een intranet of het internet || ||
|-
!scope="row"|IMAGE
| Geeft een afbeelding terug uit een gegeven bron || ||
|-
!scope="row"|INDEX
| Gebruikt een index om een waarde te kiezen uit een referentie of array || {{Z+|Z13397}} || Controleren Indexbase
|-
!scope="row"|INDIRECT
| Geeft een referentie terug die wordt aangegeven door een tekstwaarde || ||
|-
!scope="row"|LOOKUP
| Zoekt waarden op in een vector of array || {{Z+|Z13708}} || Controleer of het mogelijk is in arrays met meerdere kolommen.
|-
!scope="row"|MATCH
| Zoekt waarden op in een referentie of array || ||
|-
!scope="row"|OFFSET
| Geeft een referentie-offset terug ten opzichte van een gegeven referentie || ||
|-
!scope="row"|ROW
| Geeft het rijnummer van een referentie terug || ||
|-
!scope="row"|ROWS
| Geeft het aantal rijen in een referentie terug || ||
|-
!scope="row"|RTD
| Haalt realtime data op uit een programma dat COM-automatisering ondersteunt || ||
|-
!scope="row"|SORT
| Sorteert de inhoud van een bereik of een array || ||
|-
!scope="row"|SORTBY
| Sorteert de inhoud van een bereik of array op basis van de waarden in een overeenkomstige bereik of array || ||
|-
!scope="row"|TAKE
| Geeft een gespecificeerd aantal aaneengesloten rijen of kolommen terug vanaf het begin of einde van een array || ||
|-
!scope="row"|TOCOL
| Geeft het array terug in één kolom || ||
|-
!scope="row"|TOROW
| Geeft het array terug in één rij || ||
|-
!scope="row"|TRANSPOSE
| Geeft het array terug waarbij de rijen en kolommen omgedraaid zijn. || ||
|-
!scope="row"|UNIQUE
| Geeft een lijst van unieke waarden terug in een lijst of bereik || ||
|-
!scope="row"|VLOOKUP
| Kijkt in de eerste kolom van een array en beweegt over de rij om de waarde van een cel terug te geven || ||
|-
!scope="row"|XLOOKUP
| Zoekt in een bereik of array, en geeft een item terug dat overeenkomt met de eerste gevonden match. Als er geen match bestaat, kan XLOOKUP de dichtstbijzijnde (benaderende) match teruggeven. || ||
|-
!scope="row"|XMATCH
| Geeft de relatieve positie van een item in een array of bereik van cellen terug. || ||
|}
<span id="Math_and_trigonometry"></span>
== Wiskunde en trigonometrie ==
{| class="wikitable collapsible sortable"
|+Lijst van Wiskunde en trigonometrie Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|ABS
| Geeft de absolute waarde van een getal terug || {{Z+|Z11235}} ||
|-
!scope="row"|ACOS
| Geeft de arccosinus van een getal terug || {{Z+|Z12497}} ||
|-
!scope="row"|ACOSH
| Geeft de inverse hyperbolische cosinus van een getal terug || {{Z+|Z12500}} ||
|-
!scope="row"|ACOT
| Geeft de arccotangent van een getal terug || ||
|-
!scope="row"|ACOTH
| Geeft de hyperbolische arccotangent van een getal terug || ||
|-
!scope="row"|AGGREGATE
| Geeft een aggregaat terug in een lijst of database || ||
|-
!scope="row"|ARABIC
| Zet een Romeins getal om in een gewoon getal || {{Z+|Z11023}} ||
|-
!scope="row"|ASIN
| Geeft de arcsinus van een getal terug || {{Z+|Z12505}} ||
|-
!scope="row"|ASINH
| Geeft de inverse hyperbolische sinus van een getal terug || {{Z+|Z12509}} ||
|-
!scope="row"|ATAN
| Geeft de arctangens van een getal terug || ||
|-
!scope="row"|ATAN2
| Geeft de arctangens terug van x- en y-coördinaten || ||
|-
!scope="row"|ATANH
| Geeft de inverse hyperbolische tangens van een getal terug || ||
|-
!scope="row"|BASE
| Zet een getal om in een tekstrepresentatie met de gegeven radix (basis) || ||
|-
!scope="row"|CEILING.MATH
| Rond een getal naar boven af op het dichtstbijzijnde geheel getal of naar het dichtstbijzijnde veelvoud van significantie || ||
|-
!scope="row"|CEILING.PRECISE
| Rond een getal af op het dichtstbijzijnde geheel getal of op het dichtstbijzijnde veelvoud van significantie. Ongeacht het teken van het getal wordt het getal afgerond. || ||
|-
!scope="row"|COMBIN
| Geeft het aantal combinaties terug voor een gegeven aantal objecten || ||
|-
!scope="row"|COMBINA
| Geeft het aantal combinaties (met herhalingen) terug voor een gegeven aantal items || ||
|-
!scope="row"|COS
| Geeft de cosinus van een getal terug || {{Z+|Z12473}}
|
|-
!scope="row"|COSH
| Geeft de hyperbolische cosinus van een getal terug || ||
|-
!scope="row"|COT
| Geeft de hyperbolische cosinus van een getal terug || ||
|-
!scope="row"|COTH
| Geeft de cotangens van een hoek terug || ||
|-
!scope="row"|CSC
| Geeft de cosecant van een hoek terug || ||
|-
!scope="row"|CSCH
| Geeft de hyperbolische cosecant van een hoek terug || ||
|-
!scope="row"|DECIMAL
| Zet een tekstweergave van een getal in een gegeven basis om in een decimaal getal || ||
|-
!scope="row"|DEGREES
| Zet radialen om in graden || ||
|-
!scope="row"|EVEN
| Rond een getal af naar het dichtstbijzijnde even geheel getal || ||
|-
!scope="row"|EXP
| Geeft e terug die wordt verhoogd tot de macht van een gegeven getal || ||
|-
!scope="row"|FACT
| Geeft de faculteit van een getal terug || ||
|-
!scope="row"|FACTDOUBLE
| Geeft de dubbele faculteit van een getal terug || ||
|-
!scope="row"|FLOOR.MATH
| Rond een getal naar beneden af op het dichtstbijzijnde geheel getal of naar het dichtstbijzijnde veelvoud van significantie || ||
|-
!scope="row"|FLOOR.PRECISE
| Rond een getal af op het dichtstbijzijnde geheel getal of op het dichtstbijzijnde veelvoud van significantie. Ongeacht het teken van het getal wordt het getal afgerond. || ||
|-
!scope="row"|GCD
| Geeft de grootste gemene deler terug || ||
|-
!scope="row"|INT
| Rond een getal af naar beneden naar het dichtstbijzijnde geheel getal || ||
|-
!scope="row"|ISO.CEILING
| Geeft een getal terug dat wordt afgerond naar het dichtstbijzijnde geheel getal of naar het dichtstbijzijnde veelvoud van significantie || ||
|-
!scope="row"|LCM
| Geeft het kleinste gemeenschappelijke veelvoud terug || ||
|-
!scope="row"|LN
| Geeft het natuurlijke logaritme van een getal terug || ||
|-
!scope="row"|LOG
| Geeft de logaritme van een getal terug met een opgegeven basisgetal || ||
|-
!scope="row"|LOG10
| Geeft de logaritme van basis-10 van een getal terug || ||
|-
!scope="row"|MDETERM
| Geeft de matrixdeterminant van een array terug || ||
|-
!scope="row"|MINVERSE
| Geeft de matrixinverse van een array terug || ||
|-
!scope="row"|MMULT
| Geeft het matrixproduct van twee arrays terug || ||
|-
!scope="row"|MOD
| Geeft de rest terug uit een deling || {{Z+|Z12476}} ||
|-
!scope="row"|MROUND
| Geeft een getal terug dat wordt afgerond op het gewenste veelvoud || ||
|-
!scope="row"|MULTINOMIAL
| Geeft de som (multinomial) van een verzameling getallen terug || ||
|-
!scope="row"|MUNIT
| Geeft de eenheidsmatrix voor de gespecificeerde dimensie terug || ||
|-
!scope="row"|ODD
| Rond een getal af naar boven op het dichtstbijzijnde oneven geheel getal || ||
|-
!scope="row"|PI
| Geeft de waarde van Pi terug || {{Z+|Z20862}} ||
|-
!scope="row"|POWER
| Geeft het resultaat terug van een getal dat tot een macht is verhoogd || {{Z+|Z13647}} ||
|-
!scope="row"|PRODUCT
| Vermenigvuldigt zijn argumenten || {{Z+|Z10862}} ||
|-
!scope="row"|QUOTIENT
| Geeft het gehele deel terug van een deling || {{Z+|Z12522}} ||
|-
!scope="row"|RADIANS
| Zet graden om in radialen || ||
|-
!scope="row"|RAND
| Geeft een willekeurig getal tussen 0 en 1 terug || ||
|-
!scope="row"|RANDARRAY
| Geeft een reeks willekeurige getallen tussen 0 en 1 terug. U kunt echter het aantal rijen en kolommen aangeven om in te vullen, de minimale en maximale waarden en of u gehele getallen of decimalen wilt terug krijgen. || ||
|-
!scope="row"|RANDBETWEEN
| Geeft een willekeurig getal terug tussen de getallen die u heeft gespecificeerd || ||
|-
!scope="row"|ROMAN
| Zet een Arabisch getal om naar een Romeins getal, als tekst || {{Z+|Z11022}} ||
|-
!scope="row"|ROUND
| Rondt een getal af op een bepaald aantal cijfers achter de komma || ||
|-
!scope="row"|ROUNDDOWN
| Rondt een getal naar beneden af, richting nul || ||
|-
!scope="row"|ROUNDUP
| Rondt een getal naar boven af, weg van nul || ||
|-
!scope="row"|SEC
| Geeft de secant van een hoek terug || ||
|-
!scope="row"|SECH
| Geeft de hyperbolische secant van een hoek terug || ||
|-
!scope="row"|SEQUENCE
| Genereert een lijst met sequentiële getallen in een array, zoals 1, 2, 3, 4 || ||
|-
!scope="row"|SERIESSUM
| Geef de som terug van macht serie op basis van de formule || ||
|-
!scope="row"|SIGN
| Geeft het teken van een getal terug || ||
|-
!scope="row"|SIN
| Geeft de sinus van een hoek terug || ||
|-
!scope="row"|SINH
| Geeft de hyperbolische sinus van een getal terug || ||
|-
!scope="row"|SQRT
| Geeft een positieve wortel terug || ||
|-
!scope="row"|SQRTPI
| Geeft de wortel terug van (getal * pi) || ||
|-
!scope="row"|SUBTOTAL
| Geeft een subtotaal terug van een lijst of database || ||
|-
!scope="row"|SUM
| Telt de argumenten op || {{Z+|Z12720}} ||
|-
!scope="row"|SUMIF
| Voegt de cellen toe die gespecificeerd zijn volgens een bepaald criterium || ||
|-
!scope="row"|SUMIFS
| Voegt de cellen toe in een bereik dat aan meerdere criteria voldoet || ||
|-
!scope="row"|SUMPRODUCT
| Geeft de som van de producten van de overeenkomstige arraycomponenten terug. || ||
|-
!scope="row"|SUMSQ
| Geeft de som van de kwadraten van de argumenten terug || ||
|-
!scope="row"|SUMX2MY2
| Geeft de som terug van het verschil van kwadraten van overeenkomstige waarden in twee arrays || ||
|-
!scope="row"|SUMX2PY2
| Geeft de som terug van de som van de kwadraten van de overeenkomstige waarden in twee arrays || ||
|-
!scope="row"|SUMXMY2
| Geeft de som van kwadraten van verschillen van overeenkomstige waarden in twee arrays terug. || ||
|-
!scope="row"|TAN
| Geeft de tangens van een getal terug || ||
|-
!scope="row"|TANH
| Geeft de hyperbolische tangens van een getal terug || ||
|-
!scope="row"|TRUNC
| Kapt een getal af tot een geheel getal || ||
|}
<span id="Statistical"></span>
== Statistiek ==
{| class="wikitable collapsible sortable"
|+Lijst van statistiek Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|AVEDEV
| Geeft het gemiddelde van de absolute afwijkingen van datapunten van hun gemiddelde terug. || ||
|-
!scope="row"|AVERAGE
| Geeft het gemiddelde van zijn argumenten terug || ||
|-
!scope="row"|AVERAGEA
| Geeft het gemiddelde van zijn argumenten terug, inclusief getallen, tekst en logische waarden || ||
|-
!scope="row"|AVERAGEIF
| Geeft het gemiddelde (rekenkundig gemiddelde) terug van alle cellen in een bereik die aan een gegeven criterium voldoen || ||
|-
!scope="row"|AVERAGEIFS
| Geeft het gemiddelde (rekenkundig gemiddelde) terug van alle cellen die aan meerdere criteria voldoen. || ||
|-
!scope="row"|BETA.DIST
| Geeft de bèta-cumulatieve verdelingsfunctie terug || ||
|-
!scope="row"|BETA.INV
| Geeft de inverse van de cumulatieve verdelingsfunctie terug voor een gespecificeerde bètaverdeling || ||
|-
!scope="row"|BINOM.DIST
| Geeft de binomiale verdelingskans van de individuele term terug || ||
|-
!scope="row"|BINOM.DIST.RANGE
| Geeft de waarschijnlijkheid van een proefresultaat terug met behulp van een binaire verdeling || ||
|-
!scope="row"|BINOM.INV
| Geeft de kleinste waarde terug waarvoor de cumulatieve binomiale verdeling kleiner is dan of gelijk aan een criteriumwaarde || ||
|-
!scope="row"|CHISQ.DIST
| Geeft de cumulatieve beta-waarschijnlijkheid dichtheidsfunctie terug || ||
|-
!scope="row"|CHISQ.DIST.RT
| Geeft de eenzijdige kans van de chi-kwadraatverdeling terug || ||
|-
!scope="row"|CHISQ.INV
| Geeft de cumulatieve beta-waarschijnlijkheid dichtheidsfunctie terug || ||
|-
!scope="row"|CHISQ.INV.RT
| Geeft de inverse van de eenzijdige kans van de chi-kwadraatverdeling terug || ||
|-
!scope="row"|CHISQ.TEST
| Geeft de test voor onafhankelijkheid terug || ||
|-
!scope="row"|CONFIDENCE.NORM
| Geeft het betrouwbaarheidsinterval terug voor een populatiegemiddelde || ||
|-
!scope="row"|CONFIDENCE.T
| Geeft het vertrouwensinterval voor een bevolkingsgemiddelde terug, met behulp van de t-verdeling || ||
|-
!scope="row"|CORREL
| Geeft de correlatiecoëfficiënt tussen twee gegevenssets terug || ||
|-
!scope="row"|COUNT
| Telt het aantal getallen in de lijst met argumenten || ||
|-
!scope="row"|COUNTA
| Telt hoeveel waarden er zijn in de lijst met argumenten || ||
|-
!scope="row"|COUNTBLANK
| Telt het aantal lege cellen binnen een bereik || ||
|-
!scope="row"|COUNTIF
| Telt het aantal cellen binnen een bereik dat aan de gegeven criteria voldoet || ||
|-
!scope="row"|COUNTIFS
| Telt het aantal cellen binnen een bereik dat aan meerdere criteria voldoet || ||
|-
!scope="row"|COVARIANCE.P
| Geeft covariantie terug, het gemiddelde van de producten van gepaarde afwijkingen || ||
|-
!scope="row"|COVARIANCE.S
| Geeft de covariantie van de steekproef terug, het gemiddelde van de productafwijkingen voor elk datapuntpaar in twee datasets || ||
|-
!scope="row"|DEVSQ
| Geeft de som van kwadraten van afwijkingen terug. || ||
|-
!scope="row"|EXPON.DIST
| Geeft de exponentiële verdeling terug || ||
|-
!scope="row"|F.DIST
| Geeft de F-kansverdeling terug || ||
|-
!scope="row"|F.DIST.RT
| Geeft de F-kansverdeling terug || ||
|-
!scope="row"|F.INV
| Geeft de inverse van de F-kansverdeling terug || ||
|-
!scope="row"|F.INV.RT
| Geeft de inverse van de F-kansverdeling terug || ||
|-
!scope="row"|FISHER
| Geeft de Fisher-transformatie terug || ||
|-
!scope="row"|FISHERINV
| Geeft de inverse van de Fisher-transformatie terug || ||
|-
!scope="row"|FORECAST
| Geeft een waarde terug volgens een lineaire trend || ||
|-
!scope="row"|FORECAST.ETS
| Geeft een toekomstige waarde terug op basis van bestaande (historische) waarden door gebruik te maken van de AAA-versie van het Exponential Smoothing (ETS) algoritme || ||
|-
!scope="row"|FORECAST.ETS.CONFINT
| Geeft een betrouwbaarheidsinterval terug voor de prognosewaarde op de opgegeven streefdatum || ||
|-
!scope="row"|FORECAST.ETS.SEASONALITY
| Geeft de lengte van het repetitieve patroon terug dat Excel detecteert voor de opgegeven tijdreeks || ||
|-
!scope="row"|FORECAST.ETS.STAT
| Geeft een statistische waarde terug als resultaat van tijdreeksvoorspellingen || ||
|-
!scope="row"|FORECAST.LINEAR
| Geeft een toekomstige waarde terug op basis van bestaande waarden || ||
|-
!scope="row"|FREQUENCY
| Geeft een frequentieverdeling terug als een verticale array || ||
|-
!scope="row"|F.TEST
| Geeft het resultaat van een F-test terug || ||
|-
!scope="row"|GAMMA
| Geeft de waarde van de Gamma-functie terug || ||
|-
!scope="row"|GAMMA.DIST
| Geeft de gamma-verdeling terug || ||
|-
!scope="row"|GAMMA.INV
| Geeft de inverse van de cumulatieve gammaverdeling terug || ||
|-
!scope="row"|GAMMALN
| Geeft het natuurlijke logaritme van de gammafunctie, Γ(x) terug || ||
|-
!scope="row"|GAMMALN.PRECISE
| Geeft het natuurlijke logaritme van de gammafunctie, Γ(x) terug || ||
|-
!scope="row"|GAUSS
| Geeft 0,5 minder dan de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|GEOMEAN
| Geeft het geometrische gemiddelde terug || ||
|-
!scope="row"|GROWTH
| Geeft waarden terug langs een exponentiële trend || ||
|-
!scope="row"|HARMEAN
| Geeft het harmonische gemiddelde terug || ||
|-
!scope="row"|HYPGEOM.DIST
| Geeft de hypergeometrische verdeling terug || ||
|-
!scope="row"|INTERCEPT
| Geeft de interceptie terug van de lineaire regressielijn || ||
|-
!scope="row"|KURT
| Geeft de kurtosis van een dataset terug || ||
|-
!scope="row"|LARGE
| Geeft de k-de grootste waarde in een dataset terug || ||
|-
!scope="row"|LINEST
| Geeft de parameters volgens een lineaire trend terug || ||
|-
!scope="row"|LOGEST
| Geeft de parameters volgens een exponentiële trend terug || ||
|-
!scope="row"|LOGNORM.DIST
| Geeft de cumulatieve lognormale verdeling terug || ||
|-
!scope="row"|LOGNORM.INV
| Geeft de inverse van de lognormale cumulatieve verdeling terug || ||
|-
!scope="row"|MAX
| Geeft de maximale waarde in een lijst van argumenten terug || ||
|-
!scope="row"|MAXA
| Geeft de maximale waarde in een lijst met argumenten (inclusief getallen, tekst en logische waarden) terug || ||
|-
!scope="row"|MAXIFS
| Geeft de maximale waarde tussen cellen die zijn gespecificeerd door een bepaalde reeks voorwaarden of criteria, terug || ||
|-
!scope="row"|MEDIAN
| Geeft de mediaan van de gegeven getallen terug || ||
|-
!scope="row"|MIN
| Geeft de minimale waarde in een lijst van argumenten terug ||
* {{z+|Z19509}}
* {{Z+|Z21341}}
||
|-
!scope="row"|MINIFS
| Geeft de minimale waarde tussen cellen die zijn gespecificeerd door een bepaalde reeks voorwaarden of criteria, terug || ||
|-
!scope="row"|MINA
| Geeft de kleinste waarde in een lijst met argumenten (inclusief getallen, tekst en logische waarden) terug || ||
|-
!scope="row"|MODE.MULT
| Geeft een verticale array terug van de meest voorkomende, of repetitieve waarden in een array of databereik || ||
|-
!scope="row"|MODE.SNGL
| Geeft de meest voorkomende waarde in een dataset terug || ||
|-
!scope="row"|NEGBINOM.DIST
| Geeft de negatieve binomiale verdeling terug || ||
|-
!scope="row"|NORM.DIST
| Geeft de normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORMINV
| Geeft de inverse van de normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORM.S.DIST
| Geeft de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|NORM.S.INV
| Geeft de inverse van de standaard normale cumulatieve verdeling terug || ||
|-
!scope="row"|PEARSON
| Geeft de Pearson-productmoment-correlatiecoëfficiënt terug || ||
|-
!scope="row"|PERCENTILE.EXC
| Geeft het k-de percentiel van waarden in een bereik terug, waarbij k in het bereik 0..1 ligt, exclusief || ||
|-
!scope="row"|PERCENTILE.INC
| Geeft het k-de percentiel van waarden in een bereik terug || ||
|-
!scope="row"|PERCENTRANK.EXC
| Geeft de rangorde van een waarde in een dataset terug als een percentage (0..1, exclusief) van de dataset || ||
|-
!scope="row"|PERCENTRANK.INC
| Geeft de procentuele rang van een waarde in een dataset terug || ||
|-
!scope="row"|PERMUT
| Geeft het aantal permutaties terug voor een gegeven aantal objecten || ||
|-
!scope="row"|PERMUTATIONA
| Geeft het aantal permutaties terug voor een gegeven aantal objecten (met herhalingen) dat kan worden geselecteerd uit het totaal aantal objecten || ||
|-
!scope="row"|PHI
| Geeft de waarde van de dichtheidsfunctie (density) terug voor een standaard normale verdeling || ||
|-
!scope="row"|POISSON.DIST
| Geeft de Poisson-verdeling terug || ||
|-
!scope="row"|PROB
| Geeft de kans terug dat waarden in een bereik tussen twee limieten liggen || ||
|-
!scope="row"|QUARTILE.EXC
| Geeft het kwartiel van de dataset terug, gebaseerd op percentielwaarden van 0..1, exclusief || ||
|-
!scope="row"|QUARTILE.INC
| Geeft het kwartiel van een dataset terug || ||
|-
!scope="row"|RANK.AVG
| Geeft de rangorde van een getal in een lijst van getallen terug; dubbele waarden krijgen de gemiddelde rang || ||
|-
!scope="row"|RANK.EQ
| Geeft de rangorde van een getal in een lijst van getallen terug; dubbele waarden krijgen dezelfde rangorde || ||
|-
!scope="row"|RSQ
| Geeft het kwadraat van de Pearson-productmoment correlatiecoëfficiënt terug || ||
|-
!scope="row"|SKEW
| Geeft de scheefheid van een verdeling terug || ||
|-
!scope="row"|SKEW.P
| Geeft de scheefheid van een verdeling terug op basis van een populatie: een karakterisering van de mate van asymmetrie van een verdeling rond haar gemiddelde || ||
|-
!scope="row"|SLOPE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the slope of the linear regression line</span> || ||
|-
!scope="row"|SMALL
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the k-th smallest value in a data set</span> || ||
|-
!scope="row"|STANDARDIZE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns a normalized value</span> || ||
|-
!scope="row"|STDEV.P
| <span lang="en" dir="ltr" class="mw-content-ltr">Calculates standard deviation based on the entire population</span> || ||
|-
!scope="row"|STDEV.S
| <span lang="en" dir="ltr" class="mw-content-ltr">Estimates standard deviation based on a sample</span> || ||
|-
!scope="row"|STDEVA
| <span lang="en" dir="ltr" class="mw-content-ltr">Estimates standard deviation based on a sample, including numbers, text, and logical values</span> || ||
|-
!scope="row"|STDEVPA
| <span lang="en" dir="ltr" class="mw-content-ltr">Calculates standard deviation based on the entire population, including numbers, text, and logical values</span> || ||
|-
!scope="row"|STEYX
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the standard error of the predicted y-value for each x in the regression</span> || ||
|-
!scope="row"|T.DIST
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Percentage Points (probability) for the Student t-distribution</span> || ||
|-
!scope="row"|T.DIST.2T
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Percentage Points (probability) for the Student t-distribution</span> || ||
|-
!scope="row"|T.DIST.RT
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Student's t-distribution</span> || ||
|-
!scope="row"|T.INV
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the t-value of the Student's t-distribution as a function of the probability and the degrees of freedom</span> || ||
|-
!scope="row"|T.INV.2T
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the inverse of the Student's t-distribution</span> || ||
|-
!scope="row"|TREND
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns values along a linear trend</span> || ||
|-
!scope="row"|TRIMMEAN
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the mean of the interior of a data set</span> || ||
|-
!scope="row"|T.TEST
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the probability associated with a Student's t-test</span> || ||
|-
!scope="row"|VAR.P
| <span lang="en" dir="ltr" class="mw-content-ltr">Calculates variance based on the entire population</span> || ||
|-
!scope="row"|VAR.S
| <span lang="en" dir="ltr" class="mw-content-ltr">Estimates variance based on a sample</span> || ||
|-
!scope="row"|VARA
| <span lang="en" dir="ltr" class="mw-content-ltr">Estimates variance based on a sample, including numbers, text, and logical values</span> || ||
|-
!scope="row"|VARPA
| <span lang="en" dir="ltr" class="mw-content-ltr">Calculates variance based on the entire population, including numbers, text, and logical values</span> || ||
|-
!scope="row"|WEIBULL.DIST
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Weibull distribution</span> || ||
|-
!scope="row"|Z.TEST
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the one-tailed probability-value of a z-test</span> || ||
|}
<span id="Text"></span>
== Tekst ==
{| class="wikitable collapsible sortable"
|+Lijst van tekst Excel-functies
!scope="col"| Functienaam
!scope="col"| Beschrijving
!scope="col"| ZID
!scope="col"| Opmerking
|-
!scope="row"|ARRAYTOTEXT
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns an array of text values from any specified range</span> || ||
|-
!scope="row"|ASC
| <span lang="en" dir="ltr" class="mw-content-ltr">Changes full-width (double-byte) English letters or katakana within a character string to half-width (single-byte) characters</span> || ||
|-
!scope="row"|BAHTTEXT
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts a number to text, using the ß (baht) currency format</span> || ||
|-
!scope="row"|CHAR
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the character specified by the code number</span> || ||
|-
!scope="row"|CLEAN
| <span lang="en" dir="ltr" class="mw-content-ltr">Removes all nonprintable characters from text</span> || ||
|-
!scope="row"|CODE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns a numeric code for the first character in a text string</span> || ||
|-
!scope="row"|CONCAT
| <span lang="en" dir="ltr" class="mw-content-ltr">Combines the text from multiple ranges and/or strings, but it doesn't provide the delimiter or IgnoreEmpty arguments.</span> || {{Z+|Z10000}} || <span lang="en" dir="ltr" class="mw-content-ltr">WF only takes two strings</span>
|-
!scope="row"|CONCATENATE
| <span lang="en" dir="ltr" class="mw-content-ltr">Joins several text items into one text item</span> || {{Z+|Z10000}} ||
|-
!scope="row"|DBCS
| <span lang="en" dir="ltr" class="mw-content-ltr">Changes half-width (single-byte) English letters or katakana within a character string to full-width (double-byte) characters</span> || ||
|-
!scope="row"|DOLLAR
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts a number to text, using the $ (dollar) currency format</span> || ||
|-
!scope="row"|EXACT
| <span lang="en" dir="ltr" class="mw-content-ltr">Checks to see if two text values are identical</span> || {{Z+|Z866}} ||
|-
!scope="row"|FIND, FINDBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Finds one text value within another (case-sensitive)</span> || ||
|-
!scope="row"|FIXED
| <span lang="en" dir="ltr" class="mw-content-ltr">Formats a number as text with a fixed number of decimals</span> || ||
|-
!scope="row"|JIS
| <span lang="en" dir="ltr" class="mw-content-ltr">Changes half-width (single-byte) characters within a string to full-width (double-byte) characters</span> || ||
|-
!scope="row"|LEFT, LEFTBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the leftmost characters from a text value</span> || ||
|-
!scope="row"|LEN, LENBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the number of characters in a text string</span> || {{Z+|Z11040}} ||
|-
!scope="row"|LOWER
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts text to lowercase</span> || {{Z+|Z10047}} ||
|-
!scope="row"|MID, MIDBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns a specific number of characters from a text string starting at the position you specify</span> || ||
|-
!scope="row"|NUMBERVALUE
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts text to number in a locale-independent manner</span> || ||
|-
!scope="row"|PHONETIC
| <span lang="en" dir="ltr" class="mw-content-ltr">Extracts the phonetic (furigana) characters from a text string</span> || ||
|-
!scope="row"|PROPER
| <span lang="en" dir="ltr" class="mw-content-ltr">Capitalizes the first letter in each word of a text value</span> || {{Z+|Z10251}} ||
|-
!scope="row"|REPLACE, REPLACEBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Replaces characters within text</span> || ||
|-
!scope="row"|REPT
| <span lang="en" dir="ltr" class="mw-content-ltr">Repeats text a given number of times</span> || {{Z+|Z10911}} ||
|-
!scope="row"|RIGHT, RIGHTBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the rightmost characters from a text value</span> || ||
|-
!scope="row"|SEARCH, SEARCHBs
| <span lang="en" dir="ltr" class="mw-content-ltr">Finds one text value within another (not case-sensitive)</span> || ||
|-
!scope="row"|SUBSTITUTE
| <span lang="en" dir="ltr" class="mw-content-ltr">Substitutes new text for old text in a text string</span> || {{Z+|Z10075}} ||
|-
!scope="row"|T
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts its arguments to text</span> || ||
|-
!scope="row"|TEXT
| <span lang="en" dir="ltr" class="mw-content-ltr">Formats a number and converts it to text</span> || {{Z+|Z13713}} ||
|-
!scope="row"|TEXTAFTER
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns text that occurs after given character or string</span> || {{Z+|Z11412}} {{Z+|Z11416}} || <span lang="en" dir="ltr" class="mw-content-ltr">Excel has parameters to choose last (or Nth)</span>
|-
!scope="row"|TEXTBEFORE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns text that occurs before a given character or string</span> || {{Z+|Z11418}} {{Z+|Z11422}} || <span lang="en" dir="ltr" class="mw-content-ltr">Excel has parameters to choose last (or Nth)</span>
|-
!scope="row"|TEXTJOIN
| <span lang="en" dir="ltr" class="mw-content-ltr">Combines the text from multiple ranges and/or strings</span> || ||
|-
!scope="row"|TEXTSPLIT
| <span lang="en" dir="ltr" class="mw-content-ltr">Splits text strings by using column and row delimiters</span> || ||
|-
!scope="row"|TRIM
| <span lang="en" dir="ltr" class="mw-content-ltr">Removes spaces from text</span> || {{Z+|Z10079}} ||
|-
!scope="row"|UNICHAR
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the Unicode character that is references by the given numeric value</span> || {{Z+|Z11534}} ||
|-
!scope="row"|UNICODE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns the number (code point) that corresponds to the first character of the text</span> || {{Z+|Z11515}} ||
|-
!scope="row"|UPPER
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts text to uppercase</span> || {{Z+|Z10018}} ||
|-
!scope="row"|VALUE
| <span lang="en" dir="ltr" class="mw-content-ltr">Converts a text argument to a number</span> || ||
|-
!scope="row"|VALUETOTEXT
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns text from any specified value</span> || ||
|-
!scope="row"|ENCODEURL
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns a URL-encoded string</span> || {{Z+|Z10761}} ||
|-
!scope="row"|FILTERXML
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns specific data from the XML content by using the specified XPath</span> || ||
|-
!scope="row"|WEBSERVICE
| <span lang="en" dir="ltr" class="mw-content-ltr">Returns data from a web service.</span>
|
|
|}
[[Category:Lists of functions]]
03k9m04vbe4d4omy8d15o3jp4e4xbmm
Wikifunctions:Report a technical problem/nl
4
75935
307243
296969
2026-09-01T19:42:27Z
HanV
6833
307243
wikitext
text/x-wiki
<languages/>
{{shortcut|[[WF:BUG]]}}
{{see also
|Special:MyLanguage/WF:Status|l1=WF:Status
|Special:MyLanguage/WF:Feature_petitions|l2=WF:Feature petitions
}}
Als u een bug in Wikifuncties heeft gevonden, of een functieaanvraag heeft voor Wikifunctiens, laat het ons weten!
== Scope ==
* '''Bug''' - een probleem dat onjuiste of onverwachte resultaten oplevert op Wikifuncties. Let op dat problemen binnen Functies zelf in deze context niet als bugs worden beschouwd.
* '''Functieverzoek''' - een idee dat het ontwikkelingsteam kan toevoegen aan Wikifuncties om het nog indrukwekkender te maken.
Heeft u hulp nodig met iets anders?
: De volgende zijn '''buiten de scope''' van het werk van het -ontwikkelingsteam van Wikifunctions:
:* De '''inhoud van individuele Functies''' – Bespreek die op de overlegpagina van de Functie zelf, of vraag om hulp op [[Wikifunctions:Project chat]] of via de onderstaande kanalen; Als u denkt dat er een functie ontbreekt, kijk dan op [[Wikifunctions:Suggest a function]]
:* De '''beleidsregels van het project Wikifuncties''' – Vraag daarnaar op [[Wikifunctions:Project chat]] of bij de onderstaande kanalen
<span id="Find_existing_bugs_and_feature_requests"></span>
== Bekende problemen en functie verzoeken vinden ==
* Zie '''[[Wikifunctions:Status]]''' voor een korte samenvatting van de belangrijkste kwesties.
* U kunt '''[[phab:maniphest/query/UzvNRqsdnymk/|zoeken in de Phabricator-lijst van open taken]] ''' om te zien of uw bug- of functieverzoek al is gedocumenteerd.
<span id="Discuss_with_others"></span>
== Discussie ==
U kunt op een paar locaties vragen stellen over mogelijke bugs of ideeën voor functies. Dit kan nuttig zijn als u niet zeker weet hoe u de fout of het functieverzoek duidelijk kunt beschrijven:
* De [[Wikifunctions:Project chat|overlegpagina]].
* De belangrijkste chat op [https://t.me/Wikifunctions Telegram] of IRC {{channel|wikipedia-abstract}} (bij elkaar gevoegd) ([https://wm-bot.wmcloud.org/logs/%23wikipedia-abstract/ logs], [https://wm-bot.wmflabs.org/logs/%23wikipedia-abstract/ oude logs])
* De ontwikkelaar chat op [https://t.me/abstract_wikipedia_tech Telegram] of IRC {{channel|wikipedia-abstract-tech}} (bij elkaar gevoegd) ([https://wm-bot.wmcloud.org/logs/%23wikipedia-abstract-tech/ logs])
<span id="File_a_task_in_Phabricator"></span>
== Een taak op Phabricator plaatsen ==
Als u bekend bent met Phabricator, kunt u de taken rechtstreeks zoeken en plaatsen.
Als u het nog niet kent: Phabricator is de webgebaseerde hulpmiddel voor ontwikkelingssamenwerking die meestal wordt gebruikt om MediaWiki-softwareprojecten te beheren, waaronder Wikifuncties. Een korte samenvatting over Phabricator voor nieuwkomers, inclusief tutoriaalvideo's, staat op MediaWiki's wiki [[mw:Special:MyLanguage/Phabricator/Help|mw:Phabricator/Help]].
* U kunt '''[[phab:maniphest/query/UzvNRqsdnymk/|zoeken]] in de Phabricator-lijst van open taken''' om te zien of uw bug- of functieverzoek al is gedocumenteerd.
** De bestaande taken worden verzameld met het label (tag) '''[[phab:tag/abstract wikipedia team|#abstract wikipedia team]]'''.
* U kunt '''[https://phabricator.wikimedia.org/maniphest/task/edit/form/43/?projects=abstract_wikipedia een nieuwe taak indienen]'''. Voeg altijd toe:
** Voorbeelden
** Alle relevante links
** Voor bugs: De exacte stappen die de bug hebben veroorzaakt, zodat het team het kan reproduceren en diagnosticeren.
<span id="Languages"></span>
== Talen ==
Het ontwikkelaarsteam begrijpt een beperkt aantal talen - maar u kunt problemen melden in elke taal die u wilt.
Als het mogelijk is, geef dan een samenvatting in het Engels wanneer u een phabricator-taak aanmaakt, of vraag iemand om u te helpen.
<span id="Follow-up"></span>
== Vervolg ==
* De locaties hierboven worden gevolgd door het Wikifuncties ontwikkelingsteam, evenals door gemeenschapsleden. De reactietijd, varieert afhankelijk van de aard of complexiteit van het onderwerp, enz. Laat het ons weten als we iets hebben gemist, want dat natuurlijk best gebeuren!
* Niet alle problemen kunnen onmiddellijk worden opgelost: afhankelijk van de impact, prioriteit, enz. kunnen sommige bugs op een lage prioriteit worden gezet. U kunt de status van uw rapport over de phabricator-taak volgen.
[[Category:Report a technical problem{{#translation:}}]]
7l1fath0m7qs6yhn8qmklqy4oi56tfa
Translations:Wikifunctions:Report a technical problem/14/nl
1198
75950
307242
251357
2026-09-01T19:42:26Z
HanV
6833
307242
wikitext
text/x-wiki
De [[$1|overlegpagina]].
r8nwerbtr2t3nibxkin8x49u62a30gz
Z825
0
76339
307017
307012
2026-09-01T11:59:20Z
Mormegil
150
inf to unify?
307017
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z825"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6091",
"Z17K2": "Z825K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "this article's subject"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Wikidata-Datenobjekt-Referenz"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "référence de l'élément Wikidata"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "記事の主題"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "předmět tohoto článku"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z825K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "view language"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Sprache"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "langue"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "閲覧言語"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "zobrazovaný jazyk"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z20420",
"Z17K2": "Z825K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "view date"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Datum"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "date"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "閲覧日付"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "datum zobrazení"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z825"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Render abstract fragment"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "abstraktes Fragment rendern"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "rendre un fragment résumé"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "抽象フラグメントをレンダリング"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "vykreslit abstraktní fragment"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "This is used to power Abstract Wikipedia. Input labels are used in the editing interface there."
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "抽象ウィキペディアの基盤として使用されている。入力ラベルは、抽象ウィキペディアにおいて編集インターフェースに使用される。"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "Pomocí této funkce funguje Abstraktní Wikipedie. Štítky vstupů se tam používají v editačním rozhraní."
}
]
}
}
7we3pqvoxqahruicaz6w7f4o7mjnotq
Z32789
0
79206
307066
277128
2026-09-01T13:22:30Z
JhowieNitnek
1044
307066
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z32789"
},
"Z2K2": {
"Z1K1": "Z7",
"Z7K1": "Z6884",
"Z6884K1": "Z6091",
"Z6884K2": [
"Z6091",
{
"Z1K1": "Z6091",
"Z6091K1": "Q1317831"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q21014240"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1194697"
}
],
"Z6884K3": {
"Z1K1": "Z6",
"Z6K1": "Z32789"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Grammatical voice (active / middle / passive)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "grammatikalische Diathese (Aktiv/Medium/Passiv)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "Diatesi grammaticale (attiva / media / passiva)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Grammaticale diathese (actief / midden / passief)"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "an enumeration of 'active', 'middle', and 'passive', for languages which make such a three-way distinction when inflecting words"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "een opsomming van ‘actief’, ‘midden’ en ‘passief’, voor talen die bij de verbuiging van woorden een dergelijk drievoudig onderscheid maken"
}
]
}
}
m8xpiyxtyb2574br9jdjvn0xd3vz0hh
Z32792
0
79209
307067
277127
2026-09-01T13:23:54Z
JhowieNitnek
1044
307067
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z32792"
},
"Z2K2": {
"Z1K1": "Z7",
"Z7K1": "Z6884",
"Z6884K1": "Z6091",
"Z6884K2": [
"Z6091",
{
"Z1K1": "Z6091",
"Z6091K1": "Q1317831"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1601545"
}
],
"Z6884K3": {
"Z1K1": "Z6",
"Z6K1": "Z32792"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Grammatical voice (active / mediopassive)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "grammatikalische Diathese (Aktiv/Medium)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "Diatesi grammaticale (attiva / mediopassiva)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Grammaticale diathese (actief / mediopassief)"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "an enumeration of only 'active' and 'mediopassive', for languages which make such a binary distinction when inflecting words"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "een opsomming van uitsluitend ‘actief’ en ‘mediopassief’, voor talen die bij de verbuiging van woorden een dergelijk binair onderscheid maken"
}
]
}
}
rayh9n23sztoio5jk1f1rjd1teh29xb
Wikifunctions:Type proposals/Japanese verb conjugation class
4
79548
307183
265698
2026-09-01T18:15:39Z
Ameisenigel
44
/* Comments */ Support
307183
wikitext
text/x-wiki
== Summary ==
The "classes" or "categories" which denote the [[b:en:Japanese/Grammar/Verbs|patterns of verb conjugation]] in {{Z|1830}}.
== Uses ==
For NLG obviously.
<br>A verb Lexeme can have multiple Forms attached for its conjugated forms, but if those are incomplete or if there's a need for a verb that's missing from Wikidata entirely,
knowing the lemma form and conjugation class would let you derive the other forms.
The impetus for this proposal was that I was thinking about reimplementing [[wikt:en:WT:Japanese_verb_inflection-table_templates|this set of enwikt templates]].
<br>Current usage is that the caller has to know and pass in the lemma, kana (phonetic) spelling, and conjugation class.
With Lexemes, the caller would pass an LID, and those things would be fetched from the lemma representations and statements respectively.
I can proceed with [[Z6091]]-typed parameters, but an enum would be better on any general-use helper Functions.
== Elements of the enumeration ==
* 五段 / godan
** ア / ∅ N/A (covered by ワ / w, though there's an unused [[d:Q115910055]] for some reason)
** カ / k {{Q|54024943}}
** ガ / g {{Q|54024947}}
** サ / s {{Q|54024951}}
** ザ / z N/A ([[wikt:ja:カテゴリ:日本語_動詞|no subcategory]] in jawikt, and while there are [https://ja.wiktionary.org/w/index.php?search=intitle%3A%E3%81%9A+deepcat%3A%22%E6%97%A5%E6%9C%AC%E8%AA%9E+%E5%8B%95%E8%A9%9E%22&title=%E7%89%B9%E5%88%A5%3A%E6%A4%9C%E7%B4%A2&profile=advanced&fulltext=1&advancedSearch-current=%7B%22fields%22%3A%7B%22deepcategory%22%3A%5B%22%E6%97%A5%E6%9C%AC%E8%AA%9E+%E5%8B%95%E8%A9%9E%22%5D%2C%22intitle%22%3A%22%E3%81%9A%22%7D%7D&ns0=1&searchToken=br6vf1x6mu5n5tqfykb7m0wzb some "-ず" search results], they're "-する" verbifications)
** タ / t {{Q|54024922}}
** ダ / d N/A ([[wikt:ja:カテゴリ:日本語_動詞|no subcategory]] in jawikt and [https://ja.wiktionary.org/w/index.php?search=intitle%3A%E3%81%A5+deepcat%3A%22%E6%97%A5%E6%9C%AC%E8%AA%9E+%E5%8B%95%E8%A9%9E%22&title=%E7%89%B9%E5%88%A5%3A%E6%A4%9C%E7%B4%A2&profile=advanced&fulltext=1&advancedSearch-current=%7B%22fields%22%3A%7B%22deepcategory%22%3A%5B%22%E6%97%A5%E6%9C%AC%E8%AA%9E+%E5%8B%95%E8%A9%9E%22%5D%2C%22intitle%22%3A%22%E3%81%A5%22%7D%7D&ns0=1 no "-づ" search results])
** ナ / n {{Q|54025014}}
** ハ / h N/A ([[wikt:ja:カテゴリ:日本語_動詞|no subcategory]] in jawikt, and while there are [https://ja.wiktionary.org/w/index.php?search=intitle%3A%E3%81%B5+deepcat%3A%22%E6%97%A5%E6%9C%AC%E8%AA%9E+%E5%8B%95%E8%A9%9E%22&title=%E7%89%B9%E5%88%A5%3A%E6%A4%9C%E7%B4%A2&profile=advanced&fulltext=1&advancedSearch-current=%7B%22fields%22%3A%7B%22deepcategory%22%3A%5B%22%E6%97%A5%E6%9C%AC%E8%AA%9E+%E5%8B%95%E8%A9%9E%22%5D%2C%22intitle%22%3A%22%E3%81%B5%22%7D%7D&ns0=1 some "-ふ" search results], they're "-する" verbifications)
** バ / b {{Q|54025030}}
** パ / p N/A ([[wikt:ja:カテゴリ:日本語_動詞|no subcategory]] in jawikt and [https://ja.wiktionary.org/w/index.php?search=intitle%3A%E3%81%B7+deepcat%3A%22%E6%97%A5%E6%9C%AC%E8%AA%9E+%E5%8B%95%E8%A9%9E%22&title=%E7%89%B9%E5%88%A5%3A%E6%A4%9C%E7%B4%A2&profile=advanced&fulltext=1&advancedSearch-current=%7B%22fields%22%3A%7B%22deepcategory%22%3A%5B%22%E6%97%A5%E6%9C%AC%E8%AA%9E+%E5%8B%95%E8%A9%9E%22%5D%2C%22intitle%22%3A%22%E3%81%B7%22%7D%7D&ns0=1 no "-ぷ" search results])
** マ / m {{Q|54025055}}
** ヤ / y N/A ([[wikt:ja:カテゴリ:日本語_動詞|no subcategory]] in jawikt, and while there are [https://ja.wiktionary.org/w/index.php?search=intitle%3A%E3%82%86+deepcat%3A%22%E6%97%A5%E6%9C%AC%E8%AA%9E+%E5%8B%95%E8%A9%9E%22&title=%E7%89%B9%E5%88%A5%3A%E6%A4%9C%E7%B4%A2&profile=advanced&fulltext=1&advancedSearch-current=%7B%22fields%22%3A%7B%22deepcategory%22%3A%5B%22%E6%97%A5%E6%9C%AC%E8%AA%9E+%E5%8B%95%E8%A9%9E%22%5D%2C%22intitle%22%3A%22%E3%82%86%22%7D%7D&ns0=1 some "-ゆ" search results], they're "-する" verbifications)
** ラ / r {{Q|54025078}}
** ワ / w {{Q|54025117}}
* 上一段 / ''-iru'' ichidan
** ア / ∅ {{Q|54064435}}
** カ / k {{Q|54064438}}
** ガ / g {{Q|54064442}}
** サ / s N/A ([[wikt:ja:カテゴリ:日本語_動詞|no subcategory]] in jawikt, and while there are [https://ja.wiktionary.org/w/index.php?search=intitle%3A%E3%81%97%E3%82%8B+deepcat%3A%22%E6%97%A5%E6%9C%AC%E8%AA%9E+%E5%8B%95%E8%A9%9E%22&title=%E7%89%B9%E5%88%A5%3A%E6%A4%9C%E7%B4%A2&profile=advanced&fulltext=1&advancedSearch-current=%7B%22fields%22%3A%7B%22deepcategory%22%3A%5B%22%E6%97%A5%E6%9C%AC%E8%AA%9E+%E5%8B%95%E8%A9%9E%22%5D%2C%22intitle%22%3A%22%E3%81%97%E3%82%8B%22%7D%7D&ns0=1 some "-しる" search results], they're all godan)
** ザ / z {{Q|54064446}}
** タ / t {{Q|54064449}}
** ダ / d N/A ([[wikt:ja:カテゴリ:日本語_動詞|no subcategory]] in jawikt and [https://ja.wiktionary.org/w/index.php?search=intitle%3A%E3%81%A2%E3%82%8B+deepcat%3A%22%E6%97%A5%E6%9C%AC%E8%AA%9E+%E5%8B%95%E8%A9%9E%22&title=%E7%89%B9%E5%88%A5%3A%E6%A4%9C%E7%B4%A2&profile=advanced&fulltext=1&advancedSearch-current=%7B%22fields%22%3A%7B%22deepcategory%22%3A%5B%22%E6%97%A5%E6%9C%AC%E8%AA%9E+%E5%8B%95%E8%A9%9E%22%5D%2C%22intitle%22%3A%22%E3%81%A2%E3%82%8B%22%7D%7D&ns0=1 no "-ぢる" search results], possibly because any such words would be spelled "-じる" instead)
** ナ / n {{Q|54064451}}
** ハ / h {{Q|116448272}}
** バ / b {{Q|54064457}}
** パ / p N/A ([[wikt:ja:カテゴリ:日本語_動詞|no subcategory]] in jawikt and [https://ja.wiktionary.org/w/index.php?search=intitle%3A%E3%81%B4%E3%82%8B+deepcat%3A%22%E6%97%A5%E6%9C%AC%E8%AA%9E+%E5%8B%95%E8%A9%9E%22&title=%E7%89%B9%E5%88%A5%3A%E6%A4%9C%E7%B4%A2&profile=advanced&fulltext=1&advancedSearch-current=%7B%22fields%22%3A%7B%22deepcategory%22%3A%5B%22%E6%97%A5%E6%9C%AC%E8%AA%9E+%E5%8B%95%E8%A9%9E%22%5D%2C%22intitle%22%3A%22%E3%81%B4%E3%82%8B%22%7D%7D&ns0=1 no "-ぴる" search results])
** マ / m {{Q|54064389}}
** ヤ / y N/A (''yiru'' [[w:en:Hiragana#yi|doesn't appear]] in Japanese words)
** ラ / r {{Q|54064460}}
** ワ / w N/A (''wiru'' [[w:en:Hiragana#e_and_i|doesn't appear]] in Japanese words)
* 下一段 / ''-eru'' ichidan
** ア / ∅ {{Q|54072066}}
** カ / k {{Q|54072093}}
** ガ / g {{Q|54072108}}
** サ / s {{Q|54072135}}
** ザ / z {{Q|54072150}}
** タ / t {{Q|54072181}}
** ダ / d {{Q|54072231}}
** ナ / n {{Q|54072263}}
** ハ / h {{Q|54072308}}
** バ / b {{Q|54072417}}
** パ / p N/A ([[wikt:ja:カテゴリ:日本語_動詞|no subcategory]] in jawikt and [https://ja.wiktionary.org/w/index.php?search=intitle%3A%E3%81%BA%E3%82%8B+deepcat%3A%22%E6%97%A5%E6%9C%AC%E8%AA%9E+%E5%8B%95%E8%A9%9E%22&title=%E7%89%B9%E5%88%A5%3A%E6%A4%9C%E7%B4%A2&profile=advanced&fulltext=1&advancedSearch-current=%7B%22fields%22%3A%7B%22deepcategory%22%3A%5B%22%E6%97%A5%E6%9C%AC%E8%AA%9E+%E5%8B%95%E8%A9%9E%22%5D%2C%22intitle%22%3A%22%E3%81%BA%E3%82%8B%22%7D%7D&ns0=1 no "-ぺる" search results])
** マ / m {{Q|54072457}}
** ヤ / y N/A (''yeru'' [[w:en:Hiragana#ye|doesn't appear]] in Japanese words)
** ラ / r {{Q|54072495}}
** ワ / w N/A (''weru'' [[w:en:Hiragana#e_and_i|doesn't appear]] in Japanese words)
* 変格 / irregular
** カ行変格 / ''ka''-gyō henkaku {{Q|11275228}} for a single, less common lexeme
** サ行変格 / ''sa''-gyō henkaku {{Q|11146472}} for a single, common lexeme, and also for every instance of verbification
** ア行下二段 / ''a''-gyō shimo nidan {{Q|136008319}} for a single, less common lexeme
I'm not a native speaker, so this may not be the most idiomatic ordering, and I may have missed an irregular verb which is still used in modern Japanese.
The [[b:en:Japanese/Grammar/Verbs#Other_irregularities|Wikibooks page I referenced]] has more than these three irregular classes,
including some fossil words used for politeness, but it seems in Wikidata those are all non-verbs or regular verbs.
== Alternatives ==
I think this smaller set:
* 五段 / godan {{Q|1188469}}
* 一段 / ichidan {{Q|53611710}}
* 変格 / irregular
** カ行変格 / ''ka''-gyō henkaku {{Q|11275228}}
** サ行変格 / ''sa''-gyō henkaku {{Q|11146472}}
** ア行下二段 / ''a''-gyō shimo nidan {{Q|136008319}}
...would also be sufficient, as the subclass can then be inferred from the lemma form.
But I went with the above since those are the ones actually in use with {{P|5186}} on Lexemes, meaning they could be used directly and it saves that little bit of computation.
== Comments ==
''For general comments, please reply to the proposer.''
* {{s}} as proposer. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 22:18, 1 April 2026 (UTC)
:@[[User:Higa4|Higa4]] I noticed you were working on Japanese NLG, could you check whether I've made any mistakes here? [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 22:25, 1 April 2026 (UTC)
:: {{s}} @[[User:YoshiRulz|YoshiRulz]] I checked [https://www.wikidata.org/wiki/Wikidata:Lexicographical_data/Documentation/Languages/ja/modeling#%E6%B4%BB%E7%94%A8%E3%81%AE%E7%A8%AE%E9%A1%9E%20(P5186) our modeling] and it looks fine to me. Thanks a lot! [[User:Higa4|Higa4]] ([[User talk:Higa4|talk]]) 01:11, 2 April 2026 (UTC)
* {{s}} once we have made Wikidata items for the missing classes. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 23:37, 1 April 2026 (UTC)
*:I'm not sure they're missing per se. One thing I forgot to check was jawikt's categories, and indeed none of them exist there. Web searches for a few wordings only brought up 2 relevant results, both threads asking whether they existed, both inconclusive. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 01:09, 2 April 2026 (UTC)
*::Ok, then we surely need input from a few native speakers or linguists. [[User:99of9|99of9]] ([[User talk:99of9|talk]]) 01:57, 2 April 2026 (UTC)
* {{o}} per confusion above and [[WF:Type_proposals/French_tenses#c-Feeglgeef-20250119203500-Discussion_and_!votes|my opposition]] on [[Wikifunctions:Type proposals/French tenses]]. [[User:Feeglgeef|Feeglgeef]] ([[User talk:Feeglgeef|talk]]) 18:59, 15 April 2026 (UTC)
* {{S}} --[[User:Ameisenigel|Ameisenigel]] ([[User talk:Ameisenigel|talk]]) 18:15, 1 September 2026 (UTC)
[[Category:Japanese]]
cbsaigpavj3p0w97jw13z07sp3f13oo
Z33198
0
79821
307057
282430
2026-09-01T13:16:32Z
JhowieNitnek
1044
307057
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z33198"
},
"Z2K2": {
"Z1K1": "Z4",
"Z4K1": "Z33198",
"Z4K2": [
"Z3",
{
"Z1K1": "Z3",
"Z3K1": "Z20838",
"Z3K2": "Z33198K1",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "real"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "parte reale"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "reálná"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "real"
}
]
},
"Z3K4": {
"Z1K1": "Z40",
"Z40K1": "Z42"
}
},
{
"Z1K1": "Z3",
"Z3K1": "Z20838",
"Z3K2": "Z33198K2",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "imaginary"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "parte immaginaria"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "imaginární"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "imaginär"
}
]
},
"Z3K4": {
"Z1K1": "Z40",
"Z40K1": "Z42"
}
}
],
"Z4K3": "Z101",
"Z4K4": "Z33202",
"Z4K7": [
"Z46",
"Z33199",
"Z33209"
],
"Z4K8": [
"Z64",
"Z33200",
"Z33210"
]
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Complex number (float64)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "Numero complesso (float64)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "komplexe Zahl (Float64)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1645",
"Z11K2": "复数(64位浮点数)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Complex getal (float64)"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1787",
"Z31K2": [
"Z6",
"Numero complesso",
"complex128"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1062",
"Z31K2": [
"Z6",
"Komplexní číslo"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"Complex number",
"complex128"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1645",
"Z31K2": [
"Z6",
"复数",
"复数128"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1157",
"Z31K2": [
"Z6",
"Complex getal",
"complex128"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "a complex number approximated by two float64 values"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "Numero complesso composto da due float64"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "reprezentace komplexního čísla sestavená z dvojice hodnot typu float64"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "eine komplexe Zahl, angenähert durch zwei Float64-Werte"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1645",
"Z11K2": "由两个64位浮点数值近似表示的复数"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "een complex getal dat wordt benaderd door twee float64-waarden"
}
]
}
}
67k5aaloo9voljabcgot4xxvsd9xoao
307059
307057
2026-09-01T13:18:46Z
JhowieNitnek
1044
307059
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z33198"
},
"Z2K2": {
"Z1K1": "Z4",
"Z4K1": "Z33198",
"Z4K2": [
"Z3",
{
"Z1K1": "Z3",
"Z3K1": "Z20838",
"Z3K2": "Z33198K1",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "real"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "parte reale"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "reálná"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "real"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "reëel "
}
]
},
"Z3K4": {
"Z1K1": "Z40",
"Z40K1": "Z42"
}
},
{
"Z1K1": "Z3",
"Z3K1": "Z20838",
"Z3K2": "Z33198K2",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "imaginary"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "parte immaginaria"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "imaginární"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "imaginär"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "denkbeeldig"
}
]
},
"Z3K4": {
"Z1K1": "Z40",
"Z40K1": "Z42"
}
}
],
"Z4K3": "Z101",
"Z4K4": "Z33202",
"Z4K7": [
"Z46",
"Z33199",
"Z33209"
],
"Z4K8": [
"Z64",
"Z33200",
"Z33210"
]
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Complex number (float64)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "Numero complesso (float64)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "komplexe Zahl (Float64)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1645",
"Z11K2": "复数(64位浮点数)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Complex getal (64-bits zwevendekommagetal)"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1787",
"Z31K2": [
"Z6",
"Numero complesso",
"complex128"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1062",
"Z31K2": [
"Z6",
"Komplexní číslo"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"Complex number",
"complex128"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1645",
"Z31K2": [
"Z6",
"复数",
"复数128"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1157",
"Z31K2": [
"Z6",
"Complex getal",
"complex128"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "a complex number approximated by two float64 values"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "Numero complesso composto da due float64"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "reprezentace komplexního čísla sestavená z dvojice hodnot typu float64"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "eine komplexe Zahl, angenähert durch zwei Float64-Werte"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1645",
"Z11K2": "由两个64位浮点数值近似表示的复数"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "een complex getal dat wordt benaderd door twee 64-bits zwevendekommagetal-waarden"
}
]
}
}
dckivcrqj70aw058u5xmb8cl8sor8so
Z33202
0
79825
307076
284038
2026-09-01T13:30:09Z
JhowieNitnek
1044
307076
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z33202"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z33198",
"Z17K2": "Z33202K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "this"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "primo numero complesso"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "dit"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z33198",
"Z17K2": "Z33202K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "that"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "secondo numero complesso"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "dat"
}
]
}
}
],
"Z8K2": "Z40",
"Z8K3": [
"Z20",
"Z33203",
"Z33204"
],
"Z8K4": [
"Z14",
"Z33211",
"Z33212",
"Z33205"
],
"Z8K5": "Z33202"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "same complex128"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "stesso Numero complesso (float64)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "complex128 yang sama"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "zelfde complex128"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"equality",
"==",
"="
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1787",
"Z31K2": [
"Z6",
"stesso numero complesso"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1157",
"Z31K2": [
"Z6",
"gelijkheid"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
rlnql9ek7en52qf8bz0yot548xspbiv
Z33568
0
80354
307053
277130
2026-09-01T13:14:16Z
JhowieNitnek
1044
307053
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z33568"
},
"Z2K2": {
"Z1K1": "Z7",
"Z7K1": "Z6884",
"Z6884K1": "Z6091",
"Z6884K2": [
"Z6091",
{
"Z1K1": "Z6091",
"Z6091K1": "Q539808"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q651641"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q166097"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q568140"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q989463"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1417850"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q33129605"
}
],
"Z6884K3": {
"Z1K1": "Z6",
"Z6K1": "Z33568"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Word order"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "ordine delle parole"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Wortreihenfolge"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "Slovosled"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Woordvolgorde"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1787",
"Z31K2": [
"Z6",
"ordinamento morfosintattico"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "obvyklé pořadí slov podle gramatiky nějakého jazyka"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "an enumeration of the 6 groups of languages (+ free order), classified by the expected ordering of the subject, object, and verb in simple sentences in that language"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "een opsomming van de 6 taalgroepen (+ vrije volgorde), ingedeeld op basis van de verwachte volgorde van het onderwerp, het lijdend voorwerp en het werkwoord in eenvoudige zinnen in die taal"
}
]
}
}
resuxr8cxg0tferyx75ugwf659fwijh
Z33827
0
80835
307052
275284
2026-09-01T13:12:48Z
JhowieNitnek
1044
307052
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z33827"
},
"Z2K2": {
"Z1K1": "Z7",
"Z7K1": "Z6884",
"Z6884K1": "Z6091",
"Z6884K2": [
"Z6091",
{
"Z1K1": "Z6091",
"Z6091K1": "Q1311"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1312"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1313"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1314"
}
],
"Z6884K3": {
"Z1K1": "Z6",
"Z6K1": "Z33827"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Season"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "Stagione temperata"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "Roční období"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Jahreszeit"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1709",
"Z11K2": "gadalaiks"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "saison"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Seizoen"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"4 seasons",
"four seasons",
"temperate season",
"western season",
"european season"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1787",
"Z31K2": [
"Z6",
"4 stagioni",
"Quattro stagioni"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1004",
"Z31K2": [
"Z6",
"4 saisons"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1157",
"Z31K2": [
"Z6",
"4 seizoenen",
"vier seizoenen",
"gematigd seizoen",
"Europees seizoen",
"Westers seizoen"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "winter, spring, summer, and autumn or fall"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "jedno ze čtyř ročních období mírného pásu"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Winter, Frühling, Sommer, Herbst"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1709",
"Z11K2": "ziema, pavasaris, vasara un rudens"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "hiver, printemps, été, et automne"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "winter, lente, zomer en herfst"
}
]
}
}
7azebmkfc47pyxdol1ko8y3du1xcclq
Z36137
0
85212
307393
296869
2026-09-02T11:42:08Z
Ornithorynque liminaire
1539
fr
307393
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36137"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6091",
"Z17K2": "Z36137K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "entity"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z36137K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14",
"Z36138"
],
"Z8K5": "Z36137"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "infobox for literary work"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "infobox littérature"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"infobox for book",
"infobox for novel"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1004",
"Z31K2": [
"Z6",
"infobox livre",
"infobox roman",
"infobox nouvelle",
"infobox conte"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
sv6fbm83sun3zi19gwljogiuh9kejfp
Z36193
0
85308
307022
298293
2026-09-01T12:02:52Z
鈴音雨
101019
japanese
307022
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36193"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6091",
"Z17K2": "Z36193K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Wikidata item reference"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1592",
"Z11K2": "plats"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "item Wikidata"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "ウィキデータ項目参照"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z36193K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1592",
"Z11K2": "språk"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "langue"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "言語"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20",
"Z36196",
"Z36352"
],
"Z8K4": [
"Z14",
"Z36195"
],
"Z8K5": "Z36193"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "population sentence"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1592",
"Z11K2": "mening för befolkningsmängd"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "population"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "人口に関する文章"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1004",
"Z31K2": [
"Z6",
"phrase de population"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "A dated referenced population sentence from the best WD statement available, ideally including other qualifiers. Simple form: \"The population of Australia was 27,614,411 in 2025.\""
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "phrase indiquant la population d'une entité (avec date). Exemple : Lausanne compte 144 873 habitants au 31 décembre 2024"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "日付と参照元が明記された、入手可能な最良のウィキデータ文からの人口に関する文章。理想的には、その他の修飾語も含む。簡潔な形式:「オーストラリアの人口は、2025年時点で27,614,411人であった。」"
}
]
}
}
d7mfikzqsd1955tybcf0r3chm58cfwi
Z36194
0
85309
307021
306173
2026-09-01T12:01:51Z
鈴音雨
101019
307021
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36194"
},
"Z2K2": {
"Z1K1": "Z14294",
"Z14294K1": [
"Z14293",
{
"Z1K1": "Z14293",
"Z14293K1": "Z36190",
"Z14293K2": "Z33034"
},
{
"Z1K1": "Z14293",
"Z14293K1": "Z37194",
"Z14293K2": [
"Z60",
"Z1011",
"Z1592",
"Z1576",
"Z1078",
"Z1531",
"Z1532",
"Z1137",
"Z1048",
"Z1844",
"Z1226",
"Z1014",
"Z1609"
]
},
{
"Z1K1": "Z14293",
"Z14293K1": "Z39629",
"Z14293K2": "Z33463"
},
{
"Z1K1": "Z14293",
"Z14293K1": "Z40156",
"Z14293K2": "Z33056"
},
{
"Z1K1": "Z14293",
"Z14293K1": "Z40789",
"Z14293K2": "Z34003"
}
],
"Z14294K2": "Z36197"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "config for population sentence"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1592",
"Z11K2": "konfiguration för befolkningsmängdsmening"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "config. pour phrase de population"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "人口に関する文章の言語別設定"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
4pyuz4yv0g0xx5ltzouxixx0ij13by6
Z36209
0
85324
307029
305099
2026-09-01T12:16:21Z
鈴音雨
101019
307029
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36209"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z1",
"Z17K2": "Z36209K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "value"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "値"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z36209K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "言語"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20",
"Z36210",
"Z36211",
"Z36213",
"Z36214",
"Z39068"
],
"Z8K4": [
"Z14",
"Z36212"
],
"Z8K5": "Z36209"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "display any value from WD triple"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "ウィキデータのトリプルから得られた任意の値を表示"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"display value",
"display any value returned from WD triple"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Return the best possible HTML representing the value returned from a Wikidata triple. QIDs linked. Pass value as a precomputed string/monolingual if linking not desired."
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "ウィキデータのトリプルから返された値を、可能な限り適切なHTMLで表します。QIDにはリンクを付ける。リンクが不要な場合は、事前計算した文字列または単一言語テキストを値として渡します。"
}
]
}
}
lss0hvmyb7muyuztyu0xbn2n12370ze
Z36218
0
85333
307027
304983
2026-09-01T12:11:10Z
鈴音雨
101019
307027
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36218"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6091",
"Z17K2": "Z36218K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "subject reference"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1592",
"Z11K2": "ämne"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "主語参照"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z6092",
"Z17K2": "Z36218K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "property reference"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1592",
"Z11K2": "egenskap"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "プロパティ参照"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z36218K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1592",
"Z11K2": "språk"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "言語"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20",
"Z36221",
"Z36223",
"Z36222",
"Z36440",
"Z38110",
"Z38358",
"Z39384",
"Z39707"
],
"Z8K4": [
"Z14",
"Z36220"
],
"Z8K5": "Z36218"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "specific property of subject is value from WD"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1532",
"Z11K2": "spesifieke eienskap van onderwerp is waarde van WD"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1576",
"Z11K2": "specifa eco de subjekto estas valoro de WD"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1402",
"Z11K2": "специфично својство на субјектот е вредност од WD"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1137",
"Z11K2": "propiedat spesífiko di sujeto ta balor for di WD"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "eigenschap van onderwerp is waarde uit WD."
},
{
"Z1K1": "Z11",
"Z11K1": "Z1592",
"Z11K2": "en av ämnets egenskaper från Wikidata"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "ウィキデータから\u003C主題\u003Eの\u003Cプロパティ\u003Eは\u003C値\u003Eである"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "propriété de l'entité, issue de Wikidata"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"sentence for triple with specified property",
"the X of Y is Z",
"Wikidata value sentence",
"specific property of subject is value",
"value from Wikidata",
"value of a property from Wikidata",
"subject's value of a Wikidata property"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1830",
"Z31K2": [
"Z6",
"XのYはZである。"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "HTML sentence for \"The \u003Cproperty\u003E of \u003Csubject\u003E is \u003Cvalue\u003E.\" Attempt for any specific (single-best?-valued) property triple. Use for triples in present tense."
},
{
"Z1K1": "Z11",
"Z11K1": "Z1592",
"Z11K2": "skapar en mening på formen \"\u003CÄmne\u003Es \u003Cegenskap\u003E är \u003Cvärde från Wikidata\u003E.\" som ett HTML-fragment"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "La \u003Cpropriété\u003E du \u003Csujet\u003E est \u003Cvaleur\u003E. Utilise la meilleure valeur pour cette propriété. Conjugué au présent."
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "「〈主語〉の〈プロパティ〉は〈値〉である。」形式のHTML文を生成します。任意の特定プロパティについて、最良ランクの単一値を用いるトリプルを想定します。現在時制のトリプル向け。"
}
]
}
}
rprm7x3zfg0i3whgolyurmt78rmwbo6
Z36219
0
85334
307026
304560
2026-09-01T12:09:58Z
鈴音雨
101019
japanese
307026
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36219"
},
"Z2K2": {
"Z1K1": "Z14294",
"Z14294K1": [
"Z14293",
{
"Z1K1": "Z14293",
"Z14293K1": "Z36232",
"Z14293K2": "Z33034"
},
{
"Z1K1": "Z14293",
"Z14293K1": "Z36253",
"Z14293K2": [
"Z60",
"Z1011"
]
},
{
"Z1K1": "Z14293",
"Z14293K1": "Z36682",
"Z14293K2": [
"Z60",
"Z1532",
"Z1576",
"Z1402",
"Z1137",
"Z1062",
"Z1272",
"Z1078"
]
},
{
"Z1K1": "Z14293",
"Z14293K1": "Z36731",
"Z14293K2": "Z34075"
},
{
"Z1K1": "Z14293",
"Z14293K1": "Z37046",
"Z14293K2": [
"Z60",
"Z1592"
]
},
{
"Z1K1": "Z14293",
"Z14293K1": "Z37225",
"Z14293K2": "Z34003"
},
{
"Z1K1": "Z14293",
"Z14293K1": "Z37877",
"Z14293K2": "Z33056"
},
{
"Z1K1": "Z14293",
"Z14293K1": "Z39154",
"Z14293K2": [
"Z60",
"Z1014"
]
},
{
"Z1K1": "Z14293",
"Z14293K1": "Z40228",
"Z14293K2": [
"Z60",
"Z1820",
"Z2038"
]
}
],
"Z14294K2": "Z36243"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "config for specific property of subject is value"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "\u003C主題\u003Eの\u003Cプロパティ\u003Eは\u003C値\u003Eであるの言語別設定"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "these (currently) must return HTML"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "(現状)HTMLを返す必要があります"
}
]
}
}
p5bx86q7osgzyk9jvqdhoyp36ef0930
307041
307026
2026-09-01T12:49:06Z
Mormegil
150
that does not work in Czech
307041
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36219"
},
"Z2K2": {
"Z1K1": "Z14294",
"Z14294K1": [
"Z14293",
{
"Z1K1": "Z14293",
"Z14293K1": "Z36232",
"Z14293K2": "Z33034"
},
{
"Z1K1": "Z14293",
"Z14293K1": "Z36253",
"Z14293K2": [
"Z60",
"Z1011"
]
},
{
"Z1K1": "Z14293",
"Z14293K1": "Z36682",
"Z14293K2": [
"Z60",
"Z1532",
"Z1576",
"Z1402",
"Z1137",
"Z1272",
"Z1078"
]
},
{
"Z1K1": "Z14293",
"Z14293K1": "Z36731",
"Z14293K2": "Z34075"
},
{
"Z1K1": "Z14293",
"Z14293K1": "Z37046",
"Z14293K2": [
"Z60",
"Z1592"
]
},
{
"Z1K1": "Z14293",
"Z14293K1": "Z37225",
"Z14293K2": "Z34003"
},
{
"Z1K1": "Z14293",
"Z14293K1": "Z37877",
"Z14293K2": "Z33056"
},
{
"Z1K1": "Z14293",
"Z14293K1": "Z39154",
"Z14293K2": [
"Z60",
"Z1014"
]
},
{
"Z1K1": "Z14293",
"Z14293K1": "Z40228",
"Z14293K2": [
"Z60",
"Z1820",
"Z2038"
]
}
],
"Z14294K2": "Z36243"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "config for specific property of subject is value"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "\u003C主題\u003Eの\u003Cプロパティ\u003Eは\u003C値\u003Eであるの言語別設定"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "these (currently) must return HTML"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "(現状)HTMLを返す必要があります"
}
]
}
}
qxjsj276sos0r4qihzd15rknr3zz9ow
Z36684
0
86240
307040
286271
2026-09-01T12:48:20Z
Mormegil
150
that does not work in Czech
307040
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36684"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z36682",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z32234",
"Z32234K1": [
"Z1",
{
"Z1K1": "Z7",
"Z7K1": "Z34096",
"Z34096K1": {
"Z1K1": "Z7",
"Z7K1": "Z36610",
"Z36610K1": {
"Z1K1": "Z18",
"Z18K1": "Z36682K4"
}
},
"Z34096K2": {
"Z1K1": "Z18",
"Z18K1": "Z36682K4"
}
},
{
"Z1K1": "Z7",
"Z7K1": "Z32556",
"Z32556K1": {
"Z1K1": "Z7",
"Z7K1": "Z24766",
"Z24766K1": {
"Z1K1": "Z7",
"Z7K1": "Z35364",
"Z35364K1": {
"Z1K1": "Z7",
"Z7K1": "Z35036",
"Z35036K1": {
"Z1K1": "Z18",
"Z18K1": "Z36682K2"
},
"Z35036K2": [
"Z6030",
"Z6036"
],
"Z35036K3": {
"Z1K1": "Z18",
"Z18K1": "Z36682K4"
},
"Z35036K4": [
"Z6092",
{
"Z1K1": "Z6092",
"Z6092K1": "P1629"
}
]
}
},
"Z24766K2": {
"Z1K1": "Z18",
"Z18K1": "Z36682K4"
}
},
"Z32556K2": {
"Z1K1": "Z7",
"Z7K1": "Z14396",
"Z14396K1": {
"Z1K1": "Z7",
"Z7K1": "Z29825",
"Z29825K1": {
"Z1K1": "Z18",
"Z18K1": "Z36682K4"
},
"Z29825K2": {
"Z1K1": "Z18",
"Z18K1": "Z36682K2"
}
}
}
},
{
"Z1K1": "Z7",
"Z7K1": "Z22193",
"Z22193K1": {
"Z1K1": "Z18",
"Z18K1": "Z36682K4"
},
"Z22193K2": [
"Z60",
"Z1002",
"Z1532",
"Z1576",
"Z1402",
"Z1137",
"Z1272",
"Z1078"
],
"Z22193K3": [
"Z6",
" of ",
" van ",
" de ",
" на ",
" di ",
" od ",
" dari ",
" (of) "
]
},
{
"Z1K1": "Z7",
"Z7K1": "Z32220",
"Z32220K1": {
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z36682K4"
},
"Z11K2": "Optional \"the \""
}
},
{
"Z1K1": "Z7",
"Z7K1": "Z24766",
"Z24766K1": {
"Z1K1": "Z18",
"Z18K1": "Z36682K1"
},
"Z24766K2": {
"Z1K1": "Z18",
"Z18K1": "Z36682K4"
}
},
" ",
{
"Z1K1": "Z7",
"Z7K1": "Z36625",
"Z36625K1": {
"Z1K1": "Z18",
"Z18K1": "Z36682K4"
}
},
{
"Z1K1": "Z7",
"Z7K1": "Z32220",
"Z32220K1": {
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z36682K4"
},
"Z11K2": "Optional \"the \""
}
},
{
"Z1K1": "Z7",
"Z7K1": "Z36209",
"Z36209K1": {
"Z1K1": "Z18",
"Z18K1": "Z36682K3"
},
"Z36209K2": {
"Z1K1": "Z18",
"Z18K1": "Z36682K4"
}
},
"."
]
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "specific property of subject is value (Simple) cmp"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
mo4j15d65zpthimpowz6ihejzfoki0z
Talk:Z36682
1
86246
307137
286272
2026-09-01T15:59:17Z
HenkvD
1290
-/- cs
307137
wikitext
text/x-wiki
== Simple rules for specific property of subject is value for a few languages ==
This function and implementation is for a few languages with simple rules for specific property of subject is value.
:[en] The A of B is C. (already in a different function)
:[af] Die A van B is C.
:[eo] La A de B estas C.
:[mk] A на B e C.
:[pap] E A di B ta C.
[[User:HenkvD|HenkvD]] ([[User talk:HenkvD|talk]]) 06:20, 22 June 2026 (UTC)
Added:
:<s>[cs] A z B je C.</s>
:[hr] A od B je C.
:[id] A dari B adalah C.
[[User:HenkvD|HenkvD]] ([[User talk:HenkvD|talk]]) 14:31, 25 June 2026 (UTC)
: Apparently this does not work for [cs] [[User:HenkvD|HenkvD]] ([[User talk:HenkvD|talk]]) 15:58, 1 September 2026 (UTC)
11xcgydsngd2871mreygusngp8jls2p
Z36713
0
86275
307090
304426
2026-09-01T13:38:02Z
鈴音雨
101019
use [[Z40804]]
307090
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36713"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z25326",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z802",
"Z802K1": {
"Z1K1": "Z7",
"Z7K1": "Z25351",
"Z25351K1": {
"Z1K1": "Z18",
"Z18K1": "Z25326K1"
}
},
"Z802K2": {
"Z1K1": "Z7",
"Z7K1": "Z25356",
"Z25356K1": {
"Z1K1": "Z18",
"Z18K1": "Z25326K1"
},
"Z25356K2": {
"Z1K1": "Z18",
"Z18K1": "Z25326K2"
}
},
"Z802K3": {
"Z1K1": "Z7",
"Z7K1": "Z802",
"Z802K1": {
"Z1K1": "Z7",
"Z7K1": "Z13381",
"Z13381K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q8142"
},
"Z13381K2": {
"Z1K1": "Z7",
"Z7K1": "Z29623",
"Z29623K1": {
"Z1K1": "Z7",
"Z7K1": "Z25303",
"Z25303K1": {
"Z1K1": "Z18",
"Z18K1": "Z25326K1"
}
}
}
},
"Z802K2": {
"Z1K1": "Z7",
"Z7K1": "Z40804",
"Z40804K1": {
"Z1K1": "Z18",
"Z18K1": "Z25326K1"
},
"Z40804K2": {
"Z1K1": "Z18",
"Z18K1": "Z25326K2"
}
},
"Z802K3": {
"Z1K1": "Z7",
"Z7K1": "Z10000",
"Z10000K1": {
"Z1K1": "Z7",
"Z7K1": "Z10000",
"Z10000K1": {
"Z1K1": "Z7",
"Z7K1": "Z25356",
"Z25356K1": {
"Z1K1": "Z18",
"Z18K1": "Z25326K1"
},
"Z25356K2": {
"Z1K1": "Z18",
"Z18K1": "Z25326K2"
}
},
"Z10000K2": {
"Z1K1": "Z7",
"Z7K1": "Z40218",
"Z40218K1": {
"Z1K1": "Z7",
"Z7K1": "Z25303",
"Z25303K1": {
"Z1K1": "Z18",
"Z18K1": "Z25326K1"
}
},
"Z40218K2": {
"Z1K1": "Z18",
"Z18K1": "Z25326K2"
}
}
},
"Z10000K2": {
"Z1K1": "Z7",
"Z7K1": "Z14613",
"Z14613K1": {
"Z1K1": "Z7",
"Z7K1": "Z36697",
"Z36697K1": {
"Z1K1": "Z7",
"Z7K1": "Z25303",
"Z25303K1": {
"Z1K1": "Z18",
"Z18K1": "Z25326K1"
}
},
"Z36697K2": {
"Z1K1": "Z18",
"Z18K1": "Z25326K2"
}
},
"Z14613K2": "Z13128",
"Z14613K3": "Z36687"
}
}
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "display quantity with digits and unit w fallbacks"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
0y1mucjw093jvsf8sn8bpv5dcinw6an
Z37225
0
87014
307028
298364
2026-09-01T12:11:58Z
鈴音雨
101019
japanese
307028
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z37225"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6091",
"Z17K2": "Z37225K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "主題の参照"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "subject reference"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z6092",
"Z17K2": "Z37225K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "プロパティの参照"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "property reference"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z1",
"Z17K2": "Z37225K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "値 (文字列、数量、単一言語テキスト、QID...)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "value (string, quantity, monolingual text, QID...)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z37225K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "言語"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language (almost always Japanese)"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20",
"Z37230"
],
"Z8K4": [
"Z14",
"Z37228"
],
"Z8K5": "Z37225"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "\u003C主題\u003Eの\u003Cプロパティ\u003Eは\u003C値\u003Eである (日本語)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "specific property of subject is value, Japanese"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
77zd0e1ifyft9s4596ntfpz34ogx02f
Z37776
0
87900
307382
291124
2026-09-02T10:13:51Z
HenkvD
1290
influenced by-sentence. Default
307382
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z37776"
},
"Z2K2": {
"Z1K1": "Z14294",
"Z14294K1": [
"Z14293",
{
"Z1K1": "Z14293",
"Z14293K1": "Z37774",
"Z14293K2": "Z33034"
}
],
"Z14294K2": "Z40833"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "config for influenced by sentence"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
q7j9dbu69dqbm6aj9qmb4bawn1aewn8
Z38095
0
88331
307298
293260
2026-09-01T21:14:28Z
WikiLambda system
3
Updated the implementation list (see [[Help:Wikifunctions/Implementation_ordering_and_choosing|About implementation selection]])
307298
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z38095"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z13518"
},
"Z17K2": "Z38095K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Windspeeds"
}
]
}
}
],
"Z8K2": "Z19677",
"Z8K3": [
"Z20",
"Z38098",
"Z38099",
"Z38100"
],
"Z8K4": [
"Z14",
"Z38096",
"Z38097",
"Z38124"
],
"Z8K5": "Z38095"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Calculate A.C.E. over list of windspeeds"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"Calculate A.C.E.",
"Calculate ACE",
"Calculate accumulated cyclone energy",
"Calculate A.C.E. with list",
"Calculate ACE with list",
"Calculate accumulated cyclone energy with list",
"Calculate A.C.E. over list",
"Calculate ACE over list",
"Calculate accumulated cyclone energy over list",
"Calculate ACE over list of windspeeds",
"Calculate accumulated cyclone energy over list of windspeeds"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Given a list of windspeeds in knots split across 6-hour periods, calculate the accumulated cyclone energy of the list.\n\nhttps://en.wikipedia.org/wiki/Accumulated_cyclone_energy"
}
]
}
}
npxlng326d93znraamxyv36dmmn72ob
Z39194
0
89780
307394
298316
2026-09-02T11:43:28Z
Ornithorynque liminaire
1539
fr
307394
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z39194"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6091",
"Z17K2": "Z39194K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "entity"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z39194K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "entity repeated?"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z6091",
"Z17K2": "Z39194K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "tense"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z39194K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20",
"Z39196"
],
"Z8K4": [
"Z14",
"Z39195"
],
"Z8K5": "Z39194"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "named after-sentence (HTML)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "nommé(e) en référence à"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
a9vo0t1bu8h8s0aays58zr471w8j0ok
Wikifunctions:Requests for user groups/Archive/2026/08
4
90038
307331
304650
2026-09-02T03:08:07Z
SpBot
978
archiving 1 section from [[Wikifunctions:Requests for user groups]] (after section [[Wikifunctions:Requests for user groups/Archive/2026/08#BlueSkyWalker|BlueSkyWalker]])
307331
wikitext
text/x-wiki
{{Talkarchive}}
=== Virinas-code ===
After being told twice on [[Wikifunctions:Requests for connection and disconnection]], I've finally decided to apply as functioneer. I've made multiple functions, implementations, and test cases already, mostly relating to set-based arithmetic. I've tried to be as cautious as possible with my edits by always making appropriate test cases. I have also experimented with the ZObject model and have written a ZObject JSON parser in Rust. Hence i believe I have sufficient experience with this website to apply for functionner :) [[User:Virinas-code|Virinas-code]] ([[User talk:Virinas-code|talk]]) 07:49, 9 August 2026 (UTC)
:{{done}} [[User:Ameisenigel|Ameisenigel]] ([[User talk:Ameisenigel|talk]]) 07:56, 12 August 2026 (UTC)
:<small>This section was archived on a request by: [[User:Ameisenigel|Ameisenigel]] ([[User talk:Ameisenigel|talk]]) 07:56, 12 August 2026 (UTC)</small>
=== 鈴音雨 ===
:{{UL2.0|1=鈴音雨|contributions=1|deletedcontributions=1|editcount=1|blocklog=1|rightslog=1|crosswiki=1}}
:''Discussion open until: 15:21, 24 August 2026 (UTC)''
:Hello. I might be relatively new to participating in Wikifunctions, but I quickly understood the system and have already submitted several connection and edit requests. By becoming a Functioneer, I want to contribute to Wikifunctions faster, which is still largely unexplored in Japanese. [[User:鈴音雨|鈴音雨]] ([[User talk:鈴音雨|talk]]) 15:21, 22 August 2026 (UTC)
::{{s}} Working on a language as special as Japanese is awesome for the project, thanks for your contributions! [[User:Virinas-code|Virinas-code]] ([[User talk:Virinas-code|talk]]) 18:41, 22 August 2026 (UTC)
::It has been 2 days with 1 support and 0 opposes, so would someone be able to grant the permissions, please? --[[User:鈴音雨|鈴音雨]] ([[User talk:鈴音雨|talk]]) 14:16, 25 August 2026 (UTC)
::{{done}} welcome and thank you for all your work on Japanese. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 23:59, 25 August 2026 (UTC)
:<small>This section was archived on a request by: [[User:Ameisenigel|Ameisenigel]] ([[User talk:Ameisenigel|talk]]) 07:49, 26 August 2026 (UTC)</small>
=== BlueSkyWalker ===
:{{UL2.0|1=BlueSkyWalker|contributions=1|deletedcontributions=1|editcount=1|blocklog=1|rightslog=1|crosswiki=1}}
:''Discussion open until: 18:02, 29 August 2026 (UTC)''
:I am actively contributing to natural language operations on Wikifunctions, focusing on building out the Hindi natural language generation catalogue and Abstract Wikipedia sentence constructors. Recent contributions include [[Z40186]] (''state location in Hindi''), [[Z40188]] (Python implementation), [[Z40189]] (test case), and collaborating on [[Z40197]] with {{ping|99of9}}. Having Functioneer rights will allow me to connect implementations, manage test suites, and build constructors for Indian languages directly. [[User:BlueSkyWalker|BlueSkyWalker]] ([[User talk:BlueSkyWalker|talk]]) 18:02, 27 August 2026 (UTC)
::{{s}} --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 00:32, 28 August 2026 (UTC)
:{{done}} [[User:Ameisenigel|Ameisenigel]] ([[User talk:Ameisenigel|talk]]) 18:12, 31 August 2026 (UTC)
:<small>This section was archived on a request by: [[User:Ameisenigel|Ameisenigel]] ([[User talk:Ameisenigel|talk]]) 18:12, 31 August 2026 (UTC)</small>
imo5r88c15n40phkme5kxea9msn5r84
Z40215
0
91864
307025
304410
2026-09-01T12:06:15Z
鈴音雨
101019
+age
307025
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40215"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z40214",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z802",
"Z802K1": {
"Z1K1": "Z7",
"Z7K1": "Z13381",
"Z13381K1": {
"Z1K1": "Z18",
"Z18K1": "Z40214K1"
},
"Z13381K2": [
"Z6091",
{
"Z1K1": "Z6091",
"Z6091K1": "Q11229"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q28390"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q209426"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q829073"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q573"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q577"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q5151"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q25235"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q7727"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q11574"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q723733"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q24564698"
}
]
},
"Z802K2": "",
"Z802K3": "Z36687"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "数値と単位の間の区切り文字 (日本語)、合成"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "separator between quantity and unit, Ja, comp"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
hd65h3t0cvy3kumweh3e6ctj9mur1wh
Wikifunctions:Status updates/2026-08-28/de
4
92658
307185
306781
2026-09-01T18:22:06Z
Ameisenigel
44
Created page with "Die Community hat es vorgeschlagen, und nun ist er da: ein neuer Typ, [[$1|Wikifunctions-Objektreferenz]], basierend auf diesem [[$2|Typenvorschlag]] von [[$3|GrounderUK]]."
307185
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = Vorheriges Update
| prev = 2026-08-20
| nextlabel = Nächstes Update
| next =
}}
<span id="News_in_Types:_Wikifunctions_Object_Reference"></span>
=== Neuigkeiten zu Typen: Wikifunctions-Objektreferenz ===
Die Community hat es vorgeschlagen, und nun ist er da: ein neuer Typ, [[Z96|Wikifunctions-Objektreferenz]], basierend auf diesem [[Wikifunctions:Type proposals/Wikifunctions object reference|Typenvorschlag]] von [[User:GrounderUK|GrounderUK]].
<div lang="en" dir="ltr" class="mw-content-ltr">
What are Wikifunctions Object References good for? Here are the uses, as listed by the community:
</div>
* <span lang="en" dir="ltr" class="mw-content-ltr">Prevent the automatic de-referencing of references extracted from Wikifunctions objects (by [[Z803|Z803]], for example).</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Allow more straightforward and efficient comparison of types. For example:</span>
** {{Z|Z16829}} <span lang="en" dir="ltr" class="mw-content-ltr">(or an equivalent) could return a Wikifunctions object reference rather than a fully expanded type object</span>
** {{Z|Z19077}} <span lang="en" dir="ltr" class="mw-content-ltr">extracts a type’s Z4K1 but this is currently expanded back into the referenced type, making type comparisons inefficient</span>
** {{Z|Z19084}} <span lang="en" dir="ltr" class="mw-content-ltr">one Python implementation explicitly compares only Z4K1 values, but the types and their references have already been fully expanded by the orchestrator</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">“same type reference” would be more efficient, simplifying to</span> {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** <span lang="en" dir="ltr" class="mw-content-ltr">“type is one of” could be implemented with</span> {{Z|Z12696}}
* <span lang="en" dir="ltr" class="mw-content-ltr">Simplify search string functions like {{Z|Z22973}}, allowing the type reference to be entered as a string, where known.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Consistent approach across Wikidata and Wikifunctions references, perhaps allowing objects like types to be used in enumerations.</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
eed4cwcsp5dvqbqhofab1dnzmbt9xfv
307187
307185
2026-09-01T18:22:48Z
Ameisenigel
44
Created page with "Wozu dienen Wikifunctions-Objektreferenzen? Hier sind die von der Community aufgeführten Anwendungsbereiche:"
307187
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = Vorheriges Update
| prev = 2026-08-20
| nextlabel = Nächstes Update
| next =
}}
<span id="News_in_Types:_Wikifunctions_Object_Reference"></span>
=== Neuigkeiten zu Typen: Wikifunctions-Objektreferenz ===
Die Community hat es vorgeschlagen, und nun ist er da: ein neuer Typ, [[Z96|Wikifunctions-Objektreferenz]], basierend auf diesem [[Wikifunctions:Type proposals/Wikifunctions object reference|Typenvorschlag]] von [[User:GrounderUK|GrounderUK]].
Wozu dienen Wikifunctions-Objektreferenzen? Hier sind die von der Community aufgeführten Anwendungsbereiche:
* <span lang="en" dir="ltr" class="mw-content-ltr">Prevent the automatic de-referencing of references extracted from Wikifunctions objects (by [[Z803|Z803]], for example).</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Allow more straightforward and efficient comparison of types. For example:</span>
** {{Z|Z16829}} <span lang="en" dir="ltr" class="mw-content-ltr">(or an equivalent) could return a Wikifunctions object reference rather than a fully expanded type object</span>
** {{Z|Z19077}} <span lang="en" dir="ltr" class="mw-content-ltr">extracts a type’s Z4K1 but this is currently expanded back into the referenced type, making type comparisons inefficient</span>
** {{Z|Z19084}} <span lang="en" dir="ltr" class="mw-content-ltr">one Python implementation explicitly compares only Z4K1 values, but the types and their references have already been fully expanded by the orchestrator</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">“same type reference” would be more efficient, simplifying to</span> {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** <span lang="en" dir="ltr" class="mw-content-ltr">“type is one of” could be implemented with</span> {{Z|Z12696}}
* <span lang="en" dir="ltr" class="mw-content-ltr">Simplify search string functions like {{Z|Z22973}}, allowing the type reference to be entered as a string, where known.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Consistent approach across Wikidata and Wikifunctions references, perhaps allowing objects like types to be used in enumerations.</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
jssxh5n3x6fykmcvoyd5zd649tukgnk
307189
307187
2026-09-01T18:23:17Z
Ameisenigel
44
Created page with "Verhinderung der automatische Auflösung von Referenzen, die aus Wikifunctions-Objekten extrahiert wurden (zum Beispiel durch [[$1|Z803]])."
307189
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = Vorheriges Update
| prev = 2026-08-20
| nextlabel = Nächstes Update
| next =
}}
<span id="News_in_Types:_Wikifunctions_Object_Reference"></span>
=== Neuigkeiten zu Typen: Wikifunctions-Objektreferenz ===
Die Community hat es vorgeschlagen, und nun ist er da: ein neuer Typ, [[Z96|Wikifunctions-Objektreferenz]], basierend auf diesem [[Wikifunctions:Type proposals/Wikifunctions object reference|Typenvorschlag]] von [[User:GrounderUK|GrounderUK]].
Wozu dienen Wikifunctions-Objektreferenzen? Hier sind die von der Community aufgeführten Anwendungsbereiche:
* Verhinderung der automatische Auflösung von Referenzen, die aus Wikifunctions-Objekten extrahiert wurden (zum Beispiel durch [[Z803|Z803]]).
* <span lang="en" dir="ltr" class="mw-content-ltr">Allow more straightforward and efficient comparison of types. For example:</span>
** {{Z|Z16829}} <span lang="en" dir="ltr" class="mw-content-ltr">(or an equivalent) could return a Wikifunctions object reference rather than a fully expanded type object</span>
** {{Z|Z19077}} <span lang="en" dir="ltr" class="mw-content-ltr">extracts a type’s Z4K1 but this is currently expanded back into the referenced type, making type comparisons inefficient</span>
** {{Z|Z19084}} <span lang="en" dir="ltr" class="mw-content-ltr">one Python implementation explicitly compares only Z4K1 values, but the types and their references have already been fully expanded by the orchestrator</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">“same type reference” would be more efficient, simplifying to</span> {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** <span lang="en" dir="ltr" class="mw-content-ltr">“type is one of” could be implemented with</span> {{Z|Z12696}}
* <span lang="en" dir="ltr" class="mw-content-ltr">Simplify search string functions like {{Z|Z22973}}, allowing the type reference to be entered as a string, where known.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Consistent approach across Wikidata and Wikifunctions references, perhaps allowing objects like types to be used in enumerations.</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
7b1hvb0sdpcclwmqizx0bsb0pll0gdk
307191
307189
2026-09-01T18:23:48Z
Ameisenigel
44
Created page with "Ermöglichung eines einfacheren und effizienteren Vergleichs von Typen. Zum Beispiel:"
307191
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = Vorheriges Update
| prev = 2026-08-20
| nextlabel = Nächstes Update
| next =
}}
<span id="News_in_Types:_Wikifunctions_Object_Reference"></span>
=== Neuigkeiten zu Typen: Wikifunctions-Objektreferenz ===
Die Community hat es vorgeschlagen, und nun ist er da: ein neuer Typ, [[Z96|Wikifunctions-Objektreferenz]], basierend auf diesem [[Wikifunctions:Type proposals/Wikifunctions object reference|Typenvorschlag]] von [[User:GrounderUK|GrounderUK]].
Wozu dienen Wikifunctions-Objektreferenzen? Hier sind die von der Community aufgeführten Anwendungsbereiche:
* Verhinderung der automatische Auflösung von Referenzen, die aus Wikifunctions-Objekten extrahiert wurden (zum Beispiel durch [[Z803|Z803]]).
* Ermöglichung eines einfacheren und effizienteren Vergleichs von Typen. Zum Beispiel:
** {{Z|Z16829}} <span lang="en" dir="ltr" class="mw-content-ltr">(or an equivalent) could return a Wikifunctions object reference rather than a fully expanded type object</span>
** {{Z|Z19077}} <span lang="en" dir="ltr" class="mw-content-ltr">extracts a type’s Z4K1 but this is currently expanded back into the referenced type, making type comparisons inefficient</span>
** {{Z|Z19084}} <span lang="en" dir="ltr" class="mw-content-ltr">one Python implementation explicitly compares only Z4K1 values, but the types and their references have already been fully expanded by the orchestrator</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">“same type reference” would be more efficient, simplifying to</span> {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** <span lang="en" dir="ltr" class="mw-content-ltr">“type is one of” could be implemented with</span> {{Z|Z12696}}
* <span lang="en" dir="ltr" class="mw-content-ltr">Simplify search string functions like {{Z|Z22973}}, allowing the type reference to be entered as a string, where known.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Consistent approach across Wikidata and Wikifunctions references, perhaps allowing objects like types to be used in enumerations.</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
makqwh22xtv9u17yr631rbhj67enxn8
307193
307191
2026-09-01T18:24:23Z
Ameisenigel
44
Created page with "(oder ein Äquivalent) könnte eine Wikifunctions-Objektreferenz anstatt eines vollständig expandierten Typobjekts zurückgeben"
307193
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = Vorheriges Update
| prev = 2026-08-20
| nextlabel = Nächstes Update
| next =
}}
<span id="News_in_Types:_Wikifunctions_Object_Reference"></span>
=== Neuigkeiten zu Typen: Wikifunctions-Objektreferenz ===
Die Community hat es vorgeschlagen, und nun ist er da: ein neuer Typ, [[Z96|Wikifunctions-Objektreferenz]], basierend auf diesem [[Wikifunctions:Type proposals/Wikifunctions object reference|Typenvorschlag]] von [[User:GrounderUK|GrounderUK]].
Wozu dienen Wikifunctions-Objektreferenzen? Hier sind die von der Community aufgeführten Anwendungsbereiche:
* Verhinderung der automatische Auflösung von Referenzen, die aus Wikifunctions-Objekten extrahiert wurden (zum Beispiel durch [[Z803|Z803]]).
* Ermöglichung eines einfacheren und effizienteren Vergleichs von Typen. Zum Beispiel:
** {{Z|Z16829}} (oder ein Äquivalent) könnte eine Wikifunctions-Objektreferenz anstatt eines vollständig expandierten Typobjekts zurückgeben
** {{Z|Z19077}} <span lang="en" dir="ltr" class="mw-content-ltr">extracts a type’s Z4K1 but this is currently expanded back into the referenced type, making type comparisons inefficient</span>
** {{Z|Z19084}} <span lang="en" dir="ltr" class="mw-content-ltr">one Python implementation explicitly compares only Z4K1 values, but the types and their references have already been fully expanded by the orchestrator</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">“same type reference” would be more efficient, simplifying to</span> {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** <span lang="en" dir="ltr" class="mw-content-ltr">“type is one of” could be implemented with</span> {{Z|Z12696}}
* <span lang="en" dir="ltr" class="mw-content-ltr">Simplify search string functions like {{Z|Z22973}}, allowing the type reference to be entered as a string, where known.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Consistent approach across Wikidata and Wikifunctions references, perhaps allowing objects like types to be used in enumerations.</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
akith65c3gmt32ie78gvuyjrzuqoe0m
307195
307193
2026-09-01T18:25:01Z
Ameisenigel
44
Created page with "extrahiert die Z4K1 eines Typs, dies wird jedoch derzeit wieder in den referenzierten Typ expandiert, wodurch Typvergleiche ineffizient werden"
307195
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = Vorheriges Update
| prev = 2026-08-20
| nextlabel = Nächstes Update
| next =
}}
<span id="News_in_Types:_Wikifunctions_Object_Reference"></span>
=== Neuigkeiten zu Typen: Wikifunctions-Objektreferenz ===
Die Community hat es vorgeschlagen, und nun ist er da: ein neuer Typ, [[Z96|Wikifunctions-Objektreferenz]], basierend auf diesem [[Wikifunctions:Type proposals/Wikifunctions object reference|Typenvorschlag]] von [[User:GrounderUK|GrounderUK]].
Wozu dienen Wikifunctions-Objektreferenzen? Hier sind die von der Community aufgeführten Anwendungsbereiche:
* Verhinderung der automatische Auflösung von Referenzen, die aus Wikifunctions-Objekten extrahiert wurden (zum Beispiel durch [[Z803|Z803]]).
* Ermöglichung eines einfacheren und effizienteren Vergleichs von Typen. Zum Beispiel:
** {{Z|Z16829}} (oder ein Äquivalent) könnte eine Wikifunctions-Objektreferenz anstatt eines vollständig expandierten Typobjekts zurückgeben
** {{Z|Z19077}} extrahiert die Z4K1 eines Typs, dies wird jedoch derzeit wieder in den referenzierten Typ expandiert, wodurch Typvergleiche ineffizient werden
** {{Z|Z19084}} <span lang="en" dir="ltr" class="mw-content-ltr">one Python implementation explicitly compares only Z4K1 values, but the types and their references have already been fully expanded by the orchestrator</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">“same type reference” would be more efficient, simplifying to</span> {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** <span lang="en" dir="ltr" class="mw-content-ltr">“type is one of” could be implemented with</span> {{Z|Z12696}}
* <span lang="en" dir="ltr" class="mw-content-ltr">Simplify search string functions like {{Z|Z22973}}, allowing the type reference to be entered as a string, where known.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Consistent approach across Wikidata and Wikifunctions references, perhaps allowing objects like types to be used in enumerations.</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
rd147r9mbpi145vs4d6jfyt9hhgjopn
307197
307195
2026-09-01T18:25:41Z
Ameisenigel
44
Created page with "eine Python-Implementierung vergleicht explizit nur Z4K1-Werte, doch die Typen und deren Referenzen wurden bereits vollständig vom Orchestrierer aufgelöst"
307197
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = Vorheriges Update
| prev = 2026-08-20
| nextlabel = Nächstes Update
| next =
}}
<span id="News_in_Types:_Wikifunctions_Object_Reference"></span>
=== Neuigkeiten zu Typen: Wikifunctions-Objektreferenz ===
Die Community hat es vorgeschlagen, und nun ist er da: ein neuer Typ, [[Z96|Wikifunctions-Objektreferenz]], basierend auf diesem [[Wikifunctions:Type proposals/Wikifunctions object reference|Typenvorschlag]] von [[User:GrounderUK|GrounderUK]].
Wozu dienen Wikifunctions-Objektreferenzen? Hier sind die von der Community aufgeführten Anwendungsbereiche:
* Verhinderung der automatische Auflösung von Referenzen, die aus Wikifunctions-Objekten extrahiert wurden (zum Beispiel durch [[Z803|Z803]]).
* Ermöglichung eines einfacheren und effizienteren Vergleichs von Typen. Zum Beispiel:
** {{Z|Z16829}} (oder ein Äquivalent) könnte eine Wikifunctions-Objektreferenz anstatt eines vollständig expandierten Typobjekts zurückgeben
** {{Z|Z19077}} extrahiert die Z4K1 eines Typs, dies wird jedoch derzeit wieder in den referenzierten Typ expandiert, wodurch Typvergleiche ineffizient werden
** {{Z|Z19084}} eine Python-Implementierung vergleicht explizit nur Z4K1-Werte, doch die Typen und deren Referenzen wurden bereits vollständig vom Orchestrierer aufgelöst
** <span lang="en" dir="ltr" class="mw-content-ltr">“same type reference” would be more efficient, simplifying to</span> {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** <span lang="en" dir="ltr" class="mw-content-ltr">“type is one of” could be implemented with</span> {{Z|Z12696}}
* <span lang="en" dir="ltr" class="mw-content-ltr">Simplify search string functions like {{Z|Z22973}}, allowing the type reference to be entered as a string, where known.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Consistent approach across Wikidata and Wikifunctions references, perhaps allowing objects like types to be used in enumerations.</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
8vbsyt5sicj2i0z5yslufhxjitzhisc
307199
307197
2026-09-01T18:26:48Z
Ameisenigel
44
Created page with "“gleiche Typreferenz” wäre effizienter und eine Vereinfachung zu"
307199
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = Vorheriges Update
| prev = 2026-08-20
| nextlabel = Nächstes Update
| next =
}}
<span id="News_in_Types:_Wikifunctions_Object_Reference"></span>
=== Neuigkeiten zu Typen: Wikifunctions-Objektreferenz ===
Die Community hat es vorgeschlagen, und nun ist er da: ein neuer Typ, [[Z96|Wikifunctions-Objektreferenz]], basierend auf diesem [[Wikifunctions:Type proposals/Wikifunctions object reference|Typenvorschlag]] von [[User:GrounderUK|GrounderUK]].
Wozu dienen Wikifunctions-Objektreferenzen? Hier sind die von der Community aufgeführten Anwendungsbereiche:
* Verhinderung der automatische Auflösung von Referenzen, die aus Wikifunctions-Objekten extrahiert wurden (zum Beispiel durch [[Z803|Z803]]).
* Ermöglichung eines einfacheren und effizienteren Vergleichs von Typen. Zum Beispiel:
** {{Z|Z16829}} (oder ein Äquivalent) könnte eine Wikifunctions-Objektreferenz anstatt eines vollständig expandierten Typobjekts zurückgeben
** {{Z|Z19077}} extrahiert die Z4K1 eines Typs, dies wird jedoch derzeit wieder in den referenzierten Typ expandiert, wodurch Typvergleiche ineffizient werden
** {{Z|Z19084}} eine Python-Implementierung vergleicht explizit nur Z4K1-Werte, doch die Typen und deren Referenzen wurden bereits vollständig vom Orchestrierer aufgelöst
** “gleiche Typreferenz” wäre effizienter und eine Vereinfachung zu {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** <span lang="en" dir="ltr" class="mw-content-ltr">“type is one of” could be implemented with</span> {{Z|Z12696}}
* <span lang="en" dir="ltr" class="mw-content-ltr">Simplify search string functions like {{Z|Z22973}}, allowing the type reference to be entered as a string, where known.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Consistent approach across Wikidata and Wikifunctions references, perhaps allowing objects like types to be used in enumerations.</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
fkns08fnr0hv2wqm5ztmkswqzkpvnvi
307201
307199
2026-09-01T18:27:29Z
Ameisenigel
44
Created page with "“Typ ist einer von” könnte implementiert werden mit"
307201
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = Vorheriges Update
| prev = 2026-08-20
| nextlabel = Nächstes Update
| next =
}}
<span id="News_in_Types:_Wikifunctions_Object_Reference"></span>
=== Neuigkeiten zu Typen: Wikifunctions-Objektreferenz ===
Die Community hat es vorgeschlagen, und nun ist er da: ein neuer Typ, [[Z96|Wikifunctions-Objektreferenz]], basierend auf diesem [[Wikifunctions:Type proposals/Wikifunctions object reference|Typenvorschlag]] von [[User:GrounderUK|GrounderUK]].
Wozu dienen Wikifunctions-Objektreferenzen? Hier sind die von der Community aufgeführten Anwendungsbereiche:
* Verhinderung der automatische Auflösung von Referenzen, die aus Wikifunctions-Objekten extrahiert wurden (zum Beispiel durch [[Z803|Z803]]).
* Ermöglichung eines einfacheren und effizienteren Vergleichs von Typen. Zum Beispiel:
** {{Z|Z16829}} (oder ein Äquivalent) könnte eine Wikifunctions-Objektreferenz anstatt eines vollständig expandierten Typobjekts zurückgeben
** {{Z|Z19077}} extrahiert die Z4K1 eines Typs, dies wird jedoch derzeit wieder in den referenzierten Typ expandiert, wodurch Typvergleiche ineffizient werden
** {{Z|Z19084}} eine Python-Implementierung vergleicht explizit nur Z4K1-Werte, doch die Typen und deren Referenzen wurden bereits vollständig vom Orchestrierer aufgelöst
** “gleiche Typreferenz” wäre effizienter und eine Vereinfachung zu {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** “Typ ist einer von” könnte implementiert werden mit {{Z|Z12696}}
* <span lang="en" dir="ltr" class="mw-content-ltr">Simplify search string functions like {{Z|Z22973}}, allowing the type reference to be entered as a string, where known.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Consistent approach across Wikidata and Wikifunctions references, perhaps allowing objects like types to be used in enumerations.</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
1ocfdwe3u8ss17xnudkar4lgngr6whs
307203
307201
2026-09-01T18:29:03Z
Ameisenigel
44
Created page with "Vereinfachung der Zeichenkettensuchfunktionen wie $1, indem die Eingabe der Typreferenz als Zeichenkette ermöglicht wird, sofern diese bekannt ist."
307203
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = Vorheriges Update
| prev = 2026-08-20
| nextlabel = Nächstes Update
| next =
}}
<span id="News_in_Types:_Wikifunctions_Object_Reference"></span>
=== Neuigkeiten zu Typen: Wikifunctions-Objektreferenz ===
Die Community hat es vorgeschlagen, und nun ist er da: ein neuer Typ, [[Z96|Wikifunctions-Objektreferenz]], basierend auf diesem [[Wikifunctions:Type proposals/Wikifunctions object reference|Typenvorschlag]] von [[User:GrounderUK|GrounderUK]].
Wozu dienen Wikifunctions-Objektreferenzen? Hier sind die von der Community aufgeführten Anwendungsbereiche:
* Verhinderung der automatische Auflösung von Referenzen, die aus Wikifunctions-Objekten extrahiert wurden (zum Beispiel durch [[Z803|Z803]]).
* Ermöglichung eines einfacheren und effizienteren Vergleichs von Typen. Zum Beispiel:
** {{Z|Z16829}} (oder ein Äquivalent) könnte eine Wikifunctions-Objektreferenz anstatt eines vollständig expandierten Typobjekts zurückgeben
** {{Z|Z19077}} extrahiert die Z4K1 eines Typs, dies wird jedoch derzeit wieder in den referenzierten Typ expandiert, wodurch Typvergleiche ineffizient werden
** {{Z|Z19084}} eine Python-Implementierung vergleicht explizit nur Z4K1-Werte, doch die Typen und deren Referenzen wurden bereits vollständig vom Orchestrierer aufgelöst
** “gleiche Typreferenz” wäre effizienter und eine Vereinfachung zu {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** “Typ ist einer von” könnte implementiert werden mit {{Z|Z12696}}
* Vereinfachung der Zeichenkettensuchfunktionen wie {{Z|Z22973}}, indem die Eingabe der Typreferenz als Zeichenkette ermöglicht wird, sofern diese bekannt ist.
* <span lang="en" dir="ltr" class="mw-content-ltr">Consistent approach across Wikidata and Wikifunctions references, perhaps allowing objects like types to be used in enumerations.</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
f6yl7u21uoes1zbke2ewd2ofm0nc0wo
307205
307203
2026-09-01T18:29:38Z
Ameisenigel
44
Created page with "Einheitlicher Ansatz für Referenzen in Wikidata und Wikifunctions, der es möglicherweise erlaubt, Objekte wie Typen in Aufzählungen zu verwenden."
307205
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = Vorheriges Update
| prev = 2026-08-20
| nextlabel = Nächstes Update
| next =
}}
<span id="News_in_Types:_Wikifunctions_Object_Reference"></span>
=== Neuigkeiten zu Typen: Wikifunctions-Objektreferenz ===
Die Community hat es vorgeschlagen, und nun ist er da: ein neuer Typ, [[Z96|Wikifunctions-Objektreferenz]], basierend auf diesem [[Wikifunctions:Type proposals/Wikifunctions object reference|Typenvorschlag]] von [[User:GrounderUK|GrounderUK]].
Wozu dienen Wikifunctions-Objektreferenzen? Hier sind die von der Community aufgeführten Anwendungsbereiche:
* Verhinderung der automatische Auflösung von Referenzen, die aus Wikifunctions-Objekten extrahiert wurden (zum Beispiel durch [[Z803|Z803]]).
* Ermöglichung eines einfacheren und effizienteren Vergleichs von Typen. Zum Beispiel:
** {{Z|Z16829}} (oder ein Äquivalent) könnte eine Wikifunctions-Objektreferenz anstatt eines vollständig expandierten Typobjekts zurückgeben
** {{Z|Z19077}} extrahiert die Z4K1 eines Typs, dies wird jedoch derzeit wieder in den referenzierten Typ expandiert, wodurch Typvergleiche ineffizient werden
** {{Z|Z19084}} eine Python-Implementierung vergleicht explizit nur Z4K1-Werte, doch die Typen und deren Referenzen wurden bereits vollständig vom Orchestrierer aufgelöst
** “gleiche Typreferenz” wäre effizienter und eine Vereinfachung zu {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** “Typ ist einer von” könnte implementiert werden mit {{Z|Z12696}}
* Vereinfachung der Zeichenkettensuchfunktionen wie {{Z|Z22973}}, indem die Eingabe der Typreferenz als Zeichenkette ermöglicht wird, sofern diese bekannt ist.
* Einheitlicher Ansatz für Referenzen in Wikidata und Wikifunctions, der es möglicherweise erlaubt, Objekte wie Typen in Aufzählungen zu verwenden.
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
po4e890bbm6559uvun35fri25co8imx
307207
307205
2026-09-01T18:37:29Z
Ameisenigel
44
Created page with "Der Implementierung des Typs gingen zahlreiche Diskussionen voraus, doch letztlich folgten wir dem von der Community erarbeiteten Entwurf. Wir hatten auch in Erwägung gezogen, den Typ explizit zu erfassen, doch dies führte zu einigen Komplikationen und hätte die anfängliche Handhabung des Typs erschwert. Dies könnte zwar eine künftige Verbesserung darstellen, doch zunächst wollten wir den Typ einfach verfügbar machen."
307207
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = Vorheriges Update
| prev = 2026-08-20
| nextlabel = Nächstes Update
| next =
}}
<span id="News_in_Types:_Wikifunctions_Object_Reference"></span>
=== Neuigkeiten zu Typen: Wikifunctions-Objektreferenz ===
Die Community hat es vorgeschlagen, und nun ist er da: ein neuer Typ, [[Z96|Wikifunctions-Objektreferenz]], basierend auf diesem [[Wikifunctions:Type proposals/Wikifunctions object reference|Typenvorschlag]] von [[User:GrounderUK|GrounderUK]].
Wozu dienen Wikifunctions-Objektreferenzen? Hier sind die von der Community aufgeführten Anwendungsbereiche:
* Verhinderung der automatische Auflösung von Referenzen, die aus Wikifunctions-Objekten extrahiert wurden (zum Beispiel durch [[Z803|Z803]]).
* Ermöglichung eines einfacheren und effizienteren Vergleichs von Typen. Zum Beispiel:
** {{Z|Z16829}} (oder ein Äquivalent) könnte eine Wikifunctions-Objektreferenz anstatt eines vollständig expandierten Typobjekts zurückgeben
** {{Z|Z19077}} extrahiert die Z4K1 eines Typs, dies wird jedoch derzeit wieder in den referenzierten Typ expandiert, wodurch Typvergleiche ineffizient werden
** {{Z|Z19084}} eine Python-Implementierung vergleicht explizit nur Z4K1-Werte, doch die Typen und deren Referenzen wurden bereits vollständig vom Orchestrierer aufgelöst
** “gleiche Typreferenz” wäre effizienter und eine Vereinfachung zu {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** “Typ ist einer von” könnte implementiert werden mit {{Z|Z12696}}
* Vereinfachung der Zeichenkettensuchfunktionen wie {{Z|Z22973}}, indem die Eingabe der Typreferenz als Zeichenkette ermöglicht wird, sofern diese bekannt ist.
* Einheitlicher Ansatz für Referenzen in Wikidata und Wikifunctions, der es möglicherweise erlaubt, Objekte wie Typen in Aufzählungen zu verwenden.
Der Implementierung des Typs gingen zahlreiche Diskussionen voraus, doch letztlich folgten wir dem von der Community erarbeiteten Entwurf. Wir hatten auch in Erwägung gezogen, den Typ explizit zu erfassen, doch dies führte zu einigen Komplikationen und hätte die anfängliche Handhabung des Typs erschwert. Dies könnte zwar eine künftige Verbesserung darstellen, doch zunächst wollten wir den Typ einfach verfügbar machen.
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
pdxjd9ych8wzvta0ccq7p19dzsjdb4o
307209
307207
2026-09-01T18:38:28Z
Ameisenigel
44
Created page with "Wir haben außerdem eine Funktion hinzugefügt, um die Referenz zu dereferenzieren oder das referenzierte Objekt abzurufen:"
307209
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = Vorheriges Update
| prev = 2026-08-20
| nextlabel = Nächstes Update
| next =
}}
<span id="News_in_Types:_Wikifunctions_Object_Reference"></span>
=== Neuigkeiten zu Typen: Wikifunctions-Objektreferenz ===
Die Community hat es vorgeschlagen, und nun ist er da: ein neuer Typ, [[Z96|Wikifunctions-Objektreferenz]], basierend auf diesem [[Wikifunctions:Type proposals/Wikifunctions object reference|Typenvorschlag]] von [[User:GrounderUK|GrounderUK]].
Wozu dienen Wikifunctions-Objektreferenzen? Hier sind die von der Community aufgeführten Anwendungsbereiche:
* Verhinderung der automatische Auflösung von Referenzen, die aus Wikifunctions-Objekten extrahiert wurden (zum Beispiel durch [[Z803|Z803]]).
* Ermöglichung eines einfacheren und effizienteren Vergleichs von Typen. Zum Beispiel:
** {{Z|Z16829}} (oder ein Äquivalent) könnte eine Wikifunctions-Objektreferenz anstatt eines vollständig expandierten Typobjekts zurückgeben
** {{Z|Z19077}} extrahiert die Z4K1 eines Typs, dies wird jedoch derzeit wieder in den referenzierten Typ expandiert, wodurch Typvergleiche ineffizient werden
** {{Z|Z19084}} eine Python-Implementierung vergleicht explizit nur Z4K1-Werte, doch die Typen und deren Referenzen wurden bereits vollständig vom Orchestrierer aufgelöst
** “gleiche Typreferenz” wäre effizienter und eine Vereinfachung zu {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** “Typ ist einer von” könnte implementiert werden mit {{Z|Z12696}}
* Vereinfachung der Zeichenkettensuchfunktionen wie {{Z|Z22973}}, indem die Eingabe der Typreferenz als Zeichenkette ermöglicht wird, sofern diese bekannt ist.
* Einheitlicher Ansatz für Referenzen in Wikidata und Wikifunctions, der es möglicherweise erlaubt, Objekte wie Typen in Aufzählungen zu verwenden.
Der Implementierung des Typs gingen zahlreiche Diskussionen voraus, doch letztlich folgten wir dem von der Community erarbeiteten Entwurf. Wir hatten auch in Erwägung gezogen, den Typ explizit zu erfassen, doch dies führte zu einigen Komplikationen und hätte die anfängliche Handhabung des Typs erschwert. Dies könnte zwar eine künftige Verbesserung darstellen, doch zunächst wollten wir den Typ einfach verfügbar machen.
Wir haben außerdem eine Funktion hinzugefügt, um die Referenz zu dereferenzieren oder das referenzierte Objekt abzurufen: {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
6nvlz2bgbchix2xj96gfvl6xzgfi8cy
307211
307209
2026-09-01T18:40:03Z
Ameisenigel
44
Created page with "Nun können wir diesen Typ in den vielen möglichen Anwendungsfällen einsetzen. Ich werde ihn sogleich in [[$1|anonymen Funktionen]] verwenden, über die ich hoffentlich schon bald mehr schreiben werde."
307211
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = Vorheriges Update
| prev = 2026-08-20
| nextlabel = Nächstes Update
| next =
}}
<span id="News_in_Types:_Wikifunctions_Object_Reference"></span>
=== Neuigkeiten zu Typen: Wikifunctions-Objektreferenz ===
Die Community hat es vorgeschlagen, und nun ist er da: ein neuer Typ, [[Z96|Wikifunctions-Objektreferenz]], basierend auf diesem [[Wikifunctions:Type proposals/Wikifunctions object reference|Typenvorschlag]] von [[User:GrounderUK|GrounderUK]].
Wozu dienen Wikifunctions-Objektreferenzen? Hier sind die von der Community aufgeführten Anwendungsbereiche:
* Verhinderung der automatische Auflösung von Referenzen, die aus Wikifunctions-Objekten extrahiert wurden (zum Beispiel durch [[Z803|Z803]]).
* Ermöglichung eines einfacheren und effizienteren Vergleichs von Typen. Zum Beispiel:
** {{Z|Z16829}} (oder ein Äquivalent) könnte eine Wikifunctions-Objektreferenz anstatt eines vollständig expandierten Typobjekts zurückgeben
** {{Z|Z19077}} extrahiert die Z4K1 eines Typs, dies wird jedoch derzeit wieder in den referenzierten Typ expandiert, wodurch Typvergleiche ineffizient werden
** {{Z|Z19084}} eine Python-Implementierung vergleicht explizit nur Z4K1-Werte, doch die Typen und deren Referenzen wurden bereits vollständig vom Orchestrierer aufgelöst
** “gleiche Typreferenz” wäre effizienter und eine Vereinfachung zu {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** “Typ ist einer von” könnte implementiert werden mit {{Z|Z12696}}
* Vereinfachung der Zeichenkettensuchfunktionen wie {{Z|Z22973}}, indem die Eingabe der Typreferenz als Zeichenkette ermöglicht wird, sofern diese bekannt ist.
* Einheitlicher Ansatz für Referenzen in Wikidata und Wikifunctions, der es möglicherweise erlaubt, Objekte wie Typen in Aufzählungen zu verwenden.
Der Implementierung des Typs gingen zahlreiche Diskussionen voraus, doch letztlich folgten wir dem von der Community erarbeiteten Entwurf. Wir hatten auch in Erwägung gezogen, den Typ explizit zu erfassen, doch dies führte zu einigen Komplikationen und hätte die anfängliche Handhabung des Typs erschwert. Dies könnte zwar eine künftige Verbesserung darstellen, doch zunächst wollten wir den Typ einfach verfügbar machen.
Wir haben außerdem eine Funktion hinzugefügt, um die Referenz zu dereferenzieren oder das referenzierte Objekt abzurufen: {{Z+|Z40102}}
Nun können wir diesen Typ in den vielen möglichen Anwendungsfällen einsetzen. Ich werde ihn sogleich in [[Z38546|anonymen Funktionen]] verwenden, über die ich hoffentlich schon bald mehr schreiben werde.
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
swzrvxmin31nlly6e374gm0npuenk1i
307213
307211
2026-09-01T18:40:15Z
Ameisenigel
44
Created page with "Danke an die Community für den tollen Vorschlag und die ausführliche Diskussion."
307213
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = Vorheriges Update
| prev = 2026-08-20
| nextlabel = Nächstes Update
| next =
}}
<span id="News_in_Types:_Wikifunctions_Object_Reference"></span>
=== Neuigkeiten zu Typen: Wikifunctions-Objektreferenz ===
Die Community hat es vorgeschlagen, und nun ist er da: ein neuer Typ, [[Z96|Wikifunctions-Objektreferenz]], basierend auf diesem [[Wikifunctions:Type proposals/Wikifunctions object reference|Typenvorschlag]] von [[User:GrounderUK|GrounderUK]].
Wozu dienen Wikifunctions-Objektreferenzen? Hier sind die von der Community aufgeführten Anwendungsbereiche:
* Verhinderung der automatische Auflösung von Referenzen, die aus Wikifunctions-Objekten extrahiert wurden (zum Beispiel durch [[Z803|Z803]]).
* Ermöglichung eines einfacheren und effizienteren Vergleichs von Typen. Zum Beispiel:
** {{Z|Z16829}} (oder ein Äquivalent) könnte eine Wikifunctions-Objektreferenz anstatt eines vollständig expandierten Typobjekts zurückgeben
** {{Z|Z19077}} extrahiert die Z4K1 eines Typs, dies wird jedoch derzeit wieder in den referenzierten Typ expandiert, wodurch Typvergleiche ineffizient werden
** {{Z|Z19084}} eine Python-Implementierung vergleicht explizit nur Z4K1-Werte, doch die Typen und deren Referenzen wurden bereits vollständig vom Orchestrierer aufgelöst
** “gleiche Typreferenz” wäre effizienter und eine Vereinfachung zu {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** “Typ ist einer von” könnte implementiert werden mit {{Z|Z12696}}
* Vereinfachung der Zeichenkettensuchfunktionen wie {{Z|Z22973}}, indem die Eingabe der Typreferenz als Zeichenkette ermöglicht wird, sofern diese bekannt ist.
* Einheitlicher Ansatz für Referenzen in Wikidata und Wikifunctions, der es möglicherweise erlaubt, Objekte wie Typen in Aufzählungen zu verwenden.
Der Implementierung des Typs gingen zahlreiche Diskussionen voraus, doch letztlich folgten wir dem von der Community erarbeiteten Entwurf. Wir hatten auch in Erwägung gezogen, den Typ explizit zu erfassen, doch dies führte zu einigen Komplikationen und hätte die anfängliche Handhabung des Typs erschwert. Dies könnte zwar eine künftige Verbesserung darstellen, doch zunächst wollten wir den Typ einfach verfügbar machen.
Wir haben außerdem eine Funktion hinzugefügt, um die Referenz zu dereferenzieren oder das referenzierte Objekt abzurufen: {{Z+|Z40102}}
Nun können wir diesen Typ in den vielen möglichen Anwendungsfällen einsetzen. Ich werde ihn sogleich in [[Z38546|anonymen Funktionen]] verwenden, über die ich hoffentlich schon bald mehr schreiben werde.
Danke an die Community für den tollen Vorschlag und die ausführliche Diskussion.
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
2lgorik6j4l19x4owc9c8aj9xf66kd3
307215
307213
2026-09-01T18:40:20Z
Ameisenigel
44
Created page with "Wir laden alle ein, neue [[$1|Typenvorschläge]] zu erstellen und bestehende zu diskutieren, damit wir weiterhin neue Typen erstellen können. Vielen Dank an alle Community-Mitglieder, die sich an der Diskussion beteiligen und Vorschläge verfassen und so die Erweiterung von Wikifunctions auf neue Bereiche ermöglichen!"
307215
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = Vorheriges Update
| prev = 2026-08-20
| nextlabel = Nächstes Update
| next =
}}
<span id="News_in_Types:_Wikifunctions_Object_Reference"></span>
=== Neuigkeiten zu Typen: Wikifunctions-Objektreferenz ===
Die Community hat es vorgeschlagen, und nun ist er da: ein neuer Typ, [[Z96|Wikifunctions-Objektreferenz]], basierend auf diesem [[Wikifunctions:Type proposals/Wikifunctions object reference|Typenvorschlag]] von [[User:GrounderUK|GrounderUK]].
Wozu dienen Wikifunctions-Objektreferenzen? Hier sind die von der Community aufgeführten Anwendungsbereiche:
* Verhinderung der automatische Auflösung von Referenzen, die aus Wikifunctions-Objekten extrahiert wurden (zum Beispiel durch [[Z803|Z803]]).
* Ermöglichung eines einfacheren und effizienteren Vergleichs von Typen. Zum Beispiel:
** {{Z|Z16829}} (oder ein Äquivalent) könnte eine Wikifunctions-Objektreferenz anstatt eines vollständig expandierten Typobjekts zurückgeben
** {{Z|Z19077}} extrahiert die Z4K1 eines Typs, dies wird jedoch derzeit wieder in den referenzierten Typ expandiert, wodurch Typvergleiche ineffizient werden
** {{Z|Z19084}} eine Python-Implementierung vergleicht explizit nur Z4K1-Werte, doch die Typen und deren Referenzen wurden bereits vollständig vom Orchestrierer aufgelöst
** “gleiche Typreferenz” wäre effizienter und eine Vereinfachung zu {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** “Typ ist einer von” könnte implementiert werden mit {{Z|Z12696}}
* Vereinfachung der Zeichenkettensuchfunktionen wie {{Z|Z22973}}, indem die Eingabe der Typreferenz als Zeichenkette ermöglicht wird, sofern diese bekannt ist.
* Einheitlicher Ansatz für Referenzen in Wikidata und Wikifunctions, der es möglicherweise erlaubt, Objekte wie Typen in Aufzählungen zu verwenden.
Der Implementierung des Typs gingen zahlreiche Diskussionen voraus, doch letztlich folgten wir dem von der Community erarbeiteten Entwurf. Wir hatten auch in Erwägung gezogen, den Typ explizit zu erfassen, doch dies führte zu einigen Komplikationen und hätte die anfängliche Handhabung des Typs erschwert. Dies könnte zwar eine künftige Verbesserung darstellen, doch zunächst wollten wir den Typ einfach verfügbar machen.
Wir haben außerdem eine Funktion hinzugefügt, um die Referenz zu dereferenzieren oder das referenzierte Objekt abzurufen: {{Z+|Z40102}}
Nun können wir diesen Typ in den vielen möglichen Anwendungsfällen einsetzen. Ich werde ihn sogleich in [[Z38546|anonymen Funktionen]] verwenden, über die ich hoffentlich schon bald mehr schreiben werde.
Danke an die Community für den tollen Vorschlag und die ausführliche Diskussion.
Wir laden alle ein, neue [[Wikifunctions:Type proposals|Typenvorschläge]] zu erstellen und bestehende zu diskutieren, damit wir weiterhin neue Typen erstellen können. Vielen Dank an alle Community-Mitglieder, die sich an der Diskussion beteiligen und Vorschläge verfassen und so die Erweiterung von Wikifunctions auf neue Bereiche ermöglichen!
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
nceje8kkjl7xalae2jjgx32nys6jx4r
307217
307215
2026-09-01T18:40:23Z
Ameisenigel
44
Created page with "=== Letzte Änderungen an der Software ==="
307217
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = Vorheriges Update
| prev = 2026-08-20
| nextlabel = Nächstes Update
| next =
}}
<span id="News_in_Types:_Wikifunctions_Object_Reference"></span>
=== Neuigkeiten zu Typen: Wikifunctions-Objektreferenz ===
Die Community hat es vorgeschlagen, und nun ist er da: ein neuer Typ, [[Z96|Wikifunctions-Objektreferenz]], basierend auf diesem [[Wikifunctions:Type proposals/Wikifunctions object reference|Typenvorschlag]] von [[User:GrounderUK|GrounderUK]].
Wozu dienen Wikifunctions-Objektreferenzen? Hier sind die von der Community aufgeführten Anwendungsbereiche:
* Verhinderung der automatische Auflösung von Referenzen, die aus Wikifunctions-Objekten extrahiert wurden (zum Beispiel durch [[Z803|Z803]]).
* Ermöglichung eines einfacheren und effizienteren Vergleichs von Typen. Zum Beispiel:
** {{Z|Z16829}} (oder ein Äquivalent) könnte eine Wikifunctions-Objektreferenz anstatt eines vollständig expandierten Typobjekts zurückgeben
** {{Z|Z19077}} extrahiert die Z4K1 eines Typs, dies wird jedoch derzeit wieder in den referenzierten Typ expandiert, wodurch Typvergleiche ineffizient werden
** {{Z|Z19084}} eine Python-Implementierung vergleicht explizit nur Z4K1-Werte, doch die Typen und deren Referenzen wurden bereits vollständig vom Orchestrierer aufgelöst
** “gleiche Typreferenz” wäre effizienter und eine Vereinfachung zu {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** “Typ ist einer von” könnte implementiert werden mit {{Z|Z12696}}
* Vereinfachung der Zeichenkettensuchfunktionen wie {{Z|Z22973}}, indem die Eingabe der Typreferenz als Zeichenkette ermöglicht wird, sofern diese bekannt ist.
* Einheitlicher Ansatz für Referenzen in Wikidata und Wikifunctions, der es möglicherweise erlaubt, Objekte wie Typen in Aufzählungen zu verwenden.
Der Implementierung des Typs gingen zahlreiche Diskussionen voraus, doch letztlich folgten wir dem von der Community erarbeiteten Entwurf. Wir hatten auch in Erwägung gezogen, den Typ explizit zu erfassen, doch dies führte zu einigen Komplikationen und hätte die anfängliche Handhabung des Typs erschwert. Dies könnte zwar eine künftige Verbesserung darstellen, doch zunächst wollten wir den Typ einfach verfügbar machen.
Wir haben außerdem eine Funktion hinzugefügt, um die Referenz zu dereferenzieren oder das referenzierte Objekt abzurufen: {{Z+|Z40102}}
Nun können wir diesen Typ in den vielen möglichen Anwendungsfällen einsetzen. Ich werde ihn sogleich in [[Z38546|anonymen Funktionen]] verwenden, über die ich hoffentlich schon bald mehr schreiben werde.
Danke an die Community für den tollen Vorschlag und die ausführliche Diskussion.
Wir laden alle ein, neue [[Wikifunctions:Type proposals|Typenvorschläge]] zu erstellen und bestehende zu diskutieren, damit wir weiterhin neue Typen erstellen können. Vielen Dank an alle Community-Mitglieder, die sich an der Diskussion beteiligen und Vorschläge verfassen und so die Erweiterung von Wikifunctions auf neue Bereiche ermöglichen!
<span id="Recent_Changes_in_the_software"></span>
=== Letzte Änderungen an der Software ===
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
ghjm6bk8t92ymrh68zxf2aw1xuywwp6
Z40780
0
92737
307368
306975
2026-09-02T04:40:48Z
Wangyunfan
101980
307368
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40780"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z32",
"Z17K2": "Z40780K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Operation"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z16683",
"Z17K2": "Z40780K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Number"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z40780"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Sin, Cos, Tan (string in/out)"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"Maths",
"Sin",
"Cos",
"Tan",
"Calculate"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Calculates Sine, Cosine, and Tangent."
}
]
}
}
g07lbtmh0lloxo6fh0fd5car2se7bm6
307369
307368
2026-09-02T04:41:16Z
Wangyunfan
101980
307369
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40780"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6",
"Z17K2": "Z40780K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Operation"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z16683",
"Z17K2": "Z40780K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Number"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z40780"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Sin, Cos, Tan (string in/out)"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"Maths",
"Sin",
"Cos",
"Tan",
"Calculate"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Calculates Sine, Cosine, and Tangent."
}
]
}
}
ont9yzldi6k1qh29oxk8nhu0elp45r3
Z40783
0
92741
307042
307007
2026-09-01T12:54:46Z
JhowieNitnek
1044
307042
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40783"
},
"Z2K2": {
"Z1K1": "Z4",
"Z4K1": "Z40783",
"Z4K2": [
"Z3",
{
"Z1K1": "Z3",
"Z3K1": "Z40783",
"Z3K2": "Z40783K1",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "waarde"
}
]
},
"Z3K4": {
"Z1K1": "Z40",
"Z40K1": "Z41"
}
}
],
"Z4K3": "Z101",
"Z4K7": [
"Z46",
"Z40784",
"Z40785"
],
"Z4K8": [
"Z64",
"Z40787",
"Z40788"
]
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Grapheme"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Grafeem"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"character",
"letter",
"sign"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1157",
"Z31K2": [
"Z6",
"karakter",
"letter",
"teken"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "A user-perceived character; smallest functional writing unit. Includes not just the \"base\" character but also the sequence of combiners."
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Een teken zoals dat door de gebruiker wordt waargenomen; de kleinste functionele schrifteenheid. Omvat niet alleen het „basisteken”, maar ook de reeks combinatoren."
}
]
}
}
9gjg8lm7w446urvlrkn50mcvifv8lj0
307237
307042
2026-09-01T19:24:35Z
So9q
3791
307237
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40783"
},
"Z2K2": {
"Z1K1": "Z4",
"Z4K1": "Z40783",
"Z4K2": [
"Z3",
{
"Z1K1": "Z3",
"Z3K1": "Z40783",
"Z3K2": "Z40783K1",
"Z3K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "waarde"
}
]
},
"Z3K4": {
"Z1K1": "Z40",
"Z40K1": "Z41"
}
}
],
"Z4K3": "Z101",
"Z4K7": [
"Z46",
"Z40784",
"Z40785"
],
"Z4K8": [
"Z64",
"Z40787",
"Z40788"
]
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Grapheme"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Grafeem"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1592",
"Z11K2": "grafem"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"character",
"letter",
"sign"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1157",
"Z31K2": [
"Z6",
"karakter",
"letter",
"teken"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "A user-perceived character; smallest functional writing unit. Includes not just the \"base\" character but also the sequence of combiners."
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Een teken zoals dat door de gebruiker wordt waargenomen; de kleinste functionele schrifteenheid. Omvat niet alleen het „basisteken”, maar ook de reeks combinatoren."
},
{
"Z1K1": "Z11",
"Z11K1": "Z1592",
"Z11K2": "den minsta betydelseskiljande enheten i ett skriftspråk, ungefär motsvarande en bokstav eller ett skrivet tecken"
}
]
}
}
intc1hscbofvb9zacmq2kk96oj6wvfb
Z40784
0
92742
307043
306991
2026-09-01T12:55:48Z
JhowieNitnek
1044
307043
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40784"
},
"Z2K2": {
"Z1K1": "Z46",
"Z46K1": "Z40784",
"Z46K2": "Z40783",
"Z46K3": {
"Z1K1": "Z16",
"Z16K1": "Z600",
"Z16K2": "function Z40784( Z40784K1 ) {\n\tif (typeof Z40784K1.Z40783K1 === 'string') {\n\t\treturn Z40784K1.Z40783K1;\n\t} else {\n\t\treturn Z40784K1.Z40783K1.Z6K1;\n\t}\n}"
},
"Z46K4": "String"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "JS converter from Grapheme"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "JS-converter van Grafeem"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
rrya4bjq8xzpcro9sv8xj63m6967uep
307050
307043
2026-09-01T12:59:31Z
JhowieNitnek
1044
307050
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40784"
},
"Z2K2": {
"Z1K1": "Z46",
"Z46K1": "Z40784",
"Z46K2": "Z40783",
"Z46K3": {
"Z1K1": "Z16",
"Z16K1": "Z600",
"Z16K2": "function Z40784( Z40784K1 ) {\n\tif (typeof Z40784K1.Z40783K1 === 'string') {\n\t\treturn Z40784K1.Z40783K1;\n\t} else {\n\t\treturn Z40784K1.Z40783K1.Z6K1;\n\t}\n}"
},
"Z46K4": "String"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "JS converter from Grapheme"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "JS-omzetter van Grafeem"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
74ihiotqvw4qmnkn85xb2oq27gl3j7x
Z40785
0
92743
307044
306990
2026-09-01T12:56:35Z
JhowieNitnek
1044
307044
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40785"
},
"Z2K2": {
"Z1K1": "Z46",
"Z46K1": "Z40785",
"Z46K2": "Z40783",
"Z46K3": {
"Z1K1": "Z16",
"Z16K1": "Z610",
"Z16K2": "def Z40785(Z40785K1):\n\tif (isinstance(Z40785K1['Z40783K1'], str)):\n\t\treturn Z40785K1['Z40783K1'];\n\treturn Z40785K1['Z40783K1']['Z6K1'];"
},
"Z46K4": "str"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Python converter from Grapheme"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Python-converter van Grafeem"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
mxgs246f1iy28zkppqbztlmqj6jejog
307048
307044
2026-09-01T12:59:06Z
JhowieNitnek
1044
307048
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40785"
},
"Z2K2": {
"Z1K1": "Z46",
"Z46K1": "Z40785",
"Z46K2": "Z40783",
"Z46K3": {
"Z1K1": "Z16",
"Z16K1": "Z610",
"Z16K2": "def Z40785(Z40785K1):\n\tif (isinstance(Z40785K1['Z40783K1'], str)):\n\t\treturn Z40785K1['Z40783K1'];\n\treturn Z40785K1['Z40783K1']['Z6K1'];"
},
"Z46K4": "str"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Python converter from Grapheme"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Python-omzetter van Grafeem"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
gbu4e7lk8mycet941e1bwehevosnxjw
Z40787
0
92745
307045
306996
2026-09-01T12:57:36Z
JhowieNitnek
1044
307045
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40787"
},
"Z2K2": {
"Z1K1": "Z64",
"Z64K1": "Z40787",
"Z64K2": "Z40783",
"Z64K3": {
"Z1K1": "Z16",
"Z16K1": "Z600",
"Z16K2": "function Z40787( Z40787K1 ) {\n\treturn {\n\t\t\"Z1K1\": {\n\t\t\t\"Z1K1\": \"Z9\",\n\t\t\t\"Z9K1\": \"Z40783\"\n\t\t},\n\t\t\"Z40783K1\": {\n\t\t\t\"Z1K1\": \"Z6\",\n\t\t\t\"Z6K1\": Z40787K1\n\t\t}\n\t};\n}"
},
"Z64K4": "String"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "JS converter to Grapheme"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "JS-converter naar Grafeem"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
srsk55p9215bjqh2m6lb0ckefkgxe2p
307047
307045
2026-09-01T12:58:56Z
JhowieNitnek
1044
307047
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40787"
},
"Z2K2": {
"Z1K1": "Z64",
"Z64K1": "Z40787",
"Z64K2": "Z40783",
"Z64K3": {
"Z1K1": "Z16",
"Z16K1": "Z600",
"Z16K2": "function Z40787( Z40787K1 ) {\n\treturn {\n\t\t\"Z1K1\": {\n\t\t\t\"Z1K1\": \"Z9\",\n\t\t\t\"Z9K1\": \"Z40783\"\n\t\t},\n\t\t\"Z40783K1\": {\n\t\t\t\"Z1K1\": \"Z6\",\n\t\t\t\"Z6K1\": Z40787K1\n\t\t}\n\t};\n}"
},
"Z64K4": "String"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "JS converter to Grapheme"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "JS-omzetter naar Grafeem"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
rvak43r52aabf8ul93migk87v2hs1xh
Z40788
0
92746
307046
306998
2026-09-01T12:58:28Z
JhowieNitnek
1044
307046
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40788"
},
"Z2K2": {
"Z1K1": "Z64",
"Z64K1": "Z40788",
"Z64K2": "Z40783",
"Z64K3": {
"Z1K1": "Z16",
"Z16K1": "Z610",
"Z16K2": "def Z40788(Z40788K1):\n\treturn {\n\t\t\"Z1K1\": {\n\t\t\t\"Z1K1\": \"Z9\",\n\t\t\t\"Z9K1\": \"Z40783\"\n\t\t\t\n\t\t},\n\t\t\"Z40783\": {\n\t\t\t\"Z1K1\": \"Z6\",\n\t\t\t\"Z6K1\": Z40788K1\n\t\t}\n\t}"
},
"Z64K4": "str"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Python converter to Grapheme"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Python-omzetter naar Grafeem"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
pslvfmx7pavnzmlac9miovga0o5gezf
Z40789
0
92747
307020
307009
2026-09-01T12:01:41Z
鈴音雨
101019
japanese
307020
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40789"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6091",
"Z17K2": "Z40789K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "項目参照"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "item reference"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z40789K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "言語"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14",
"Z40790"
],
"Z8K5": "Z40789"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "人口に関する文章 (日本語)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "population sentence, Japanese"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
cokss4jncxfu1uj5t2pcfn87rcmatnk
307024
307020
2026-09-01T12:04:25Z
鈴音雨
101019
Added Z40791 to the approved list of test cases
307024
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40789"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6091",
"Z17K2": "Z40789K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "項目参照"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "item reference"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z40789K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "言語"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20",
"Z40791"
],
"Z8K4": [
"Z14",
"Z40790"
],
"Z8K5": "Z40789"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "人口に関する文章 (日本語)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "population sentence, Japanese"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
pyz75fccs86l7spe5t13mvpxhyy68h9
Z40790
0
92748
307018
307010
2026-09-01T11:59:22Z
鈴音雨
101019
307018
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40790"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z40789",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z27868",
"Z27868K1": {
"Z1K1": "Z7",
"Z7K1": "Z10075",
"Z10075K1": {
"Z1K1": "Z7",
"Z7K1": "Z28445",
"Z28445K1": {
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z18",
"Z18K1": ""
},
"Z30120K2": [
"Z6030",
"Z6033",
"Z6036"
],
"Z30120K3": "Z33034",
"Z30120K4": [
"Z6092",
{
"Z1K1": "Z6092",
"Z6092K1": "P1082"
}
]
},
"Z28445K2": {
"Z1K1": "Z6092",
"Z6092K1": "P1082"
},
"Z28445K3": {
"Z1K1": "Z18",
"Z18K1": "Z40789K2"
}
},
"Z10075K2": "であった。",
"Z10075K3": "人であった。"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "人口に関する文 (日本語)、合成"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Japanese population sentence, composition"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
26drln6xcbblclbun0ayyope0wriqjw
307019
307018
2026-09-01T12:00:38Z
鈴音雨
101019
307019
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40790"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z40789",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z27868",
"Z27868K1": {
"Z1K1": "Z7",
"Z7K1": "Z10075",
"Z10075K1": {
"Z1K1": "Z7",
"Z7K1": "Z28445",
"Z28445K1": {
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z18",
"Z18K1": "Z40789K1"
},
"Z30120K2": [
"Z6030",
"Z6033",
"Z6036"
],
"Z30120K3": "Z33034",
"Z30120K4": [
"Z6092",
{
"Z1K1": "Z6092",
"Z6092K1": "P1082"
}
]
},
"Z28445K2": {
"Z1K1": "Z6092",
"Z6092K1": "P1082"
},
"Z28445K3": {
"Z1K1": "Z18",
"Z18K1": "Z40789K2"
}
},
"Z10075K2": "であった。",
"Z10075K3": "人であった。"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "人口に関する文 (日本語)、合成"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Japanese population sentence, composition"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
jwqyis24vjr1iymsur25kvp9p656pm3
Z40791
0
92749
307023
2026-09-01T12:03:48Z
鈴音雨
101019
307023
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40791"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z40789",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z40789",
"Z40789K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q408"
},
"Z40789K2": "Z1830"
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z877",
"Z877K2": {
"Z1K1": "Z89",
"Z89K1": "オーストラリアの人口は、2025年時点で27,614,411人であった。"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "オーストラリアの人口を返す"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[ja] return Australia population"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
g5sdac70u5cqdu94w51ra6ihtn8zqwi
Z40792
0
92750
307031
2026-09-01T12:28:19Z
鈴音雨
101019
307031
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40792"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6010",
"Z17K2": "Z40792K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "通貨数量"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "currency quantity"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z40792K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "言語"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z40792"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "通貨数量を表示 (デフォルト)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "display currency quantity, default"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "通貨の表現を数値の前に置いて通貨数量を表示するデフォルト実装"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "default implementation that displays a currency quantity with the currency representation before the numeric value"
}
]
}
}
56h3muzjfu7csvy1psxo9zqa9shlefj
307033
307031
2026-09-01T12:30:41Z
鈴音雨
101019
Added Z40793 to the approved list of implementations
307033
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40792"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6010",
"Z17K2": "Z40792K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "通貨数量"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "currency quantity"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z40792K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "言語"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14",
"Z40793"
],
"Z8K5": "Z40792"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "通貨数量を表示 (デフォルト)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "display currency quantity, default"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "通貨の表現を数値の前に置いて通貨数量を表示するデフォルト実装"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "default implementation that displays a currency quantity with the currency representation before the numeric value"
}
]
}
}
0ruc0nnmg21jyvi9k1pumfqhw53cdqq
307035
307033
2026-09-01T12:32:01Z
鈴音雨
101019
Added Z40794 to the approved list of test cases
307035
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40792"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6010",
"Z17K2": "Z40792K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "通貨数量"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "currency quantity"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z40792K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "言語"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20",
"Z40794"
],
"Z8K4": [
"Z14",
"Z40793"
],
"Z8K5": "Z40792"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "通貨数量を表示 (デフォルト)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "display currency quantity, default"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "通貨の表現を数値の前に置いて通貨数量を表示するデフォルト実装"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "default implementation that displays a currency quantity with the currency representation before the numeric value"
}
]
}
}
31bp6n755yuiaznxqf1gfh142dxvadc
Z40793
0
92751
307032
2026-09-01T12:30:09Z
鈴音雨
101019
307032
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40793"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z40792",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z10000",
"Z10000K1": {
"Z1K1": "Z7",
"Z7K1": "Z36697",
"Z36697K1": {
"Z1K1": "Z7",
"Z7K1": "Z25303",
"Z25303K1": {
"Z1K1": "Z18",
"Z18K1": "Z40792K1"
}
},
"Z36697K2": {
"Z1K1": "Z18",
"Z18K1": "Z40792K2"
}
},
"Z10000K2": {
"Z1K1": "Z7",
"Z7K1": "Z25356",
"Z25356K1": {
"Z1K1": "Z18",
"Z18K1": "Z40792K1"
},
"Z25356K2": {
"Z1K1": "Z18",
"Z18K1": "Z40792K2"
}
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "通貨数量を表示 (デフォルト)、合成"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "display currency quantity, default, composition"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
3btq1kcxrfoalfsdyccb0vf6btw4t1h
Z40794
0
92752
307034
2026-09-01T12:31:41Z
鈴音雨
101019
307034
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40794"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z40792",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z40792",
"Z40792K1": {
"Z1K1": "Z6010",
"Z6010K1": {
"Z1K1": "Z19677",
"Z19677K1": {
"Z1K1": "Z16659",
"Z16659K1": "Z16660"
},
"Z19677K2": {
"Z1K1": "Z13518",
"Z13518K1": "12345"
},
"Z19677K3": {
"Z1K1": "Z13518",
"Z13518K1": "1"
}
},
"Z6010K2": {
"Z1K1": "Z19677",
"Z19677K1": {
"Z1K1": "Z16659",
"Z16659K1": "Z16660"
},
"Z19677K2": {
"Z1K1": "Z13518",
"Z13518K1": "12345"
},
"Z19677K3": {
"Z1K1": "Z13518",
"Z13518K1": "1"
}
},
"Z6010K3": {
"Z1K1": "Z19677",
"Z19677K1": {
"Z1K1": "Z16659",
"Z16659K1": "Z16660"
},
"Z19677K2": {
"Z1K1": "Z13518",
"Z13518K1": "12345"
},
"Z19677K3": {
"Z1K1": "Z13518",
"Z13518K1": "1"
}
},
"Z6010K4": {
"Z1K1": "Z6091",
"Z6091K1": "Q4917"
}
},
"Z40792K2": "Z1002"
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z866",
"Z866K2": "US$12,345"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "[en] 米ドル"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[en] US dollar"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
g9mlqx0lrvray4eguu8aotxlxmfpc9f
Z40795
0
92753
307036
2026-09-01T12:33:25Z
鈴音雨
101019
307036
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40795"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6010",
"Z17K2": "Z40795K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "通貨数量"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "currency quantity"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z40795K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "言語"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z40795"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "通貨数量を表示 (日本語)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "display currency quantity, Japanese"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "数値の後に日本語の通貨名を置いて通貨数量を表示する日本語用実装"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Japanese implementation that displays a currency quantity with the Japanese currency name after the numeric value"
}
]
}
}
44fhwcoq4vfiosr37q9t70iwf7g708l
307038
307036
2026-09-01T12:35:46Z
鈴音雨
101019
Added Z40796 to the approved list of implementations
307038
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40795"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6010",
"Z17K2": "Z40795K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "通貨数量"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "currency quantity"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z40795K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "言語"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14",
"Z40796"
],
"Z8K5": "Z40795"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "通貨数量を表示 (日本語)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "display currency quantity, Japanese"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "数値の後に日本語の通貨名を置いて通貨数量を表示する日本語用実装"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Japanese implementation that displays a currency quantity with the Japanese currency name after the numeric value"
}
]
}
}
0mqg04nqzdi1uuygf3p82igf6qy11ku
307064
307038
2026-09-01T13:21:55Z
鈴音雨
101019
Added Z40801 to the approved list of test cases
307064
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40795"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6010",
"Z17K2": "Z40795K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "通貨数量"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "currency quantity"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z40795K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "言語"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20",
"Z40801"
],
"Z8K4": [
"Z14",
"Z40796"
],
"Z8K5": "Z40795"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "通貨数量を表示 (日本語)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "display currency quantity, Japanese"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "数値の後に日本語の通貨名を置いて通貨数量を表示する日本語用実装"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Japanese implementation that displays a currency quantity with the Japanese currency name after the numeric value"
}
]
}
}
3z63nberopmulwr40mjzihfp0aum9n8
307073
307064
2026-09-01T13:28:45Z
鈴音雨
101019
Added Z40802 to the approved list of test cases
307073
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40795"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6010",
"Z17K2": "Z40795K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "通貨数量"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "currency quantity"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z40795K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "言語"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20",
"Z40801",
"Z40802"
],
"Z8K4": [
"Z14",
"Z40796"
],
"Z8K5": "Z40795"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "通貨数量を表示 (日本語)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "display currency quantity, Japanese"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "数値の後に日本語の通貨名を置いて通貨数量を表示する日本語用実装"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Japanese implementation that displays a currency quantity with the Japanese currency name after the numeric value"
}
]
}
}
kneio4uzj1381j6yp9s18q9lbs99rvb
Z40796
0
92754
307037
2026-09-01T12:34:59Z
鈴音雨
101019
307037
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40796"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z40795",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z21394",
"Z21394K1": [
"Z6",
{
"Z1K1": "Z7",
"Z7K1": "Z25356",
"Z25356K1": {
"Z1K1": "Z18",
"Z18K1": "Z40795K1"
},
"Z25356K2": {
"Z1K1": "Z18",
"Z18K1": "Z40795K2"
}
},
{
"Z1K1": "Z7",
"Z7K1": "Z36697",
"Z36697K1": {
"Z1K1": "Z7",
"Z7K1": "Z25303",
"Z25303K1": {
"Z1K1": "Z18",
"Z18K1": "Z40795K1"
}
},
"Z36697K2": {
"Z1K1": "Z18",
"Z18K1": "Z40795K2"
}
}
]
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "通貨数量を表示 (日本語)、合成"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "display currency quantity, Japanese, composition"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
k1n7y5a7n788zi9ne29wijong7rl17m
307039
307037
2026-09-01T12:39:54Z
鈴音雨
101019
307039
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40796"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z40795",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z21394",
"Z21394K1": [
"Z6",
{
"Z1K1": "Z7",
"Z7K1": "Z25356",
"Z25356K1": {
"Z1K1": "Z18",
"Z18K1": "Z40795K1"
},
"Z25356K2": {
"Z1K1": "Z18",
"Z18K1": "Z40795K2"
}
},
{
"Z1K1": "Z7",
"Z7K1": "Z36691",
"Z36691K1": {
"Z1K1": "Z7",
"Z7K1": "Z6821",
"Z6821K1": {
"Z1K1": "Z7",
"Z7K1": "Z25303",
"Z25303K1": {
"Z1K1": "Z18",
"Z18K1": "Z40795K1"
}
}
},
"Z36691K2": {
"Z1K1": "Z18",
"Z18K1": "Z40795K2"
}
}
]
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "通貨数量を表示 (日本語)、合成"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "display currency quantity, Japanese, composition"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
c9ywj1i78dkmcuegk0363xhq10foari
307062
307039
2026-09-01T13:20:40Z
鈴音雨
101019
fix
307062
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40796"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z40795",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z21394",
"Z21394K1": [
"Z6",
{
"Z1K1": "Z7",
"Z7K1": "Z25356",
"Z25356K1": {
"Z1K1": "Z18",
"Z18K1": "Z40795K1"
},
"Z25356K2": {
"Z1K1": "Z18",
"Z18K1": "Z40795K2"
}
},
{
"Z1K1": "Z7",
"Z7K1": "Z40797",
"Z40797K1": {
"Z1K1": "Z7",
"Z7K1": "Z25303",
"Z25303K1": {
"Z1K1": "Z18",
"Z18K1": "Z40795K1"
}
},
"Z40797K2": {
"Z1K1": "Z18",
"Z18K1": "Z40795K2"
}
}
]
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "通貨数量を表示 (日本語)、合成"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "display currency quantity, Japanese, composition"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
20fd5xz6ipeqbsiu965u8h54gxbhmtb
Z40797
0
92755
307051
2026-09-01T13:12:39Z
鈴音雨
101019
307051
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40797"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6091",
"Z17K2": "Z40797K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "項目参照"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "item reference"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z40797K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "言語"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z40797"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "項目の短縮名、なければラベルまたはQID"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "short name, label or QID of item"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "指定言語で項目の短縮名を返し、存在しない場合は利用可能なラベルへフォールバックし、それも存在しない場合はQIDを返します。"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "returns the item's short name in the specified language; if unavailable, falls back to an available label, and if none is available, returns the QID"
}
]
}
}
0enj7v57pfhiqsfohpe2axcff13j2yf
307055
307051
2026-09-01T13:14:36Z
鈴音雨
101019
Added Z40798 to the approved list of implementations
307055
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40797"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6091",
"Z17K2": "Z40797K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "項目参照"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "item reference"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z40797K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "言語"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14",
"Z40798"
],
"Z8K5": "Z40797"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "項目の短縮名、なければラベルまたはQID"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "short name, label or QID of item"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "指定言語で項目の短縮名を返し、存在しない場合は利用可能なラベルへフォールバックし、それも存在しない場合はQIDを返します。"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "returns the item's short name in the specified language; if unavailable, falls back to an available label, and if none is available, returns the QID"
}
]
}
}
6qmmwgo86o0wiyih5cub7hh8ph1xqql
307058
307055
2026-09-01T13:17:04Z
鈴音雨
101019
Added Z40799 to the approved list of test cases
307058
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40797"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6091",
"Z17K2": "Z40797K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "項目参照"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "item reference"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z40797K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "言語"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20",
"Z40799"
],
"Z8K4": [
"Z14",
"Z40798"
],
"Z8K5": "Z40797"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "項目の短縮名、なければラベルまたはQID"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "short name, label or QID of item"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "指定言語で項目の短縮名を返し、存在しない場合は利用可能なラベルへフォールバックし、それも存在しない場合はQIDを返します。"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "returns the item's short name in the specified language; if unavailable, falls back to an available label, and if none is available, returns the QID"
}
]
}
}
39vemyw5a1dvsht5n1iebet6mqqflpj
307061
307058
2026-09-01T13:19:32Z
鈴音雨
101019
Added Z40800 to the approved list of test cases
307061
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40797"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6091",
"Z17K2": "Z40797K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "項目参照"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "item reference"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z40797K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "言語"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20",
"Z40799",
"Z40800"
],
"Z8K4": [
"Z14",
"Z40798"
],
"Z8K5": "Z40797"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "項目の短縮名、なければラベルまたはQID"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "short name, label or QID of item"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "指定言語で項目の短縮名を返し、存在しない場合は利用可能なラベルへフォールバックし、それも存在しない場合はQIDを返します。"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "returns the item's short name in the specified language; if unavailable, falls back to an available label, and if none is available, returns the QID"
}
]
}
}
c8067scs69k740r8pnxgl9byibxd9zj
Z40798
0
92756
307054
2026-09-01T13:14:24Z
鈴音雨
101019
307054
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40798"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z40797",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z802",
"Z802K1": {
"Z1K1": "Z7",
"Z7K1": "Z10008",
"Z10008K1": {
"Z1K1": "Z7",
"Z7K1": "Z36691",
"Z36691K1": {
"Z1K1": "Z7",
"Z7K1": "Z6821",
"Z6821K1": {
"Z1K1": "Z18",
"Z18K1": "Z40797K1"
}
},
"Z36691K2": {
"Z1K1": "Z18",
"Z18K1": "Z40797K2"
}
}
},
"Z802K2": {
"Z1K1": "Z7",
"Z7K1": "Z36270",
"Z36270K1": {
"Z1K1": "Z18",
"Z18K1": "Z40797K1"
},
"Z36270K2": {
"Z1K1": "Z18",
"Z18K1": "Z40797K2"
}
},
"Z802K3": {
"Z1K1": "Z7",
"Z7K1": "Z36691",
"Z36691K1": {
"Z1K1": "Z7",
"Z7K1": "Z6821",
"Z6821K1": {
"Z1K1": "Z18",
"Z18K1": "Z40797K1"
}
},
"Z36691K2": {
"Z1K1": "Z18",
"Z18K1": "Z40797K2"
}
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "項目の短縮名、なければラベルまたはQID、合成"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "short name, label or QID of item, composition"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
djt7mwzhkybozhrfh4o3jgdditgyc1v
307068
307054
2026-09-01T13:25:59Z
鈴音雨
101019
307068
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40798"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z40797",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z802",
"Z802K1": {
"Z1K1": "Z7",
"Z7K1": "Z19352",
"Z19352K1": {
"Z1K1": "Z7",
"Z7K1": "Z36691",
"Z36691K1": {
"Z1K1": "Z7",
"Z7K1": "Z6821",
"Z6821K1": {
"Z1K1": "Z18",
"Z18K1": "Z40797K1"
}
},
"Z36691K2": {
"Z1K1": "Z18",
"Z18K1": "Z40797K2"
}
},
"Z19352K2": "Z21"
},
"Z802K2": {
"Z1K1": "Z7",
"Z7K1": "Z36270",
"Z36270K1": {
"Z1K1": "Z18",
"Z18K1": "Z40797K1"
},
"Z36270K2": {
"Z1K1": "Z18",
"Z18K1": "Z40797K2"
}
},
"Z802K3": {
"Z1K1": "Z7",
"Z7K1": "Z36691",
"Z36691K1": {
"Z1K1": "Z7",
"Z7K1": "Z6821",
"Z6821K1": {
"Z1K1": "Z18",
"Z18K1": "Z40797K1"
}
},
"Z36691K2": {
"Z1K1": "Z18",
"Z18K1": "Z40797K2"
}
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "項目の短縮名、なければラベルまたはQID、合成"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "short name, label or QID of item, composition"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
l86p8pifu7hws45ed5ahupfe19e1zhe
Z40799
0
92757
307056
2026-09-01T13:16:19Z
鈴音雨
101019
307056
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40799"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z40797",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z40797",
"Z40797K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q4917"
},
"Z40797K2": "Z1002"
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z866",
"Z866K2": "US dollar"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "[en] アメリカ合衆国ドルの短縮名"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[en] return US dollar short name"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
dr0tqvtufbxmbqotbhs3sjwg5wfs7p7
Z40800
0
92758
307060
2026-09-01T13:19:09Z
鈴音雨
101019
307060
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40800"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z40797",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z40797",
"Z40797K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q4917"
},
"Z40797K2": "Z1830"
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z866",
"Z866K2": "米ドル"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "[ja] アメリカ合衆国ドルの短縮名"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[ja] return US dollar"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
1m6kame3dwov2phf3xczmoaahpoe8ft
Z40801
0
92759
307063
2026-09-01T13:21:26Z
鈴音雨
101019
307063
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40801"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z40795",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z40795",
"Z40795K1": {
"Z1K1": "Z6010",
"Z6010K1": {
"Z1K1": "Z19677",
"Z19677K1": {
"Z1K1": "Z16659",
"Z16659K1": "Z16660"
},
"Z19677K2": {
"Z1K1": "Z13518",
"Z13518K1": "12345"
},
"Z19677K3": {
"Z1K1": "Z13518",
"Z13518K1": "1"
}
},
"Z6010K2": {
"Z1K1": "Z19677",
"Z19677K1": {
"Z1K1": "Z16659",
"Z16659K1": "Z16660"
},
"Z19677K2": {
"Z1K1": "Z13518",
"Z13518K1": "12345"
},
"Z19677K3": {
"Z1K1": "Z13518",
"Z13518K1": "1"
}
},
"Z6010K3": {
"Z1K1": "Z19677",
"Z19677K1": {
"Z1K1": "Z16659",
"Z16659K1": "Z16660"
},
"Z19677K2": {
"Z1K1": "Z13518",
"Z13518K1": "12345"
},
"Z19677K3": {
"Z1K1": "Z13518",
"Z13518K1": "1"
}
},
"Z6010K4": {
"Z1K1": "Z6091",
"Z6091K1": "Q17278"
}
},
"Z40795K2": "Z1830"
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z866",
"Z866K2": "12,345円"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "[ja] 12,345円"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[ja] 12,345 yen"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
gi81lks712xznlcuh8ydwwjfsirlfqp
Z40802
0
92760
307065
2026-09-01T13:22:28Z
鈴音雨
101019
307065
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40802"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z40795",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z40795",
"Z40795K1": {
"Z1K1": "Z6010",
"Z6010K1": {
"Z1K1": "Z19677",
"Z19677K1": {
"Z1K1": "Z16659",
"Z16659K1": "Z16660"
},
"Z19677K2": {
"Z1K1": "Z13518",
"Z13518K1": "12345"
},
"Z19677K3": {
"Z1K1": "Z13518",
"Z13518K1": "1"
}
},
"Z6010K2": {
"Z1K1": "Z19677",
"Z19677K1": {
"Z1K1": "Z16659",
"Z16659K1": "Z16660"
},
"Z19677K2": {
"Z1K1": "Z13518",
"Z13518K1": "12345"
},
"Z19677K3": {
"Z1K1": "Z13518",
"Z13518K1": "1"
}
},
"Z6010K3": {
"Z1K1": "Z19677",
"Z19677K1": {
"Z1K1": "Z16659",
"Z16659K1": "Z16660"
},
"Z19677K2": {
"Z1K1": "Z13518",
"Z13518K1": "12345"
},
"Z19677K3": {
"Z1K1": "Z13518",
"Z13518K1": "1"
}
},
"Z6010K4": {
"Z1K1": "Z6091",
"Z6091K1": "Q4917"
}
},
"Z40795K2": "Z1830"
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z866",
"Z866K2": "12,345米ドル"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "[ja] 12,345米ドル"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[ja] 12,345 US dollar"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
eqq2yoqdagf8a1i9rxcgd3hwikq8n4p
307070
307065
2026-09-01T13:26:51Z
鈴音雨
101019
307070
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40802"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z40795",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z40795",
"Z40795K1": {
"Z1K1": "Z6010",
"Z6010K1": {
"Z1K1": "Z19677",
"Z19677K1": {
"Z1K1": "Z16659",
"Z16659K1": "Z16660"
},
"Z19677K2": {
"Z1K1": "Z13518",
"Z13518K1": "123456"
},
"Z19677K3": {
"Z1K1": "Z13518",
"Z13518K1": "10000"
}
},
"Z6010K2": {
"Z1K1": "Z19677",
"Z19677K1": {
"Z1K1": "Z16659",
"Z16659K1": "Z16660"
},
"Z19677K2": {
"Z1K1": "Z13518",
"Z13518K1": "123456"
},
"Z19677K3": {
"Z1K1": "Z13518",
"Z13518K1": "10000"
}
},
"Z6010K3": {
"Z1K1": "Z19677",
"Z19677K1": {
"Z1K1": "Z16659",
"Z16659K1": "Z16660"
},
"Z19677K2": {
"Z1K1": "Z13518",
"Z13518K1": "123456"
},
"Z19677K3": {
"Z1K1": "Z13518",
"Z13518K1": "10000"
}
},
"Z6010K4": {
"Z1K1": "Z6091",
"Z6091K1": "Q199"
}
},
"Z40795K2": "Z1830"
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z866",
"Z866K2": "123,456米ドル"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "[ja] 123,456米ドル"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[ja] 123,456 US dollar"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
gus4lqhrllu76dt15a3iuigw4uyck1d
307071
307070
2026-09-01T13:27:19Z
鈴音雨
101019
fix
307071
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40802"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z40795",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z40795",
"Z40795K1": {
"Z1K1": "Z6010",
"Z6010K1": {
"Z1K1": "Z19677",
"Z19677K1": {
"Z1K1": "Z16659",
"Z16659K1": "Z16660"
},
"Z19677K2": {
"Z1K1": "Z13518",
"Z13518K1": "123456"
},
"Z19677K3": {
"Z1K1": "Z13518",
"Z13518K1": "1"
}
},
"Z6010K2": {
"Z1K1": "Z19677",
"Z19677K1": {
"Z1K1": "Z16659",
"Z16659K1": "Z16660"
},
"Z19677K2": {
"Z1K1": "Z13518",
"Z13518K1": "123456"
},
"Z19677K3": {
"Z1K1": "Z13518",
"Z13518K1": "1"
}
},
"Z6010K3": {
"Z1K1": "Z19677",
"Z19677K1": {
"Z1K1": "Z16659",
"Z16659K1": "Z16660"
},
"Z19677K2": {
"Z1K1": "Z13518",
"Z13518K1": "123456"
},
"Z19677K3": {
"Z1K1": "Z13518",
"Z13518K1": "1"
}
},
"Z6010K4": {
"Z1K1": "Z6091",
"Z6091K1": "Q4917"
}
},
"Z40795K2": "Z1830"
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z866",
"Z866K2": "123,456米ドル"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "[ja] 123,456米ドル"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[ja] 123,456 US dollar"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
75y12gx0i0itxg2dh2teewbmrryxqvr
Z40803
0
92761
307075
2026-09-01T13:29:39Z
鈴音雨
101019
307075
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40803"
},
"Z2K2": {
"Z1K1": "Z14294",
"Z14294K1": [
"Z14293",
{
"Z1K1": "Z14293",
"Z14293K1": "Z40795",
"Z14293K2": "Z34003"
}
],
"Z14294K2": "Z40792"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "通貨数量表示の言語別設定"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "config for display currency quantity"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
0qems0bfmw3tnkkqnrso49hfsl64pts
Z40804
0
92762
307077
2026-09-01T13:31:36Z
鈴音雨
101019
307077
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40804"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6010",
"Z17K2": "Z40804K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "通過数量"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "currency quantity"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z40804K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "言語"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z40804"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "通貨数量を表示"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "display currency quantity"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "通貨単位を持つウィキデータの数量を、指定された言語に従って文字列として表示します。"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "displays a Wikidata quantity with a currency unit as a string according to the specified language"
}
]
}
}
jd13gti5v1u58rey8yexe00bjy8f4y2
307083
307077
2026-09-01T13:34:26Z
鈴音雨
101019
Added Z40805 to the approved list of implementations
307083
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40804"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6010",
"Z17K2": "Z40804K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "通過数量"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "currency quantity"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z40804K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "言語"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14",
"Z40805"
],
"Z8K5": "Z40804"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "通貨数量を表示"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "display currency quantity"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "通貨単位を持つウィキデータの数量を、指定された言語に従って文字列として表示します。"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "displays a Wikidata quantity with a currency unit as a string according to the specified language"
}
]
}
}
hf16gxoy4mrknsyc6wfvkcqt9qh1126
307088
307083
2026-09-01T13:37:19Z
鈴音雨
101019
Added Z40806 および Z40807 to the approved list of test cases
307088
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40804"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6010",
"Z17K2": "Z40804K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "通過数量"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "currency quantity"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z40804K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "言語"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20",
"Z40806",
"Z40807"
],
"Z8K4": [
"Z14",
"Z40805"
],
"Z8K5": "Z40804"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "通貨数量を表示"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "display currency quantity"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "通貨単位を持つウィキデータの数量を、指定された言語に従って文字列として表示します。"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "displays a Wikidata quantity with a currency unit as a string according to the specified language"
}
]
}
}
kfv03awofloii28oc0bfcywyu67f6or
Z40805
0
92763
307081
2026-09-01T13:34:06Z
鈴音雨
101019
307081
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40805"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z40804",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z13318",
"Z13318K1": {
"Z1K1": "Z7",
"Z7K1": "Z14310",
"Z14310K1": "Z40803",
"Z14310K2": {
"Z1K1": "Z18",
"Z18K1": "Z40804K2"
}
},
"Z13318K2": {
"Z1K1": "Z18",
"Z18K1": "Z40804K1"
},
"Z13318K3": {
"Z1K1": "Z18",
"Z18K1": "Z40804K2"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "通貨数量を表示、合成"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "display currency quantity, composition"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
6glcolst15aojrabjv864hcrhkah7lo
Z40806
0
92764
307084
2026-09-01T13:35:28Z
鈴音雨
101019
307084
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40806"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z40804",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z40804",
"Z40804K1": {
"Z1K1": "Z6010",
"Z6010K1": {
"Z1K1": "Z19677",
"Z19677K1": {
"Z1K1": "Z16659",
"Z16659K1": "Z16660"
},
"Z19677K2": {
"Z1K1": "Z13518",
"Z13518K1": "12345"
},
"Z19677K3": {
"Z1K1": "Z13518",
"Z13518K1": "1"
}
},
"Z6010K2": {
"Z1K1": "Z19677",
"Z19677K1": {
"Z1K1": "Z16659",
"Z16659K1": "Z16660"
},
"Z19677K2": {
"Z1K1": "Z13518",
"Z13518K1": "12345"
},
"Z19677K3": {
"Z1K1": "Z13518",
"Z13518K1": "1"
}
},
"Z6010K3": {
"Z1K1": "Z19677",
"Z19677K1": {
"Z1K1": "Z16659",
"Z16659K1": "Z16660"
},
"Z19677K2": {
"Z1K1": "Z13518",
"Z13518K1": "12345"
},
"Z19677K3": {
"Z1K1": "Z13518",
"Z13518K1": "1"
}
},
"Z6010K4": {
"Z1K1": "Z6091",
"Z6091K1": "Q4917"
}
},
"Z40804K2": "Z1830"
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z866",
"Z866K2": "12,345米ドル"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "[ja] アメリカ合衆国ドルが先頭"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[ja] US dollar is in head"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
s59oilnh9dr3gbh2g8cpsub0icqz2iy
307085
307084
2026-09-01T13:36:18Z
鈴音雨
101019
fix
307085
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40806"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z40804",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z40804",
"Z40804K1": {
"Z1K1": "Z6010",
"Z6010K1": {
"Z1K1": "Z19677",
"Z19677K1": {
"Z1K1": "Z16659",
"Z16659K1": "Z16660"
},
"Z19677K2": {
"Z1K1": "Z13518",
"Z13518K1": "12345"
},
"Z19677K3": {
"Z1K1": "Z13518",
"Z13518K1": "1"
}
},
"Z6010K2": {
"Z1K1": "Z19677",
"Z19677K1": {
"Z1K1": "Z16659",
"Z16659K1": "Z16660"
},
"Z19677K2": {
"Z1K1": "Z13518",
"Z13518K1": "12345"
},
"Z19677K3": {
"Z1K1": "Z13518",
"Z13518K1": "1"
}
},
"Z6010K3": {
"Z1K1": "Z19677",
"Z19677K1": {
"Z1K1": "Z16659",
"Z16659K1": "Z16660"
},
"Z19677K2": {
"Z1K1": "Z13518",
"Z13518K1": "12345"
},
"Z19677K3": {
"Z1K1": "Z13518",
"Z13518K1": "1"
}
},
"Z6010K4": {
"Z1K1": "Z6091",
"Z6091K1": "Q4917"
}
},
"Z40804K2": "Z1830"
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z866",
"Z866K2": "12,345米ドル"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "[ja] アメリカ合衆国ドルが末尾"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[ja] US dollar is in tail"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
0b15id6g2o6ibqc3k00jbvueu36ncx0
Z40807
0
92765
307087
2026-09-01T13:37:06Z
鈴音雨
101019
307087
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40807"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z40804",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z40804",
"Z40804K1": {
"Z1K1": "Z6010",
"Z6010K1": {
"Z1K1": "Z19677",
"Z19677K1": {
"Z1K1": "Z16659",
"Z16659K1": "Z16660"
},
"Z19677K2": {
"Z1K1": "Z13518",
"Z13518K1": "12345"
},
"Z19677K3": {
"Z1K1": "Z13518",
"Z13518K1": "1"
}
},
"Z6010K2": {
"Z1K1": "Z19677",
"Z19677K1": {
"Z1K1": "Z16659",
"Z16659K1": "Z16660"
},
"Z19677K2": {
"Z1K1": "Z13518",
"Z13518K1": "12345"
},
"Z19677K3": {
"Z1K1": "Z13518",
"Z13518K1": "1"
}
},
"Z6010K3": {
"Z1K1": "Z19677",
"Z19677K1": {
"Z1K1": "Z16659",
"Z16659K1": "Z16660"
},
"Z19677K2": {
"Z1K1": "Z13518",
"Z13518K1": "12345"
},
"Z19677K3": {
"Z1K1": "Z13518",
"Z13518K1": "1"
}
},
"Z6010K4": {
"Z1K1": "Z6091",
"Z6091K1": "Q4917"
}
},
"Z40804K2": "Z1002"
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z866",
"Z866K2": "US$12,345"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1830",
"Z11K2": "[en] アメリカ合衆国ドルが先頭"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[ja] US dollar is in head"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
bhyxw4f3ybtlxrg0gjfo0esj5dxw74w
Z40808
0
92766
307101
2026-09-01T14:06:57Z
Jsamwrites
938
Create function: language of work-sentence-sentence, default
307101
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40808"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6091",
"Z17K2": "Z40808K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "subject"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z40808K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "use pronoun"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z6091",
"Z17K2": "Z40808K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "temporal aspect"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z40808K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z11",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z40808"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language of work-sentence-sentence, default"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
rbso2hbl36t004754ryjb78s26rv944
307104
307101
2026-09-01T14:08:26Z
Jsamwrites
938
Added Z40809 to the approved list of implementations
307104
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40808"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6091",
"Z17K2": "Z40808K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "subject"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z40808K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "use pronoun"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z6091",
"Z17K2": "Z40808K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "temporal aspect"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z40808K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z11",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14",
"Z40809"
],
"Z8K5": "Z40808"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language of work-sentence-sentence, default"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
i3a3v7arlbfbv6labp7y3hbwp8r0pf9
307110
307104
2026-09-01T14:28:47Z
Jsamwrites
938
307110
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40808"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6091",
"Z17K2": "Z40808K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "subject"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z40808K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "use pronoun"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z6091",
"Z17K2": "Z40808K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "temporal aspect"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z40808K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z11",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14",
"Z40809"
],
"Z8K5": "Z40808"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language of work-sentence, default"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
ja5vfwxizc7q2ncwchgtdg810qkq4r4
Z40809
0
92767
307102
2026-09-01T14:07:00Z
Jsamwrites
938
Create implementation for Z40808
307102
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40809"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z40808",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z36911",
"Z36911K1": {
"Z1K1": "Z7",
"Z7K1": "Z34669",
"Z34669K1": [
"Z11",
{
"Z1K1": "Z7",
"Z7K1": "Z34669",
"Z34669K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
},
"Z11K2": {
"Z1K1": "Z7",
"Z7K1": "Z10771",
"Z10771K1": {
"Z1K1": "Z7",
"Z7K1": "Z24766",
"Z24766K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K1"
},
"Z24766K2": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
}
}
}
},
{
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
},
"Z11K2": "(file-extensions)"
},
{
"Z1K1": "Z7",
"Z7K1": "Z34644",
"Z34644K1": {
"Z1K1": "Z7",
"Z7K1": "Z13436",
"Z13436K1": "Z26107",
"Z13436K2": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
},
"Z13436K3": {
"Z1K1": "Z7",
"Z7K1": "Z22978",
"Z22978K1": {
"Z1K1": "Z7",
"Z7K1": "Z6821",
"Z6821K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K1"
}
},
"Z22978K2": {
"Z1K1": "Z6092",
"Z6092K1": "P1195"
}
}
},
"Z34644K2": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
}
}
],
"Z34669K2": {
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
},
"Z11K2": " "
}
},
{
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
},
"Z11K2": "."
}
],
"Z34669K2": {
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
},
"Z11K2": ""
}
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language of work-sentence-sentence, default,comp"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
j5945039u9rq83cmcx45apvqlsf5ava
307103
307102
2026-09-01T14:08:06Z
Jsamwrites
938
307103
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40809"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z40808",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z36911",
"Z36911K1": {
"Z1K1": "Z7",
"Z7K1": "Z34669",
"Z34669K1": [
"Z11",
{
"Z1K1": "Z7",
"Z7K1": "Z34669",
"Z34669K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
},
"Z11K2": {
"Z1K1": "Z7",
"Z7K1": "Z10771",
"Z10771K1": {
"Z1K1": "Z7",
"Z7K1": "Z24766",
"Z24766K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K1"
},
"Z24766K2": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
}
}
}
},
{
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
},
"Z11K2": "(language of work)"
},
{
"Z1K1": "Z7",
"Z7K1": "Z34644",
"Z34644K1": {
"Z1K1": "Z7",
"Z7K1": "Z13436",
"Z13436K1": "Z26107",
"Z13436K2": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
},
"Z13436K3": {
"Z1K1": "Z7",
"Z7K1": "Z22978",
"Z22978K1": {
"Z1K1": "Z7",
"Z7K1": "Z6821",
"Z6821K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K1"
}
},
"Z22978K2": {
"Z1K1": "Z6092",
"Z6092K1": "P407"
}
}
},
"Z34644K2": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
}
}
],
"Z34669K2": {
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
},
"Z11K2": " "
}
},
{
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
},
"Z11K2": "."
}
],
"Z34669K2": {
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
},
"Z11K2": ""
}
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language of work-sentence-sentence, default,comp"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
b1yj5ciq4w5deano7el8do5tvj1is81
307105
307103
2026-09-01T14:15:50Z
Jsamwrites
938
307105
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40809"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z40808",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z36911",
"Z36911K1": {
"Z1K1": "Z7",
"Z7K1": "Z34669",
"Z34669K1": [
"Z11",
{
"Z1K1": "Z7",
"Z7K1": "Z34669",
"Z34669K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
},
"Z11K2": {
"Z1K1": "Z7",
"Z7K1": "Z10771",
"Z10771K1": {
"Z1K1": "Z7",
"Z7K1": "Z24766",
"Z24766K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K1"
},
"Z24766K2": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
}
}
}
},
{
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
},
"Z11K2": "(language of work)"
},
{
"Z1K1": "Z7",
"Z7K1": "Z34644",
"Z34644K1": {
"Z1K1": "Z7",
"Z7K1": "Z13464",
"Z13464K1": {
"Z1K1": "Z9",
"Z9K1": ""
},
"Z13464K2": {
"Z1K1": "Z7",
"Z7K1": "Z22978",
"Z22978K1": {
"Z1K1": "Z7",
"Z7K1": "Z6821",
"Z6821K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K1"
}
},
"Z22978K2": {
"Z1K1": "Z6092",
"Z6092K1": "P407"
}
},
"Z13464K3": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
}
},
"Z34644K2": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
}
}
],
"Z34669K2": {
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
},
"Z11K2": " "
}
},
{
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
},
"Z11K2": "."
}
],
"Z34669K2": {
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
},
"Z11K2": ""
}
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language of work-sentence-sentence, default,comp"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
p903wrc69a3usswvmg5tivr53mmlrkl
307106
307105
2026-09-01T14:16:35Z
Jsamwrites
938
307106
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40809"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z40808",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z36911",
"Z36911K1": {
"Z1K1": "Z7",
"Z7K1": "Z34669",
"Z34669K1": [
"Z11",
{
"Z1K1": "Z7",
"Z7K1": "Z34669",
"Z34669K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
},
"Z11K2": {
"Z1K1": "Z7",
"Z7K1": "Z10771",
"Z10771K1": {
"Z1K1": "Z7",
"Z7K1": "Z24766",
"Z24766K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K1"
},
"Z24766K2": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
}
}
}
},
{
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
},
"Z11K2": "(language of work)"
},
{
"Z1K1": "Z7",
"Z7K1": "Z34644",
"Z34644K1": {
"Z1K1": "Z7",
"Z7K1": "Z13464",
"Z13464K1": "Z24766",
"Z13464K2": {
"Z1K1": "Z7",
"Z7K1": "Z22978",
"Z22978K1": {
"Z1K1": "Z7",
"Z7K1": "Z6821",
"Z6821K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K1"
}
},
"Z22978K2": {
"Z1K1": "Z6092",
"Z6092K1": "P407"
}
},
"Z13464K3": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
}
},
"Z34644K2": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
}
}
],
"Z34669K2": {
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
},
"Z11K2": " "
}
},
{
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
},
"Z11K2": "."
}
],
"Z34669K2": {
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
},
"Z11K2": ""
}
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language of work-sentence-sentence, default,comp"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
mosp8zp7venku5kgl86ss47kc0o3l1p
307107
307106
2026-09-01T14:18:18Z
Jsamwrites
938
307107
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40809"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z40808",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z36911",
"Z36911K1": {
"Z1K1": "Z7",
"Z7K1": "Z34669",
"Z34669K1": [
"Z11",
{
"Z1K1": "Z7",
"Z7K1": "Z34669",
"Z34669K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
},
"Z11K2": {
"Z1K1": "Z7",
"Z7K1": "Z10771",
"Z10771K1": {
"Z1K1": "Z7",
"Z7K1": "Z24766",
"Z24766K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K1"
},
"Z24766K2": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
}
}
}
},
{
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
},
"Z11K2": "(language of work)"
},
{
"Z1K1": "Z7",
"Z7K1": "Z34644",
"Z34644K1": {
"Z1K1": "Z7",
"Z7K1": "Z13464",
"Z13464K1": "Z31676",
"Z13464K2": {
"Z1K1": "Z7",
"Z7K1": "Z22978",
"Z22978K1": {
"Z1K1": "Z7",
"Z7K1": "Z6821",
"Z6821K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K1"
}
},
"Z22978K2": {
"Z1K1": "Z6092",
"Z6092K1": "P407"
}
},
"Z13464K3": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
}
},
"Z34644K2": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
}
}
],
"Z34669K2": {
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
},
"Z11K2": " "
}
},
{
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
},
"Z11K2": "."
}
],
"Z34669K2": {
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
},
"Z11K2": ""
}
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language of work-sentence-sentence, default,comp"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
nl7gyw0uftqsctxyildhxh9ykd42wcm
307109
307107
2026-09-01T14:28:34Z
Jsamwrites
938
307109
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40809"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z40808",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z36911",
"Z36911K1": {
"Z1K1": "Z7",
"Z7K1": "Z34669",
"Z34669K1": [
"Z11",
{
"Z1K1": "Z7",
"Z7K1": "Z34669",
"Z34669K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
},
"Z11K2": {
"Z1K1": "Z7",
"Z7K1": "Z10771",
"Z10771K1": {
"Z1K1": "Z7",
"Z7K1": "Z24766",
"Z24766K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K1"
},
"Z24766K2": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
}
}
}
},
{
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
},
"Z11K2": "(language of work)"
},
{
"Z1K1": "Z7",
"Z7K1": "Z34644",
"Z34644K1": {
"Z1K1": "Z7",
"Z7K1": "Z13464",
"Z13464K1": "Z31676",
"Z13464K2": {
"Z1K1": "Z7",
"Z7K1": "Z22978",
"Z22978K1": {
"Z1K1": "Z7",
"Z7K1": "Z6821",
"Z6821K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K1"
}
},
"Z22978K2": {
"Z1K1": "Z6092",
"Z6092K1": "P407"
}
},
"Z13464K3": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
}
},
"Z34644K2": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
}
}
],
"Z34669K2": {
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
},
"Z11K2": " "
}
},
{
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
},
"Z11K2": "."
}
],
"Z34669K2": {
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40808K4"
},
"Z11K2": ""
}
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language of work-sentence, default,comp"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
aaps03ijtvitbrfkkv5dbqslwgsgje8
Z40810
0
92768
307108
2026-09-01T14:26:41Z
Jsamwrites
938
307108
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40810"
},
"Z2K2": {
"Z1K1": "Z14294",
"Z14294K1": [
"Z14293",
{
"Z1K1": "Z14293",
"Z14293K1": "Z40716",
"Z14293K2": "Z33034"
}
],
"Z14294K2": "Z40808"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "config for language of work"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
qmk5cc1sd9ydf427qnopspum1kbd9uh
307115
307108
2026-09-01T14:31:02Z
Jsamwrites
938
307115
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40810"
},
"Z2K2": {
"Z1K1": "Z14294",
"Z14294K1": [
"Z14293",
{
"Z1K1": "Z14293",
"Z14293K1": "Z40716",
"Z14293K2": "Z33034"
}
],
"Z14294K2": "Z40808"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "config for language of work-sentence"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
0kte5lvd08nckva8thckebi8krhfuux
Z40811
0
92769
307111
2026-09-01T14:29:31Z
Jsamwrites
938
Create function: language of work-sentence
307111
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40811"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6091",
"Z17K2": "Z40811K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "subject"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z40811K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "use pronoun"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z6091",
"Z17K2": "Z40811K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "temporal aspect"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z40811K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z11",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z40811"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language of work-sentence"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
ejlbjzb29lqxaf0ac6z4lv49t7wd2gt
307113
307111
2026-09-01T14:29:47Z
Jsamwrites
938
Added Z40812 to the approved list of implementations
307113
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40811"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6091",
"Z17K2": "Z40811K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "subject"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z40811K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "use pronoun"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z6091",
"Z17K2": "Z40811K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "temporal aspect"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z40811K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z11",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14",
"Z40812"
],
"Z8K5": "Z40811"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language of work-sentence"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
p4589u741x2hq5w9tfrooqkdywzj7ur
Z40812
0
92770
307112
2026-09-01T14:29:34Z
Jsamwrites
938
Create implementation for Z40811
307112
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40812"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z40811",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z30438",
"Z30438K1": {
"Z1K1": "Z7",
"Z7K1": "Z14310",
"Z14310K1": "Z40704",
"Z14310K2": {
"Z1K1": "Z18",
"Z18K1": "Z40811K4"
}
},
"Z30438K2": {
"Z1K1": "Z18",
"Z18K1": "Z40811K1"
},
"Z30438K3": {
"Z1K1": "Z18",
"Z18K1": "Z40811K2"
},
"Z30438K4": {
"Z1K1": "Z18",
"Z18K1": "Z40811K3"
},
"Z30438K5": {
"Z1K1": "Z18",
"Z18K1": "Z40811K4"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language of work-sentence,comp"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
thmrhaipuuzpzhbg5jab19ghbaf2ndz
307114
307112
2026-09-01T14:30:47Z
Jsamwrites
938
307114
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40812"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z40811",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z30438",
"Z30438K1": {
"Z1K1": "Z7",
"Z7K1": "Z14310",
"Z14310K1": "Z40810",
"Z14310K2": {
"Z1K1": "Z18",
"Z18K1": "Z40811K4"
}
},
"Z30438K2": {
"Z1K1": "Z18",
"Z18K1": "Z40811K1"
},
"Z30438K3": {
"Z1K1": "Z18",
"Z18K1": "Z40811K2"
},
"Z30438K4": {
"Z1K1": "Z18",
"Z18K1": "Z40811K3"
},
"Z30438K5": {
"Z1K1": "Z18",
"Z18K1": "Z40811K4"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language of work-sentence,comp"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
070xef5b2igk279iv6s6dcsrhn4k3nw
Z40813
0
92771
307116
2026-09-01T14:33:23Z
Jsamwrites
938
Create function: language of work-sentence (HTML)
307116
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40813"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6091",
"Z17K2": "Z40813K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "subject"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z40813K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "use pronoun"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z6091",
"Z17K2": "Z40813K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "temporal aspect"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z40813K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z40813"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language of work-sentence (HTML)"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
9q39u06os7h5cbi5tid2z76v435emyu
307118
307116
2026-09-01T14:33:37Z
Jsamwrites
938
Added Z40814 to the approved list of implementations
307118
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40813"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6091",
"Z17K2": "Z40813K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "subject"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z40813K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "use pronoun"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z6091",
"Z17K2": "Z40813K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "temporal aspect"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z40813K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14",
"Z40814"
],
"Z8K5": "Z40813"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language of work-sentence (HTML)"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
f5ne7s1uwwzjwmuajmcwzvry44yd5ws
307396
307118
2026-09-02T11:49:38Z
Ornithorynque liminaire
1539
fr
307396
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40813"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6091",
"Z17K2": "Z40813K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "subject"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z40813K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "use pronoun"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z6091",
"Z17K2": "Z40813K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "temporal aspect"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z40813K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14",
"Z40814"
],
"Z8K5": "Z40813"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language of work-sentence (HTML)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "langue de cette oeuvre"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
3p9vk5tljh901iag3ahgtmzy10q21y5
307397
307396
2026-09-02T11:50:12Z
Ornithorynque liminaire
1539
fr
307397
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40813"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6091",
"Z17K2": "Z40813K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "subject"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z40813K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "use pronoun"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z6091",
"Z17K2": "Z40813K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "temporal aspect"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z40813K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14",
"Z40814"
],
"Z8K5": "Z40813"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language of work-sentence (HTML)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "langue de cette œuvre"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
scbaozqgeuwh7qjpztesho33lm5bbkz
Z40814
0
92772
307117
2026-09-01T14:33:26Z
Jsamwrites
938
Create implementation for Z40813
307117
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40814"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z40813",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z37464",
"Z37464K1": {
"Z1K1": "Z7",
"Z7K1": "Z30438",
"Z30438K1": {
"Z1K1": "Z7",
"Z7K1": "Z14310",
"Z14310K1": "Z40704",
"Z14310K2": {
"Z1K1": "Z18",
"Z18K1": "Z40813K4"
}
},
"Z30438K2": {
"Z1K1": "Z18",
"Z18K1": "Z40813K1"
},
"Z30438K3": {
"Z1K1": "Z18",
"Z18K1": "Z40813K2"
},
"Z30438K4": {
"Z1K1": "Z18",
"Z18K1": "Z40813K3"
},
"Z30438K5": {
"Z1K1": "Z18",
"Z18K1": "Z40813K4"
}
},
"Z37464K2": {
"Z1K1": "Z6",
"Z6K1": "Z40579"
},
"Z37464K3": [
"Z6091"
],
"Z37464K4": [
"Z6091"
],
"Z37464K5": {
"Z1K1": "Z18",
"Z18K1": "Z40813K4"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language of work-sentence (HTML),comp"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
t0bijr2xxjjpjv8mnzpfo4x53ergoyy
307119
307117
2026-09-01T14:34:08Z
Jsamwrites
938
307119
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40814"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z40813",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z37464",
"Z37464K1": {
"Z1K1": "Z7",
"Z7K1": "Z30438",
"Z30438K1": {
"Z1K1": "Z7",
"Z7K1": "Z14310",
"Z14310K1": "Z40810",
"Z14310K2": {
"Z1K1": "Z18",
"Z18K1": "Z40813K4"
}
},
"Z30438K2": {
"Z1K1": "Z18",
"Z18K1": "Z40813K1"
},
"Z30438K3": {
"Z1K1": "Z18",
"Z18K1": "Z40813K2"
},
"Z30438K4": {
"Z1K1": "Z18",
"Z18K1": "Z40813K3"
},
"Z30438K5": {
"Z1K1": "Z18",
"Z18K1": "Z40813K4"
}
},
"Z37464K2": {
"Z1K1": "Z6",
"Z6K1": "Z40579"
},
"Z37464K3": [
"Z6091"
],
"Z37464K4": [
"Z6091"
],
"Z37464K5": {
"Z1K1": "Z18",
"Z18K1": "Z40813K4"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language of work-sentence (HTML),comp"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
imr8xacmao5l5lq7cif6xj3rugb27r3
Z40815
0
92773
307122
2026-09-01T15:29:54Z
YoshiRulz
10156
Create function
307122
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40815"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z40783",
"Z17K2": "Z40815K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "grapheme"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z40815"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Grapheme to String"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"extract String from Grapheme",
"Z40783K1"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
ad87on5qfvdhybiqfwd0vbj3bkyqdbe
307125
307122
2026-09-01T15:30:53Z
YoshiRulz
10156
Added Z40816 to the approved list of implementations
307125
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40815"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z40783",
"Z17K2": "Z40815K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "grapheme"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14",
"Z40816"
],
"Z8K5": "Z40815"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Grapheme to String"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"extract String from Grapheme",
"Z40783K1"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
m5rbdr67aipepenjuij94gtkzgwdvik
Talk:Z40783
1
92774
307123
2026-09-01T15:30:15Z
YoshiRulz
10156
Add auto-generated docs
307123
wikitext
text/x-wiki
{{type documentation|Z40783|Grapheme}}
l60a4o0xsji59iva7gf39oc6ycogx6d
Z40816
0
92775
307124
2026-09-01T15:30:41Z
YoshiRulz
10156
Create implementation
307124
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40816"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z40815",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z803",
"Z803K1": {
"Z1K1": "Z39",
"Z39K1": "Z40783K1"
},
"Z803K2": {
"Z1K1": "Z18",
"Z18K1": "Z40815K1"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Grapheme to String, composition"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
39enr3xms4v668a5rd2soek8nawxkyh
Help:Type deconstruction table/Grapheme
12
92776
307134
2026-09-01T15:37:58Z
YoshiRulz
10156
Create page
307134
wikitext
text/x-wiki
{{Help:Type deconstruction table/preface|Z40783|Grapheme}}
|-
| {{Z|31145}}
! {{ZK|40783|1|type=Z6}}
| {{Z|40815}}
|}
reywe2jlw2uswkkt45i4t8i3bcyam29
Z40817
0
92777
307139
2026-09-01T16:13:07Z
YoshiRulz
10156
Create function
307139
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40817"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z40783",
"Z17K2": "Z40817K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "first"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40783",
"Z17K2": "Z40817K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "second"
}
]
}
}
],
"Z8K2": "Z40",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z40817"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "are Graphemes the same?"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"Grapheme equality"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
cg5fepk5ctax9q4qacesphp6telhpje
307143
307139
2026-09-01T16:14:49Z
YoshiRulz
10156
Added Z40818 to the approved list of implementations
307143
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40817"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z40783",
"Z17K2": "Z40817K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "first"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40783",
"Z17K2": "Z40817K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "second"
}
]
}
}
],
"Z8K2": "Z40",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14",
"Z40818"
],
"Z8K5": "Z40817"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "are Graphemes the same?"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"Grapheme equality"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
prpyxfm34oj1ldqlfsszdk0ef87b5bp
Wikifunctions:Status updates/2026-08-28/id
4
92779
307141
2026-09-01T16:13:56Z
엔디지2
102010
Created page with "Wikifunctions:Pengumuman status/2025-08-22"
307141
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = <span lang="en" dir="ltr" class="mw-content-ltr">Previous update</span>
| prev = 2026-08-20
| nextlabel = <span lang="en" dir="ltr" class="mw-content-ltr">Next update</span>
| next =
}}
<div lang="en" dir="ltr" class="mw-content-ltr">
=== News in Types: Wikifunctions Object Reference ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
The community has proposed, and now it is here: a new Type, [[Z96|Wikifunctions Object Reference]], based on this [[Wikifunctions:Type proposals/Wikifunctions object reference|Type proposal]] by [[User:GrounderUK|GrounderUK]].
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
What are Wikifunctions Object References good for? Here are the uses, as listed by the community:
</div>
* <span lang="en" dir="ltr" class="mw-content-ltr">Prevent the automatic de-referencing of references extracted from Wikifunctions objects (by [[Z803|Z803]], for example).</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Allow more straightforward and efficient comparison of types. For example:</span>
** {{Z|Z16829}} <span lang="en" dir="ltr" class="mw-content-ltr">(or an equivalent) could return a Wikifunctions object reference rather than a fully expanded type object</span>
** {{Z|Z19077}} <span lang="en" dir="ltr" class="mw-content-ltr">extracts a type’s Z4K1 but this is currently expanded back into the referenced type, making type comparisons inefficient</span>
** {{Z|Z19084}} <span lang="en" dir="ltr" class="mw-content-ltr">one Python implementation explicitly compares only Z4K1 values, but the types and their references have already been fully expanded by the orchestrator</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">“same type reference” would be more efficient, simplifying to</span> {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** <span lang="en" dir="ltr" class="mw-content-ltr">“type is one of” could be implemented with</span> {{Z|Z12696}}
* <span lang="en" dir="ltr" class="mw-content-ltr">Simplify search string functions like {{Z|Z22973}}, allowing the type reference to be entered as a string, where known.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Consistent approach across Wikidata and Wikifunctions references, perhaps allowing objects like types to be used in enumerations.</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
tlfoirl5la08g9k9ekm1hg85zetqh02
307347
307141
2026-09-02T03:21:29Z
엔디지2
102010
Created page with "Hongmyeongbonaga"
307347
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = Hongmyeongbonaga
| prev = 2026-08-20
| nextlabel = <span lang="en" dir="ltr" class="mw-content-ltr">Next update</span>
| next =
}}
<div lang="en" dir="ltr" class="mw-content-ltr">
=== News in Types: Wikifunctions Object Reference ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
The community has proposed, and now it is here: a new Type, [[Z96|Wikifunctions Object Reference]], based on this [[Wikifunctions:Type proposals/Wikifunctions object reference|Type proposal]] by [[User:GrounderUK|GrounderUK]].
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
What are Wikifunctions Object References good for? Here are the uses, as listed by the community:
</div>
* <span lang="en" dir="ltr" class="mw-content-ltr">Prevent the automatic de-referencing of references extracted from Wikifunctions objects (by [[Z803|Z803]], for example).</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Allow more straightforward and efficient comparison of types. For example:</span>
** {{Z|Z16829}} <span lang="en" dir="ltr" class="mw-content-ltr">(or an equivalent) could return a Wikifunctions object reference rather than a fully expanded type object</span>
** {{Z|Z19077}} <span lang="en" dir="ltr" class="mw-content-ltr">extracts a type’s Z4K1 but this is currently expanded back into the referenced type, making type comparisons inefficient</span>
** {{Z|Z19084}} <span lang="en" dir="ltr" class="mw-content-ltr">one Python implementation explicitly compares only Z4K1 values, but the types and their references have already been fully expanded by the orchestrator</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">“same type reference” would be more efficient, simplifying to</span> {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** <span lang="en" dir="ltr" class="mw-content-ltr">“type is one of” could be implemented with</span> {{Z|Z12696}}
* <span lang="en" dir="ltr" class="mw-content-ltr">Simplify search string functions like {{Z|Z22973}}, allowing the type reference to be entered as a string, where known.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Consistent approach across Wikidata and Wikifunctions references, perhaps allowing objects like types to be used in enumerations.</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
n05710srmkbn14cgkrcdghxopg4ixrt
307374
307347
2026-09-02T05:56:28Z
NDG
14996
Vandalism (global sysop action)
307374
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = <span lang="en" dir="ltr" class="mw-content-ltr">Previous update</span>
| prev = 2026-08-20
| nextlabel = <span lang="en" dir="ltr" class="mw-content-ltr">Next update</span>
| next =
}}
<div lang="en" dir="ltr" class="mw-content-ltr">
=== News in Types: Wikifunctions Object Reference ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
The community has proposed, and now it is here: a new Type, [[Z96|Wikifunctions Object Reference]], based on this [[Wikifunctions:Type proposals/Wikifunctions object reference|Type proposal]] by [[User:GrounderUK|GrounderUK]].
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
What are Wikifunctions Object References good for? Here are the uses, as listed by the community:
</div>
* <span lang="en" dir="ltr" class="mw-content-ltr">Prevent the automatic de-referencing of references extracted from Wikifunctions objects (by [[Z803|Z803]], for example).</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Allow more straightforward and efficient comparison of types. For example:</span>
** {{Z|Z16829}} <span lang="en" dir="ltr" class="mw-content-ltr">(or an equivalent) could return a Wikifunctions object reference rather than a fully expanded type object</span>
** {{Z|Z19077}} <span lang="en" dir="ltr" class="mw-content-ltr">extracts a type’s Z4K1 but this is currently expanded back into the referenced type, making type comparisons inefficient</span>
** {{Z|Z19084}} <span lang="en" dir="ltr" class="mw-content-ltr">one Python implementation explicitly compares only Z4K1 values, but the types and their references have already been fully expanded by the orchestrator</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">“same type reference” would be more efficient, simplifying to</span> {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** <span lang="en" dir="ltr" class="mw-content-ltr">“type is one of” could be implemented with</span> {{Z|Z12696}}
* <span lang="en" dir="ltr" class="mw-content-ltr">Simplify search string functions like {{Z|Z22973}}, allowing the type reference to be entered as a string, where known.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Consistent approach across Wikidata and Wikifunctions references, perhaps allowing objects like types to be used in enumerations.</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
tlfoirl5la08g9k9ekm1hg85zetqh02
Z40818
0
92780
307142
2026-09-01T16:14:36Z
YoshiRulz
10156
Create implementation
307142
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40818"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z40817",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z19108",
"Z19108K1": {
"Z1K1": "Z18",
"Z18K1": "Z40817K1"
},
"Z19108K2": {
"Z1K1": "Z39",
"Z39K1": "Z40783K1"
},
"Z19108K3": {
"Z1K1": "Z18",
"Z18K1": "Z40817K2"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Grapheme equality, composition"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
bqqzcz70eyiqbgnrjqk9c06kqi4368d
Z40819
0
92781
307147
2026-09-01T16:19:50Z
YoshiRulz
10156
Create function
307147
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40819"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z40783",
"Z17K2": "Z40819K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "grapheme"
}
]
}
}
],
"Z8K2": "Z13518",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z40819"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "length (in Codepoints) of Grapheme"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"count number of Unicode code points in Grapheme"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
cpw7s5bfnjxizaou75xeoaybnkgb43g
307149
307147
2026-09-01T16:27:59Z
YoshiRulz
10156
Added Z40820 to the approved list of implementations
307149
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40819"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z40783",
"Z17K2": "Z40819K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "grapheme"
}
]
}
}
],
"Z8K2": "Z13518",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14",
"Z40820"
],
"Z8K5": "Z40819"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "length (in Codepoints) of Grapheme"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"count number of Unicode code points in Grapheme"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
o0saum9fdqpgiv817c2k1cuke3s7zxm
Z40820
0
92782
307148
2026-09-01T16:27:45Z
YoshiRulz
10156
Create implementation
307148
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40820"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z40819",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z11040",
"Z11040K1": {
"Z1K1": "Z7",
"Z7K1": "Z40815",
"Z40815K1": {
"Z1K1": "Z18",
"Z18K1": "Z40819K1"
}
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "length of Grapheme, composition"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
hrsc0z85c3sj7d38ym8atpzve0ccyhc
Z40821
0
92783
307155
2026-09-01T16:55:09Z
YoshiRulz
10156
Create function
307155
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40821"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z883",
"Z883K1": "Z1",
"Z883K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
},
"Z17K2": "Z40821K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "graph"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
},
"Z17K2": "Z40821K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "path prefix (empty -\u003E all)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z8",
"Z17K2": "Z40821K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "equality function"
}
]
}
}
],
"Z8K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
}
},
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z40821"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "enumerate paths of directed graph from vertex"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"list paths reachable from node in network",
"depth-first search"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
00ozh6gb3j81bc5u23ksfpuad3vff74
307157
307155
2026-09-01T17:01:27Z
YoshiRulz
10156
Added Z40822 to the approved list of implementations
307157
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40821"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z883",
"Z883K1": "Z1",
"Z883K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
},
"Z17K2": "Z40821K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "graph"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
},
"Z17K2": "Z40821K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "path prefix (empty -\u003E all)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z8",
"Z17K2": "Z40821K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "equality function"
}
]
}
}
],
"Z8K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
}
},
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14",
"Z40822"
],
"Z8K5": "Z40821"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "enumerate paths of directed graph from vertex"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"list paths reachable from node in network",
"depth-first search"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
m7va5pglfdqhevjs5uusejq4wap66gx
307239
307157
2026-09-01T19:30:12Z
YoshiRulz
10156
Added Z40830 to the approved list of test cases
307239
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40821"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z883",
"Z883K1": "Z1",
"Z883K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
},
"Z17K2": "Z40821K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "graph"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
},
"Z17K2": "Z40821K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "path prefix (empty -\u003E all)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z8",
"Z17K2": "Z40821K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "equality function"
}
]
}
}
],
"Z8K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
}
},
"Z8K3": [
"Z20",
"Z40830"
],
"Z8K4": [
"Z14",
"Z40822"
],
"Z8K5": "Z40821"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "enumerate paths of directed graph from vertex"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"list paths reachable from node in network",
"depth-first search"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
a0zdn0yk79h17upk8r972x48bmeyg27
307264
307239
2026-09-01T19:46:42Z
YoshiRulz
10156
Added Z40831 to the approved list of test cases
307264
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40821"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z883",
"Z883K1": "Z1",
"Z883K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
},
"Z17K2": "Z40821K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "graph"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
},
"Z17K2": "Z40821K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "path prefix (empty -\u003E all)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z8",
"Z17K2": "Z40821K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "equality function"
}
]
}
}
],
"Z8K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
}
},
"Z8K3": [
"Z20",
"Z40830",
"Z40831"
],
"Z8K4": [
"Z14",
"Z40822"
],
"Z8K5": "Z40821"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "enumerate paths of directed graph from vertex"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"list paths reachable from node in network",
"depth-first search"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
ht7ue4xttjjdca0b1mkunesyp4w5nyh
307291
307264
2026-09-01T20:01:31Z
YoshiRulz
10156
Added Z40832 to the approved list of test cases
307291
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40821"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z883",
"Z883K1": "Z1",
"Z883K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
},
"Z17K2": "Z40821K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "graph"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
},
"Z17K2": "Z40821K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "path prefix (empty -\u003E all)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z8",
"Z17K2": "Z40821K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "equality function"
}
]
}
}
],
"Z8K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
}
},
"Z8K3": [
"Z20",
"Z40830",
"Z40831",
"Z40832"
],
"Z8K4": [
"Z14",
"Z40822"
],
"Z8K5": "Z40821"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "enumerate paths of directed graph from vertex"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"list paths reachable from node in network",
"depth-first search"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
jp4xnr690m1pioldog9m0izyh1pewkj
Z40822
0
92784
307156
2026-09-01T17:01:11Z
YoshiRulz
10156
Create implementation
307156
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40822"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z40821",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z14779",
"Z14779K1": "Z30414",
"Z14779K2": {
"Z1K1": "Z7",
"Z7K1": "Z39685",
"Z39685K1": {
"Z1K1": "Z18",
"Z18K1": "Z40821K1"
},
"Z39685K2": {
"Z1K1": "Z7",
"Z7K1": "Z12964",
"Z12964K1": {
"Z1K1": "Z18",
"Z18K1": "Z40821K2"
}
},
"Z39685K3": [
"Z1"
]
},
"Z14779K3": {
"Z1K1": "Z7",
"Z7K1": "Z31262",
"Z31262K1": "Z40821",
"Z31262K2": {
"Z1K1": "Z18",
"Z18K1": "Z40821K1"
},
"Z31262K3": {
"Z1K1": "Z7",
"Z7K1": "Z13464",
"Z13464K1": "Z18597",
"Z13464K2": {
"Z1K1": "Z7",
"Z7K1": "Z39685",
"Z39685K1": {
"Z1K1": "Z18",
"Z18K1": "Z40821K1"
},
"Z39685K2": {
"Z1K1": "Z7",
"Z7K1": "Z12964",
"Z12964K1": {
"Z1K1": "Z18",
"Z18K1": "Z40821K2"
}
},
"Z39685K3": [
"Z1"
]
},
"Z13464K3": {
"Z1K1": "Z18",
"Z18K1": "Z40821K2"
}
},
"Z31262K4": {
"Z1K1": "Z18",
"Z18K1": "Z40821K3"
}
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "paths from node in network, recursive composition"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
0j9kheetrs9hpc3irvyunswqbzbq6qb
307158
307156
2026-09-01T17:03:46Z
YoshiRulz
10156
Add en desc (also FIRST TRY)
307158
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40822"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z40821",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z14779",
"Z14779K1": "Z30414",
"Z14779K2": {
"Z1K1": "Z7",
"Z7K1": "Z39685",
"Z39685K1": {
"Z1K1": "Z18",
"Z18K1": "Z40821K1"
},
"Z39685K2": {
"Z1K1": "Z7",
"Z7K1": "Z12964",
"Z12964K1": {
"Z1K1": "Z18",
"Z18K1": "Z40821K2"
}
},
"Z39685K3": [
"Z1"
]
},
"Z14779K3": {
"Z1K1": "Z7",
"Z7K1": "Z31262",
"Z31262K1": "Z40821",
"Z31262K2": {
"Z1K1": "Z18",
"Z18K1": "Z40821K1"
},
"Z31262K3": {
"Z1K1": "Z7",
"Z7K1": "Z13464",
"Z13464K1": "Z18597",
"Z13464K2": {
"Z1K1": "Z7",
"Z7K1": "Z39685",
"Z39685K1": {
"Z1K1": "Z18",
"Z18K1": "Z40821K1"
},
"Z39685K2": {
"Z1K1": "Z7",
"Z7K1": "Z12964",
"Z12964K1": {
"Z1K1": "Z18",
"Z18K1": "Z40821K2"
}
},
"Z39685K3": [
"Z1"
]
},
"Z13464K3": {
"Z1K1": "Z18",
"Z18K1": "Z40821K2"
}
},
"Z31262K4": {
"Z1K1": "Z18",
"Z18K1": "Z40821K3"
}
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "paths from node in network, recursive composition"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "TODO use equality function"
}
]
}
}
7m32j75czx33aojr4yfnoy5xniiuihe
307244
307158
2026-09-01T19:42:50Z
YoshiRulz
10156
Handle cycles (by cutting them short)
307244
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40822"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z40821",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z12767",
"Z12767K1": {
"Z1K1": "Z7",
"Z7K1": "Z14779",
"Z14779K1": "Z30414",
"Z14779K2": {
"Z1K1": "Z7",
"Z7K1": "Z19198",
"Z19198K1": {
"Z1K1": "Z7",
"Z7K1": "Z39685",
"Z39685K1": {
"Z1K1": "Z18",
"Z18K1": "Z40821K1"
},
"Z39685K2": {
"Z1K1": "Z7",
"Z7K1": "Z12964",
"Z12964K1": {
"Z1K1": "Z18",
"Z18K1": "Z40821K2"
}
},
"Z39685K3": [
"Z1"
]
},
"Z19198K2": {
"Z1K1": "Z18",
"Z18K1": "Z40821K2"
}
},
"Z14779K3": {
"Z1K1": "Z7",
"Z7K1": "Z31262",
"Z31262K1": "Z40821",
"Z31262K2": {
"Z1K1": "Z18",
"Z18K1": "Z40821K1"
},
"Z31262K3": {
"Z1K1": "Z7",
"Z7K1": "Z13464",
"Z13464K1": "Z18597",
"Z13464K2": {
"Z1K1": "Z7",
"Z7K1": "Z19198",
"Z19198K1": {
"Z1K1": "Z7",
"Z7K1": "Z39685",
"Z39685K1": {
"Z1K1": "Z18",
"Z18K1": "Z40821K1"
},
"Z39685K2": {
"Z1K1": "Z7",
"Z7K1": "Z12964",
"Z12964K1": {
"Z1K1": "Z18",
"Z18K1": "Z40821K2"
}
},
"Z39685K3": [
"Z1"
]
},
"Z19198K2": {
"Z1K1": "Z18",
"Z18K1": "Z40821K2"
}
},
"Z13464K3": {
"Z1K1": "Z18",
"Z18K1": "Z40821K2"
}
},
"Z31262K4": {
"Z1K1": "Z18",
"Z18K1": "Z40821K3"
}
}
},
"Z12767K2": {
"Z1K1": "Z7",
"Z7K1": "Z13464",
"Z13464K1": "Z30414",
"Z13464K2": {
"Z1K1": "Z7",
"Z7K1": "Z22865",
"Z22865K1": {
"Z1K1": "Z7",
"Z7K1": "Z39685",
"Z39685K1": {
"Z1K1": "Z18",
"Z18K1": "Z40821K1"
},
"Z39685K2": {
"Z1K1": "Z7",
"Z7K1": "Z12964",
"Z12964K1": {
"Z1K1": "Z18",
"Z18K1": "Z40821K2"
}
},
"Z39685K3": [
"Z1"
]
},
"Z22865K2": {
"Z1K1": "Z18",
"Z18K1": "Z40821K2"
}
},
"Z13464K3": [
"Z1"
]
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "paths from node in network, recursive composition"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "TODO use equality function"
}
]
}
}
1he6c6ytn8gs2qpguri8w1p2vm3t4m0
307297
307244
2026-09-01T21:12:35Z
YoshiRulz
10156
Handle empty path prefix
307297
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40822"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z40821",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z802",
"Z802K1": {
"Z1K1": "Z7",
"Z7K1": "Z813",
"Z813K1": {
"Z1K1": "Z18",
"Z18K1": "Z40821K2"
}
},
"Z802K2": {
"Z1K1": "Z7",
"Z7K1": "Z27665",
"Z27665K1": {
"Z1K1": "Z7",
"Z7K1": "Z31262",
"Z31262K1": "Z40821",
"Z31262K2": {
"Z1K1": "Z18",
"Z18K1": "Z40821K1"
},
"Z31262K3": {
"Z1K1": "Z7",
"Z7K1": "Z33357",
"Z33357K1": {
"Z1K1": "Z18",
"Z18K1": "Z40821K1"
}
},
"Z31262K4": {
"Z1K1": "Z18",
"Z18K1": "Z40821K3"
}
}
},
"Z802K3": {
"Z1K1": "Z7",
"Z7K1": "Z12767",
"Z12767K1": {
"Z1K1": "Z7",
"Z7K1": "Z14779",
"Z14779K1": "Z30414",
"Z14779K2": {
"Z1K1": "Z7",
"Z7K1": "Z19198",
"Z19198K1": {
"Z1K1": "Z7",
"Z7K1": "Z39685",
"Z39685K1": {
"Z1K1": "Z18",
"Z18K1": "Z40821K1"
},
"Z39685K2": {
"Z1K1": "Z7",
"Z7K1": "Z12964",
"Z12964K1": {
"Z1K1": "Z18",
"Z18K1": "Z40821K2"
}
},
"Z39685K3": [
"Z1"
]
},
"Z19198K2": {
"Z1K1": "Z18",
"Z18K1": "Z40821K2"
}
},
"Z14779K3": {
"Z1K1": "Z7",
"Z7K1": "Z31262",
"Z31262K1": "Z40821",
"Z31262K2": {
"Z1K1": "Z18",
"Z18K1": "Z40821K1"
},
"Z31262K3": {
"Z1K1": "Z7",
"Z7K1": "Z13464",
"Z13464K1": "Z18597",
"Z13464K2": {
"Z1K1": "Z7",
"Z7K1": "Z19198",
"Z19198K1": {
"Z1K1": "Z7",
"Z7K1": "Z39685",
"Z39685K1": {
"Z1K1": "Z18",
"Z18K1": "Z40821K1"
},
"Z39685K2": {
"Z1K1": "Z7",
"Z7K1": "Z12964",
"Z12964K1": {
"Z1K1": "Z18",
"Z18K1": "Z40821K2"
}
},
"Z39685K3": [
"Z1"
]
},
"Z19198K2": {
"Z1K1": "Z18",
"Z18K1": "Z40821K2"
}
},
"Z13464K3": {
"Z1K1": "Z18",
"Z18K1": "Z40821K2"
}
},
"Z31262K4": {
"Z1K1": "Z18",
"Z18K1": "Z40821K3"
}
}
},
"Z12767K2": {
"Z1K1": "Z7",
"Z7K1": "Z13464",
"Z13464K1": "Z30414",
"Z13464K2": {
"Z1K1": "Z7",
"Z7K1": "Z22865",
"Z22865K1": {
"Z1K1": "Z7",
"Z7K1": "Z39685",
"Z39685K1": {
"Z1K1": "Z18",
"Z18K1": "Z40821K1"
},
"Z39685K2": {
"Z1K1": "Z7",
"Z7K1": "Z12964",
"Z12964K1": {
"Z1K1": "Z18",
"Z18K1": "Z40821K2"
}
},
"Z39685K3": [
"Z1"
]
},
"Z22865K2": {
"Z1K1": "Z18",
"Z18K1": "Z40821K2"
}
},
"Z13464K3": [
"Z1"
]
}
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "paths from node in network, recursive composition"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "TODO use equality function"
}
]
}
}
bura6mc06yebz8i8oskpc9wu0vj69uk
Talk:Z40821
1
92785
307159
2026-09-01T17:06:03Z
YoshiRulz
10156
Add to category
307159
wikitext
text/x-wiki
[[Category:Networks_as_adjacency_lookups]]
tt8xwrxxpxy52axbkh0hhvocgsmf0rk
Z40823
0
92786
307160
2026-09-01T17:09:19Z
YoshiRulz
10156
Create function
307160
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40823"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
}
}
},
"Z17K2": "Z40823K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "tree"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z6",
"Z17K2": "Z40823K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "newline char"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z6",
"Z17K2": "Z40823K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "indent char"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z40823"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "format tree (of graph paths) as multi-line String"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
a86dffv3m4zb47v3c6at4ttjl4zogal
307161
307160
2026-09-01T17:15:43Z
YoshiRulz
10156
Add serialiser param
307161
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40823"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
}
}
},
"Z17K2": "Z40823K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "tree"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z38546",
"Z17K2": "Z40823K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "display function"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z6",
"Z17K2": "Z40823K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "newline char"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z6",
"Z17K2": "Z40823K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "indent char"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z40823"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "format tree (of graph paths) as multi-line String"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
hut4hbqjplvds5wk4yurx1806rnajwz
307162
307161
2026-09-01T17:24:09Z
YoshiRulz
10156
Remove custom newline and tab params
307162
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40823"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
}
}
},
"Z17K2": "Z40823K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "tree"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z38546",
"Z17K2": "Z40823K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "display function"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z40823"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "format tree (of graph paths) as multi-line String"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
dkb2ej0s61mxd5jt5l0zbev49dwfko1
307164
307162
2026-09-01T17:31:18Z
YoshiRulz
10156
Added Z40824 to the approved list of implementations
307164
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40823"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
}
}
},
"Z17K2": "Z40823K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "tree"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z38546",
"Z17K2": "Z40823K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "display function"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14",
"Z40824"
],
"Z8K5": "Z40823"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "format tree (of graph paths) as multi-line String"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
ddwu1a4lcywi7vjdx8zajyx1h8uso8y
307166
307164
2026-09-01T17:35:39Z
YoshiRulz
10156
Added Z40825 to the approved list of test cases
307166
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40823"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
}
}
},
"Z17K2": "Z40823K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "tree"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z38546",
"Z17K2": "Z40823K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "display function"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20",
"Z40825"
],
"Z8K4": [
"Z14",
"Z40824"
],
"Z8K5": "Z40823"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "format tree (of graph paths) as multi-line String"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
rne5hdpc3y3ip2afuwd7n4o91x07hp1
307167
307166
2026-09-01T17:47:06Z
YoshiRulz
10156
Removed Z40824 from the approved list of implementations
307167
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40823"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
}
}
},
"Z17K2": "Z40823K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "tree"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z38546",
"Z17K2": "Z40823K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "display function"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20",
"Z40825"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z40823"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "format tree (of graph paths) as multi-line String"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
bl8h3mc2liplv86tyo1z1ku21km8i51
307168
307167
2026-09-01T17:47:08Z
YoshiRulz
10156
Removed Z40825 from the approved list of test cases
307168
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40823"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
}
}
},
"Z17K2": "Z40823K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "tree"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z38546",
"Z17K2": "Z40823K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "display function"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z40823"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "format tree (of graph paths) as multi-line String"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
dkb2ej0s61mxd5jt5l0zbev49dwfko1
307169
307168
2026-09-01T17:47:51Z
YoshiRulz
10156
Swap out anonymous function for regular function
307169
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40823"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
}
}
},
"Z17K2": "Z40823K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "tree"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z8",
"Z17K2": "Z40823K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "(unary) display function"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z40823"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "format tree (of graph paths) as multi-line String"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
hi98e4hk33pnjokp4qeg7my13yq7v48
307171
307169
2026-09-01T17:48:37Z
YoshiRulz
10156
Added Z40825 to the approved list of test cases
307171
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40823"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
}
}
},
"Z17K2": "Z40823K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "tree"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z8",
"Z17K2": "Z40823K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "(unary) display function"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20",
"Z40825"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z40823"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "format tree (of graph paths) as multi-line String"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
8n3nvaebbr192do8xc4l0dma54ts38w
307173
307171
2026-09-01T17:49:40Z
YoshiRulz
10156
Added Z40824 to the approved list of implementations
307173
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40823"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
}
}
},
"Z17K2": "Z40823K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "tree"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z8",
"Z17K2": "Z40823K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "(unary) display function"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20",
"Z40825"
],
"Z8K4": [
"Z14",
"Z40824"
],
"Z8K5": "Z40823"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "format tree (of graph paths) as multi-line String"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
9lbdtpk7307avk0d2msb2ah57hszv5q
307175
307173
2026-09-01T17:53:07Z
YoshiRulz
10156
Removed Z40824 from the approved list of implementations
307175
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40823"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
}
}
},
"Z17K2": "Z40823K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "tree"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z8",
"Z17K2": "Z40823K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "(unary) display function"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20",
"Z40825"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z40823"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "format tree (of graph paths) as multi-line String"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
8n3nvaebbr192do8xc4l0dma54ts38w
307176
307175
2026-09-01T17:53:10Z
YoshiRulz
10156
Added Z40824 to the approved list of implementations
307176
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40823"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
}
}
},
"Z17K2": "Z40823K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "tree"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z8",
"Z17K2": "Z40823K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "(unary) display function"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20",
"Z40825"
],
"Z8K4": [
"Z14",
"Z40824"
],
"Z8K5": "Z40823"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "format tree (of graph paths) as multi-line String"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
9lbdtpk7307avk0d2msb2ah57hszv5q
307180
307176
2026-09-01T18:10:06Z
YoshiRulz
10156
Added Z40826 and Z40827 to the approved list of test cases
307180
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40823"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
}
}
},
"Z17K2": "Z40823K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "tree"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z8",
"Z17K2": "Z40823K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "(unary) display function"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20",
"Z40825",
"Z40826",
"Z40827"
],
"Z8K4": [
"Z14",
"Z40824"
],
"Z8K5": "Z40823"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "format tree (of graph paths) as multi-line String"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
pl2blob1ncmi2wokf9e8e9d1lezxuer
307230
307180
2026-09-01T19:03:54Z
YoshiRulz
10156
Added Z40828 to the approved list of implementations
307230
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40823"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
}
}
},
"Z17K2": "Z40823K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "tree"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z8",
"Z17K2": "Z40823K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "(unary) display function"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20",
"Z40825",
"Z40826",
"Z40827"
],
"Z8K4": [
"Z14",
"Z40824",
"Z40828"
],
"Z8K5": "Z40823"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "format tree (of graph paths) as multi-line String"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
euhksgxq1xex3g2cboiisacxtnrsihf
307231
307230
2026-09-01T19:03:58Z
YoshiRulz
10156
Removed Z40824 from the approved list of implementations
307231
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40823"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
}
}
},
"Z17K2": "Z40823K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "tree"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z8",
"Z17K2": "Z40823K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "(unary) display function"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20",
"Z40825",
"Z40826",
"Z40827"
],
"Z8K4": [
"Z14",
"Z40828"
],
"Z8K5": "Z40823"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "format tree (of graph paths) as multi-line String"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
lia8zpa8f4xkq2shiwixw9sd9ap0mw4
307233
307231
2026-09-01T19:15:10Z
YoshiRulz
10156
Added Z40824 to the approved list of implementations
307233
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40823"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
}
}
},
"Z17K2": "Z40823K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "tree"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z8",
"Z17K2": "Z40823K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "(unary) display function"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20",
"Z40825",
"Z40826",
"Z40827"
],
"Z8K4": [
"Z14",
"Z40828",
"Z40824"
],
"Z8K5": "Z40823"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "format tree (of graph paths) as multi-line String"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
s3mx1uv1mavswq77bf7e020djs9ds9s
307234
307233
2026-09-01T19:16:46Z
YoshiRulz
10156
Added Z40829 to the approved list of test cases
307234
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40823"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
}
}
},
"Z17K2": "Z40823K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "tree"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z8",
"Z17K2": "Z40823K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "(unary) display function"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20",
"Z40825",
"Z40826",
"Z40827",
"Z40829"
],
"Z8K4": [
"Z14",
"Z40828",
"Z40824"
],
"Z8K5": "Z40823"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "format tree (of graph paths) as multi-line String"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
4mols2y2erjc2vrvyi0c2mr3ynwd4li
307235
307234
2026-09-01T19:16:48Z
YoshiRulz
10156
Removed Z40828 from the approved list of implementations
307235
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40823"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
}
}
},
"Z17K2": "Z40823K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "tree"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z8",
"Z17K2": "Z40823K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "(unary) display function"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20",
"Z40825",
"Z40826",
"Z40827",
"Z40829"
],
"Z8K4": [
"Z14",
"Z40824"
],
"Z8K5": "Z40823"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "format tree (of graph paths) as multi-line String"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
hde8q9wuak0qr876iwqj9zuvag7lzx0
Z40824
0
92787
307163
2026-09-01T17:30:40Z
YoshiRulz
10156
Create implementation
307163
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40824"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z40823",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z27385",
"Z27385K1": {
"Z1K1": "Z7",
"Z7K1": "Z38864",
"Z38864K1": {
"Z1K1": "Z18",
"Z18K1": "Z40823K2"
},
"Z38864K2": {
"Z1K1": "Z7",
"Z7K1": "Z821",
"Z821K1": {
"Z1K1": "Z18",
"Z18K1": "Z40823K1"
}
}
},
"Z27385K2": {
"Z1K1": "Z7",
"Z7K1": "Z10373",
"Z10373K1": "0A09"
},
"Z27385K3": {
"Z1K1": "Z7",
"Z7K1": "Z12899",
"Z12899K1": {
"Z1K1": "Z7",
"Z7K1": "Z32695",
"Z32695K1": "Z10075",
"Z32695K2": {
"Z1K1": "Z7",
"Z7K1": "Z13464",
"Z13464K1": "Z40823",
"Z13464K2": {
"Z1K1": "Z7",
"Z7K1": "Z822",
"Z822K1": {
"Z1K1": "Z18",
"Z18K1": "Z40823K1"
}
},
"Z13464K3": {
"Z1K1": "Z18",
"Z18K1": "Z40823K2"
}
},
"Z32695K3": "Z36387",
"Z32695K4": {
"Z1K1": "Z7",
"Z7K1": "Z10373",
"Z10373K1": "0A09"
}
},
"Z12899K2": {
"Z1K1": "Z7",
"Z7K1": "Z10373",
"Z10373K1": "0A09"
}
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "format path tree as String, recursive composition"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
8us0fjtfc3hy6syqkqf53ataykngwmz
307172
307163
2026-09-01T17:49:30Z
YoshiRulz
10156
Update to reflect change to param type
307172
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40824"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z40823",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z27385",
"Z27385K1": {
"Z1K1": "Z7",
"Z7K1": "Z13036",
"Z13036K1": {
"Z1K1": "Z18",
"Z18K1": "Z40823K2"
},
"Z13036K2": {
"Z1K1": "Z7",
"Z7K1": "Z821",
"Z821K1": {
"Z1K1": "Z18",
"Z18K1": "Z40823K1"
}
}
},
"Z27385K2": {
"Z1K1": "Z7",
"Z7K1": "Z10373",
"Z10373K1": "0A09"
},
"Z27385K3": {
"Z1K1": "Z7",
"Z7K1": "Z12899",
"Z12899K1": {
"Z1K1": "Z7",
"Z7K1": "Z32695",
"Z32695K1": "Z10075",
"Z32695K2": {
"Z1K1": "Z7",
"Z7K1": "Z13464",
"Z13464K1": "Z40823",
"Z13464K2": {
"Z1K1": "Z7",
"Z7K1": "Z822",
"Z822K1": {
"Z1K1": "Z18",
"Z18K1": "Z40823K1"
}
},
"Z13464K3": {
"Z1K1": "Z18",
"Z18K1": "Z40823K2"
}
},
"Z32695K3": "Z36387",
"Z32695K4": {
"Z1K1": "Z7",
"Z7K1": "Z10373",
"Z10373K1": "0A09"
}
},
"Z12899K2": {
"Z1K1": "Z7",
"Z7K1": "Z10373",
"Z10373K1": "0A09"
}
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "format path tree as String, recursive composition"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
q9z05ckltcaibcwwn9z70e8wgm15rz1
307174
307172
2026-09-01T17:52:37Z
YoshiRulz
10156
Fix for leaves
307174
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40824"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z40823",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z10000",
"Z10000K1": {
"Z1K1": "Z7",
"Z7K1": "Z13036",
"Z13036K1": {
"Z1K1": "Z18",
"Z18K1": "Z40823K2"
},
"Z13036K2": {
"Z1K1": "Z7",
"Z7K1": "Z821",
"Z821K1": {
"Z1K1": "Z18",
"Z18K1": "Z40823K1"
}
}
},
"Z10000K2": {
"Z1K1": "Z7",
"Z7K1": "Z21394",
"Z21394K1": {
"Z1K1": "Z7",
"Z7K1": "Z13436",
"Z13436K1": "Z10000",
"Z13436K2": {
"Z1K1": "Z7",
"Z7K1": "Z10373",
"Z10373K1": "0A09"
},
"Z13436K3": {
"Z1K1": "Z7",
"Z7K1": "Z32695",
"Z32695K1": "Z10075",
"Z32695K2": {
"Z1K1": "Z7",
"Z7K1": "Z13464",
"Z13464K1": "Z40823",
"Z13464K2": {
"Z1K1": "Z7",
"Z7K1": "Z822",
"Z822K1": {
"Z1K1": "Z18",
"Z18K1": "Z40823K1"
}
},
"Z13464K3": {
"Z1K1": "Z18",
"Z18K1": "Z40823K2"
}
},
"Z32695K3": "Z36387",
"Z32695K4": {
"Z1K1": "Z7",
"Z7K1": "Z10373",
"Z10373K1": "0A09"
}
}
}
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "format path tree as String, recursive composition"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
l4mqrgx4x4l02ui1m8pw4ry2p62dqbk
Z40825
0
92788
307165
2026-09-01T17:35:05Z
YoshiRulz
10156
Create test
307165
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40825"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z40823",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z10075",
"Z10075K1": {
"Z1K1": "Z7",
"Z7K1": "Z10075",
"Z10075K1": {
"Z1K1": "Z7",
"Z7K1": "Z40823",
"Z40823K1": {
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
}
}
},
"K1": "A",
"K2": {
"Z1K1": "Z7",
"Z7K1": "Z40821",
"Z40821K1": {
"Z1K1": "Z7",
"Z7K1": "Z40742",
"Z40742K1": [
{
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z6",
"Z882K2": "Z6"
},
{
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z6",
"Z882K2": "Z6"
},
"K1": "A",
"K2": "B"
},
{
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z6",
"Z882K2": "Z6"
},
"K1": "B",
"K2": "C"
},
{
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z6",
"Z882K2": "Z6"
},
"K1": "A",
"K2": "D"
}
],
"Z40742K2": "Z866"
},
"Z40821K2": [
"Z6",
"A"
],
"Z40821K3": "Z866"
}
},
"Z40823K2": {
"Z1K1": "Z7",
"Z7K1": "Z38869",
"Z38869K1": "Z801"
}
},
"Z10075K2": {
"Z1K1": "Z7",
"Z7K1": "Z10373",
"Z10373K1": "09"
},
"Z10075K3": ":"
},
"Z10075K2": "Z36387",
"Z10075K3": "|"
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z866",
"Z866K2": "A|:B|::C|:D"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "(A,[ (B,[ C ]), (D,[]) ]) -\u003E \"A\\n\\tB\\n\\t\\tC\\n\\tD\""
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
rc7xh7srwk0eg6erl3b30fth8jd6rtj
307170
307165
2026-09-01T17:48:31Z
YoshiRulz
10156
Unwrap function
307170
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40825"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z40823",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z10075",
"Z10075K1": {
"Z1K1": "Z7",
"Z7K1": "Z10075",
"Z10075K1": {
"Z1K1": "Z7",
"Z7K1": "Z40823",
"Z40823K1": {
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
}
}
},
"K1": "A",
"K2": {
"Z1K1": "Z7",
"Z7K1": "Z40821",
"Z40821K1": {
"Z1K1": "Z7",
"Z7K1": "Z40742",
"Z40742K1": [
{
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z6",
"Z882K2": "Z6"
},
{
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z6",
"Z882K2": "Z6"
},
"K1": "A",
"K2": "B"
},
{
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z6",
"Z882K2": "Z6"
},
"K1": "B",
"K2": "C"
},
{
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z6",
"Z882K2": "Z6"
},
"K1": "A",
"K2": "D"
}
],
"Z40742K2": "Z866"
},
"Z40821K2": [
"Z6",
"A"
],
"Z40821K3": "Z866"
}
},
"Z40823K2": "Z801"
},
"Z10075K2": {
"Z1K1": "Z7",
"Z7K1": "Z10373",
"Z10373K1": "09"
},
"Z10075K3": ":"
},
"Z10075K2": "Z36387",
"Z10075K3": "|"
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z866",
"Z866K2": "A|:B|::C|:D"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "(A,[ (B,[ C ]), (D,[]) ]) -\u003E \"A\\n\\tB\\n\\t\\tC\\n\\tD\""
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
a6olp5rshwulvjgmt4pbvejxp3b687y
307177
307170
2026-09-01T18:08:02Z
YoshiRulz
10156
Swap out string replacement function
307177
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40825"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z40823",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z19549",
"Z19549K1": [
"Z6",
"Z36387",
{
"Z1K1": "Z7",
"Z7K1": "Z10373",
"Z10373K1": "09"
}
],
"Z19549K2": [
"Z6",
"|",
":"
],
"Z19549K3": {
"Z1K1": "Z7",
"Z7K1": "Z40823",
"Z40823K1": {
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
}
}
},
"K1": "A",
"K2": {
"Z1K1": "Z7",
"Z7K1": "Z40821",
"Z40821K1": {
"Z1K1": "Z7",
"Z7K1": "Z40742",
"Z40742K1": [
{
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z6",
"Z882K2": "Z6"
},
{
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z6",
"Z882K2": "Z6"
},
"K1": "A",
"K2": "B"
},
{
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z6",
"Z882K2": "Z6"
},
"K1": "B",
"K2": "C"
},
{
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z6",
"Z882K2": "Z6"
},
"K1": "A",
"K2": "D"
}
],
"Z40742K2": "Z866"
},
"Z40821K2": [
"Z6",
"A"
],
"Z40821K3": "Z866"
}
},
"Z40823K2": "Z801"
}
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z866",
"Z866K2": "A|:B|::C|:D"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "(A,[ (B,[ C ]), (D,[]) ]) -\u003E \"A\\n\\tB\\n\\t\\tC\\n\\tD\""
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
ax8l2vdesccx01boauh1v8av8stku0k
Z40826
0
92789
307178
2026-09-01T18:08:26Z
YoshiRulz
10156
Create test
307178
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40826"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z40823",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z19549",
"Z19549K1": [
"Z6",
"Z36387",
{
"Z1K1": "Z7",
"Z7K1": "Z10373",
"Z10373K1": "09"
}
],
"Z19549K2": [
"Z6",
"|",
":"
],
"Z19549K3": {
"Z1K1": "Z7",
"Z7K1": "Z40823",
"Z40823K1": {
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
}
}
},
"K1": "A",
"K2": [
{
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
}
]
},
"Z40823K2": "Z801"
}
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z866",
"Z866K2": "A"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "(A, []) -\u003E \"A\""
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
ngbe62ub5whcu8xvk46lidq7wy33saq
Z40827
0
92790
307179
2026-09-01T18:09:45Z
YoshiRulz
10156
Create test
307179
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40827"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z40823",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z19549",
"Z19549K1": [
"Z6",
"Z36387",
{
"Z1K1": "Z7",
"Z7K1": "Z10373",
"Z10373K1": "09"
}
],
"Z19549K2": [
"Z6",
"|",
":"
],
"Z19549K3": {
"Z1K1": "Z7",
"Z7K1": "Z40823",
"Z40823K1": {
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
}
}
},
"K1": "A",
"K2": [
{
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z6",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6"
}
},
{
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z6",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6"
}
},
"K1": "B",
"K2": [
"Z6"
]
}
]
},
"Z40823K2": "Z801"
}
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z866",
"Z866K2": "A|:B"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "(A, [ (B, []) ]) -\u003E \"A\\n\\tB\""
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
lse81ap0ojzn4nzpb0eefcl9c9lnq1g
Translations:Wikifunctions:Status updates/2026-08-28/22/de
1198
92791
307184
2026-09-01T18:22:05Z
Ameisenigel
44
Created page with "Die Community hat es vorgeschlagen, und nun ist er da: ein neuer Typ, [[$1|Wikifunctions-Objektreferenz]], basierend auf diesem [[$2|Typenvorschlag]] von [[$3|GrounderUK]]."
307184
wikitext
text/x-wiki
Die Community hat es vorgeschlagen, und nun ist er da: ein neuer Typ, [[$1|Wikifunctions-Objektreferenz]], basierend auf diesem [[$2|Typenvorschlag]] von [[$3|GrounderUK]].
alhqi8akuojbmu7fajcn1avuk1yf6vg
Translations:Wikifunctions:Status updates/2026-08-28/4/de
1198
92792
307186
2026-09-01T18:22:48Z
Ameisenigel
44
Created page with "Wozu dienen Wikifunctions-Objektreferenzen? Hier sind die von der Community aufgeführten Anwendungsbereiche:"
307186
wikitext
text/x-wiki
Wozu dienen Wikifunctions-Objektreferenzen? Hier sind die von der Community aufgeführten Anwendungsbereiche:
ql9llzgbaqhmbsdf5i4rnrd820b5e7r
Translations:Wikifunctions:Status updates/2026-08-28/5/de
1198
92793
307188
2026-09-01T18:23:16Z
Ameisenigel
44
Created page with "Verhinderung der automatische Auflösung von Referenzen, die aus Wikifunctions-Objekten extrahiert wurden (zum Beispiel durch [[$1|Z803]])."
307188
wikitext
text/x-wiki
Verhinderung der automatische Auflösung von Referenzen, die aus Wikifunctions-Objekten extrahiert wurden (zum Beispiel durch [[$1|Z803]]).
i5hb1827hbe9fx52xxibmjrokht4gaj
Translations:Wikifunctions:Status updates/2026-08-28/6/de
1198
92794
307190
2026-09-01T18:23:48Z
Ameisenigel
44
Created page with "Ermöglichung eines einfacheren und effizienteren Vergleichs von Typen. Zum Beispiel:"
307190
wikitext
text/x-wiki
Ermöglichung eines einfacheren und effizienteren Vergleichs von Typen. Zum Beispiel:
12bm0w43dxg5aad7j4ydocdat050wia
Translations:Wikifunctions:Status updates/2026-08-28/7/de
1198
92795
307192
2026-09-01T18:24:23Z
Ameisenigel
44
Created page with "(oder ein Äquivalent) könnte eine Wikifunctions-Objektreferenz anstatt eines vollständig expandierten Typobjekts zurückgeben"
307192
wikitext
text/x-wiki
(oder ein Äquivalent) könnte eine Wikifunctions-Objektreferenz anstatt eines vollständig expandierten Typobjekts zurückgeben
9km2kxpgweinapzdy81rjkptom4ry52
Translations:Wikifunctions:Status updates/2026-08-28/8/de
1198
92796
307194
2026-09-01T18:25:01Z
Ameisenigel
44
Created page with "extrahiert die Z4K1 eines Typs, dies wird jedoch derzeit wieder in den referenzierten Typ expandiert, wodurch Typvergleiche ineffizient werden"
307194
wikitext
text/x-wiki
extrahiert die Z4K1 eines Typs, dies wird jedoch derzeit wieder in den referenzierten Typ expandiert, wodurch Typvergleiche ineffizient werden
48v2d6h7y57sbwy3kf0479afs4bde89
Translations:Wikifunctions:Status updates/2026-08-28/9/de
1198
92797
307196
2026-09-01T18:25:41Z
Ameisenigel
44
Created page with "eine Python-Implementierung vergleicht explizit nur Z4K1-Werte, doch die Typen und deren Referenzen wurden bereits vollständig vom Orchestrierer aufgelöst"
307196
wikitext
text/x-wiki
eine Python-Implementierung vergleicht explizit nur Z4K1-Werte, doch die Typen und deren Referenzen wurden bereits vollständig vom Orchestrierer aufgelöst
jqn9lfv5l7ptcq28zdsjsrvm8wocd78
Translations:Wikifunctions:Status updates/2026-08-28/10/de
1198
92798
307198
2026-09-01T18:26:47Z
Ameisenigel
44
Created page with "“gleiche Typreferenz” wäre effizienter und eine Vereinfachung zu"
307198
wikitext
text/x-wiki
“gleiche Typreferenz” wäre effizienter und eine Vereinfachung zu
hqrc2sjsb0vlxnvmjnsqtk9w8idjnuk
Translations:Wikifunctions:Status updates/2026-08-28/11/de
1198
92799
307200
2026-09-01T18:27:28Z
Ameisenigel
44
Created page with "“Typ ist einer von” könnte implementiert werden mit"
307200
wikitext
text/x-wiki
“Typ ist einer von” könnte implementiert werden mit
mz3w516kzbdxr3xe454sy6jf7197mp7
Translations:Wikifunctions:Status updates/2026-08-28/12/de
1198
92800
307202
2026-09-01T18:29:02Z
Ameisenigel
44
Created page with "Vereinfachung der Zeichenkettensuchfunktionen wie $1, indem die Eingabe der Typreferenz als Zeichenkette ermöglicht wird, sofern diese bekannt ist."
307202
wikitext
text/x-wiki
Vereinfachung der Zeichenkettensuchfunktionen wie $1, indem die Eingabe der Typreferenz als Zeichenkette ermöglicht wird, sofern diese bekannt ist.
09kiialtf3y8kkymipumgzjx2ta7dxu
Translations:Wikifunctions:Status updates/2026-08-28/13/de
1198
92801
307204
2026-09-01T18:29:38Z
Ameisenigel
44
Created page with "Einheitlicher Ansatz für Referenzen in Wikidata und Wikifunctions, der es möglicherweise erlaubt, Objekte wie Typen in Aufzählungen zu verwenden."
307204
wikitext
text/x-wiki
Einheitlicher Ansatz für Referenzen in Wikidata und Wikifunctions, der es möglicherweise erlaubt, Objekte wie Typen in Aufzählungen zu verwenden.
4y35597ogtsd0utterst049vvcnl8qj
Translations:Wikifunctions:Status updates/2026-08-28/14/de
1198
92802
307206
2026-09-01T18:37:28Z
Ameisenigel
44
Created page with "Der Implementierung des Typs gingen zahlreiche Diskussionen voraus, doch letztlich folgten wir dem von der Community erarbeiteten Entwurf. Wir hatten auch in Erwägung gezogen, den Typ explizit zu erfassen, doch dies führte zu einigen Komplikationen und hätte die anfängliche Handhabung des Typs erschwert. Dies könnte zwar eine künftige Verbesserung darstellen, doch zunächst wollten wir den Typ einfach verfügbar machen."
307206
wikitext
text/x-wiki
Der Implementierung des Typs gingen zahlreiche Diskussionen voraus, doch letztlich folgten wir dem von der Community erarbeiteten Entwurf. Wir hatten auch in Erwägung gezogen, den Typ explizit zu erfassen, doch dies führte zu einigen Komplikationen und hätte die anfängliche Handhabung des Typs erschwert. Dies könnte zwar eine künftige Verbesserung darstellen, doch zunächst wollten wir den Typ einfach verfügbar machen.
dhxrw8v6iglspwpl2wwsl1lwxf19au5
Translations:Wikifunctions:Status updates/2026-08-28/15/de
1198
92803
307208
2026-09-01T18:38:28Z
Ameisenigel
44
Created page with "Wir haben außerdem eine Funktion hinzugefügt, um die Referenz zu dereferenzieren oder das referenzierte Objekt abzurufen:"
307208
wikitext
text/x-wiki
Wir haben außerdem eine Funktion hinzugefügt, um die Referenz zu dereferenzieren oder das referenzierte Objekt abzurufen:
anur5vihx2xpui02rr3su14o7zzhqmn
Translations:Wikifunctions:Status updates/2026-08-28/16/de
1198
92804
307210
2026-09-01T18:40:02Z
Ameisenigel
44
Created page with "Nun können wir diesen Typ in den vielen möglichen Anwendungsfällen einsetzen. Ich werde ihn sogleich in [[$1|anonymen Funktionen]] verwenden, über die ich hoffentlich schon bald mehr schreiben werde."
307210
wikitext
text/x-wiki
Nun können wir diesen Typ in den vielen möglichen Anwendungsfällen einsetzen. Ich werde ihn sogleich in [[$1|anonymen Funktionen]] verwenden, über die ich hoffentlich schon bald mehr schreiben werde.
jw2sez9hheinnber9zspbqx9yorhef7
Translations:Wikifunctions:Status updates/2026-08-28/17/de
1198
92805
307212
2026-09-01T18:40:15Z
Ameisenigel
44
Created page with "Danke an die Community für den tollen Vorschlag und die ausführliche Diskussion."
307212
wikitext
text/x-wiki
Danke an die Community für den tollen Vorschlag und die ausführliche Diskussion.
rtgx8kjqqkzxasr5lnaero3pv6vh4so
Translations:Wikifunctions:Status updates/2026-08-28/18/de
1198
92806
307214
2026-09-01T18:40:19Z
Ameisenigel
44
Created page with "Wir laden alle ein, neue [[$1|Typenvorschläge]] zu erstellen und bestehende zu diskutieren, damit wir weiterhin neue Typen erstellen können. Vielen Dank an alle Community-Mitglieder, die sich an der Diskussion beteiligen und Vorschläge verfassen und so die Erweiterung von Wikifunctions auf neue Bereiche ermöglichen!"
307214
wikitext
text/x-wiki
Wir laden alle ein, neue [[$1|Typenvorschläge]] zu erstellen und bestehende zu diskutieren, damit wir weiterhin neue Typen erstellen können. Vielen Dank an alle Community-Mitglieder, die sich an der Diskussion beteiligen und Vorschläge verfassen und so die Erweiterung von Wikifunctions auf neue Bereiche ermöglichen!
tp3pk6nsl2b46mmj71kl5raxfnrvmlg
Translations:Wikifunctions:Status updates/2026-08-28/19/de
1198
92807
307216
2026-09-01T18:40:22Z
Ameisenigel
44
Created page with "=== Letzte Änderungen an der Software ==="
307216
wikitext
text/x-wiki
=== Letzte Änderungen an der Software ===
owrlw2m6o36leoohdu60use5kie2fbo
Z40828
0
92808
307229
2026-09-01T19:03:35Z
YoshiRulz
10156
Create implementation
307229
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40828"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z40823",
"Z14K3": {
"Z1K1": "Z16",
"Z16K1": "Z600",
"Z16K2": "const zobjRef = zid =\u003E ({ \"Z1K1\": \"Z9\", \"Z9K1\": zid });\nconst zobj = (typeZID, props) =\u003E new ZObject(new Map(props), zobjRef(typeZID));\nconst unaryFuncCall = (funcZID, K1, funcRef = zobjRef(funcZID)) =\u003E zobj(\"Z7\", [\n\t[ \"Z7K1\", funcRef ],\n\t[ `${funcZID}K1`, K1 ],\n]);\nconst enumerateTo = (elementsFlat, tree) =\u003E {\n\telementsFlat.push(tree.K1);\n\treturn '|' + elementsFlat.length.toString(16) + '|'\n\t\t+ tree.K2.map(pair =\u003E \"\\n\\t\" + enumerateTo(elementsFlat, pair).replaceAll(\"\\n\", \"\\n\\t\"))\n\t\t\t.join(/*empty string*/\"\");\n};\nfunction Z40823( Z40823K1, Z40823K2 ) {\n\tif (typeof Z40823K1.K1 === \"string\") {\n\t\treturn Z40823K1.K1\n\t\t\t+ Z40823K1.K2.map(pair =\u003E \"\\n\\t\" + Z40823(pair).replaceAll(\"\\n\", \"\\n\\t\"))\n\t\t\t\t.join(/*empty string*/\"\");\n\t}\n\n\tconst funcZID = Z40823K2.Z8K5.Z9K1;\n\tif (typeof funcZID !== \"string\") return Wikifunctions.Error(\"Z516\", [ \"Z40823K1\", Z40823K1 ]);\n\n\tconst elementsFlat = [];\n\tconst tokens = enumerateTo(elementsFlat, Z40823K1).slice(1).split('|');\n\tfor (let i = 0; i \u003C tokens.length; i += 2) tokens[i] = unaryFuncCall(funcZID, tokens[i], Z40823K2);\n\treturn unaryFuncCall(\"Z21394\", tokens);\n}"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "format tree of graph paths as multiline String, JS"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
gp00mnmu1b7pw4h21uhn6mq1274iw19
Z40829
0
92809
307232
2026-09-01T19:10:33Z
YoshiRulz
10156
Create test
307232
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40829"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z40823",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z19549",
"Z19549K1": [
"Z6",
"Z36387",
{
"Z1K1": "Z7",
"Z7K1": "Z10373",
"Z10373K1": "09"
}
],
"Z19549K2": [
"Z6",
"|",
":"
],
"Z19549K3": {
"Z1K1": "Z7",
"Z7K1": "Z40823",
"Z40823K1": {
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
}
}
},
"K1": "1",
"K2": {
"Z1K1": "Z7",
"Z7K1": "Z40821",
"Z40821K1": {
"Z1K1": "Z7",
"Z7K1": "Z40742",
"Z40742K1": [
{
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z13518",
"Z882K2": "Z13518"
},
{
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z13518",
"Z882K2": "Z13518"
},
"K1": {
"Z1K1": "Z13518",
"Z13518K1": "1"
},
"K2": {
"Z1K1": "Z13518",
"Z13518K1": "2"
}
},
{
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z13518",
"Z882K2": "Z13518"
},
"K1": {
"Z1K1": "Z13518",
"Z13518K1": "2"
},
"K2": {
"Z1K1": "Z13518",
"Z13518K1": "3"
}
},
{
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z13518",
"Z882K2": "Z13518"
},
"K1": {
"Z1K1": "Z13518",
"Z13518K1": "1"
},
"K2": {
"Z1K1": "Z13518",
"Z13518K1": "4"
}
}
],
"Z40742K2": "Z13522"
},
"Z40821K2": [
"Z13518",
{
"Z1K1": "Z13518",
"Z13518K1": "1"
}
],
"Z40821K3": "Z13522"
}
},
"Z40823K2": "Z13713"
}
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z866",
"Z866K2": "1|:2|::3|:4"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "(1,[ (2,[ 3 ]), (4,[]) ]) -\u003E \"1\\n\\t2\\n\\t\\t3\\n\\t4\""
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
tjsqsg4lg8w28fa8lklesfurz5x9np2
Z40830
0
92810
307238
2026-09-01T19:29:52Z
YoshiRulz
10156
Create test
307238
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40830"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z40821",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z27861",
"Z27861K1": {
"Z1K1": "Z7",
"Z7K1": "Z40823",
"Z40823K1": {
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
}
}
},
"K1": "A",
"K2": {
"Z1K1": "Z7",
"Z7K1": "Z40821",
"Z40821K1": {
"Z1K1": "Z7",
"Z7K1": "Z40742",
"Z40742K1": [
{
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z6",
"Z882K2": "Z6"
},
{
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z6",
"Z882K2": "Z6"
},
"K1": "A",
"K2": "B"
},
{
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z6",
"Z882K2": "Z6"
},
"K1": "B",
"K2": "C"
},
{
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z6",
"Z882K2": "Z6"
},
"K1": "A",
"K2": "D"
}
],
"Z40742K2": "Z866"
},
"Z40821K2": [
"Z6",
"A"
],
"Z40821K3": "Z866"
}
},
"Z40823K2": "Z801"
}
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z877",
"Z877K2": {
"Z1K1": "Z89",
"Z89K1": "A\n\tB\n\t\tC\n\tD"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "(..., A) -\u003E (A,[ (B,[ C ]), (D,[]) ])"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
g6ukdig3uztrod5q876owzgfk6pryeu
307292
307238
2026-09-01T20:02:25Z
YoshiRulz
10156
Correct en label
307292
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40830"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z40821",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z27861",
"Z27861K1": {
"Z1K1": "Z7",
"Z7K1": "Z40823",
"Z40823K1": {
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
}
}
},
"K1": "A",
"K2": {
"Z1K1": "Z7",
"Z7K1": "Z40821",
"Z40821K1": {
"Z1K1": "Z7",
"Z7K1": "Z40742",
"Z40742K1": [
{
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z6",
"Z882K2": "Z6"
},
{
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z6",
"Z882K2": "Z6"
},
"K1": "A",
"K2": "B"
},
{
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z6",
"Z882K2": "Z6"
},
"K1": "B",
"K2": "C"
},
{
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z6",
"Z882K2": "Z6"
},
"K1": "A",
"K2": "D"
}
],
"Z40742K2": "Z866"
},
"Z40821K2": [
"Z6",
"A"
],
"Z40821K3": "Z866"
}
},
"Z40823K2": "Z801"
}
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z877",
"Z877K2": {
"Z1K1": "Z89",
"Z89K1": "A\n\tB\n\t\tC\n\tD"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "(..., A) -\u003E [ (B,[ (C,[]) ]), (D,[]) ]"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
6cawak0hxn9yznlix126xntmtpnurwv
Talk:Z40823
1
92811
307240
2026-09-01T19:30:44Z
YoshiRulz
10156
Add to category
307240
wikitext
text/x-wiki
[[Category:Graph-theoretic_functions]]
9btoe3tt9mq49ajlhg1r4omj9gkz4nu
Z40831
0
92812
307241
2026-09-01T19:34:33Z
YoshiRulz
10156
Create test
307241
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40831"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z40821",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z27861",
"Z27861K1": {
"Z1K1": "Z7",
"Z7K1": "Z40823",
"Z40823K1": {
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
}
}
},
"K1": "A",
"K2": {
"Z1K1": "Z7",
"Z7K1": "Z40821",
"Z40821K1": {
"Z1K1": "Z7",
"Z7K1": "Z40742",
"Z40742K1": [
{
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z6",
"Z882K2": "Z6"
},
{
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z6",
"Z882K2": "Z6"
},
"K1": "A",
"K2": "B"
},
{
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z6",
"Z882K2": "Z6"
},
"K1": "B",
"K2": "C"
},
{
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z6",
"Z882K2": "Z6"
},
"K1": "C",
"K2": "A"
},
{
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z6",
"Z882K2": "Z6"
},
"K1": "A",
"K2": "D"
}
],
"Z40742K2": "Z866"
},
"Z40821K2": [
"Z6",
"A"
],
"Z40821K3": "Z866"
}
},
"Z40823K2": "Z801"
}
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z877",
"Z877K2": {
"Z1K1": "Z89",
"Z89K1": "A\n\tB\n\t\tC\n\t\t\tA\n\tD"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "(…, A) -\u003E (A,[ (B,[ (C, [ (A,[]) ]) ]), (D,[]) ])"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
n2065iqd7jwfaxo86wwj9dwspeu229k
307293
307241
2026-09-01T20:02:33Z
YoshiRulz
10156
Correct en label
307293
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40831"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z40821",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z27861",
"Z27861K1": {
"Z1K1": "Z7",
"Z7K1": "Z40823",
"Z40823K1": {
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
}
}
},
"K1": "A",
"K2": {
"Z1K1": "Z7",
"Z7K1": "Z40821",
"Z40821K1": {
"Z1K1": "Z7",
"Z7K1": "Z40742",
"Z40742K1": [
{
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z6",
"Z882K2": "Z6"
},
{
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z6",
"Z882K2": "Z6"
},
"K1": "A",
"K2": "B"
},
{
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z6",
"Z882K2": "Z6"
},
"K1": "B",
"K2": "C"
},
{
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z6",
"Z882K2": "Z6"
},
"K1": "C",
"K2": "A"
},
{
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z6",
"Z882K2": "Z6"
},
"K1": "A",
"K2": "D"
}
],
"Z40742K2": "Z866"
},
"Z40821K2": [
"Z6",
"A"
],
"Z40821K3": "Z866"
}
},
"Z40823K2": "Z801"
}
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z877",
"Z877K2": {
"Z1K1": "Z89",
"Z89K1": "A\n\tB\n\t\tC\n\t\t\tA\n\tD"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "(…, A) -\u003E [ (B,[ (C, [ (A,[]) ]) ]), (D,[]) ]"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
614gyfrw6pnr8zgk2h5frak3urmx0wf
Translations:Wikifunctions:FAQ/64/nl
1198
92813
307245
2026-09-01T19:43:26Z
HanV
6833
Created page with "=== Hoe kan ik de software lokaal instellen om het te hacken? ==="
307245
wikitext
text/x-wiki
=== Hoe kan ik de software lokaal instellen om het te hacken? ===
6hu6915z3hn18veogbzmegsdfe2sovi
Translations:Wikifunctions:FAQ/65/nl
1198
92814
307247
2026-09-01T19:43:56Z
HanV
6833
Created page with "Zie [[$1|deze pagina]]."
307247
wikitext
text/x-wiki
Zie [[$1|deze pagina]].
67ilkccpnlj0n0ft5fmo39fzlxbl74x
Translations:Template:Main page/News/45/nl
1198
92815
307249
2026-09-01T19:44:49Z
HanV
6833
Created page with "$1: Wikifuncties Object Referentie"
307249
wikitext
text/x-wiki
$1: Wikifuncties Object Referentie
3xrent6kvpbtguucyurj45adjrzjt19
Translations:Template:Main page/News/44/nl
1198
92816
307251
2026-09-01T19:45:06Z
HanV
6833
Created page with "$1: Burgemeesters en het Noorden"
307251
wikitext
text/x-wiki
$1: Burgemeesters en het Noorden
9ij1joejdvv7iqbzahdv16zqrdg1my8
Translations:Template:Main page/News/43/nl
1198
92817
307253
2026-09-01T19:45:26Z
HanV
6833
Created page with "$1: Shoutout naar 99of9!"
307253
wikitext
text/x-wiki
$1: Shoutout naar 99of9!
84wr8bp1df6wj9vw3dsn8q3b7jrl1te
Translations:Template:Main page/News/42/nl
1198
92818
307254
2026-09-01T19:45:40Z
HanV
6833
Created page with "$1: Gefeliciteerd Jules*: Een appel is een vrucht"
307254
wikitext
text/x-wiki
$1: Gefeliciteerd Jules*: Een appel is een vrucht
kq5kq0zde5akz07lzms8jyh0resnum3
Translations:Template:Main page/News/41/nl
1198
92819
307256
2026-09-01T19:45:47Z
HanV
6833
Created page with "$1: Abstract Wikipedia op Wikimania"
307256
wikitext
text/x-wiki
$1: Abstract Wikipedia op Wikimania
fwibjxfrtqhfjh9hqbp7mbkoyvwu8r7
Translations:Wikifunctions:Status updates/134/nl
1198
92820
307258
2026-09-01T19:46:31Z
HanV
6833
Created page with "$1: Wikifuncties Object Referentie"
307258
wikitext
text/x-wiki
$1: Wikifuncties Object Referentie
3xrent6kvpbtguucyurj45adjrzjt19
Translations:Wikifunctions:Status updates/133/nl
1198
92821
307260
2026-09-01T19:46:34Z
HanV
6833
Created page with "$1: Burgemeesters en het Noorden"
307260
wikitext
text/x-wiki
$1: Burgemeesters en het Noorden
9ij1joejdvv7iqbzahdv16zqrdg1my8
Translations:Wikifunctions:Status updates/132/nl
1198
92822
307262
2026-09-01T19:46:40Z
HanV
6833
Created page with "$1: Shoutout naar 99of9!"
307262
wikitext
text/x-wiki
$1: Shoutout naar 99of9!
84wr8bp1df6wj9vw3dsn8q3b7jrl1te
Translations:Wikifunctions:Status updates/131/nl
1198
92823
307265
2026-09-01T19:46:43Z
HanV
6833
Created page with "$1: Een appel is een vrucht"
307265
wikitext
text/x-wiki
$1: Een appel is een vrucht
njux6q78aqx5oiitq98qim03cy4zmnf
Translations:Wikifunctions:Status updates/130/nl
1198
92824
307267
2026-09-01T19:46:58Z
HanV
6833
Created page with "$1: Abstract Wikipedia op Wikimania"
307267
wikitext
text/x-wiki
$1: Abstract Wikipedia op Wikimania
fwibjxfrtqhfjh9hqbp7mbkoyvwu8r7
Translations:Wikifunctions:Status updates/129/nl
1198
92825
307269
2026-09-01T19:47:02Z
HanV
6833
Created page with "$1: Verder dan syntactische tabellen"
307269
wikitext
text/x-wiki
$1: Verder dan syntactische tabellen
qzai6ydnj24ym0zl7vti6srngulg3xb
Translations:Wikifunctions:Status updates/128/nl
1198
92826
307271
2026-09-01T19:47:18Z
HanV
6833
Created page with "$1: Op weg naar onze eerste mijlpaal in de integratie van Abstract Wikipedia"
307271
wikitext
text/x-wiki
$1: Op weg naar onze eerste mijlpaal in de integratie van Abstract Wikipedia
3w3dy6ip6fkg4sivehy7e8tqde2x0m1
Translations:Wikifunctions:Excel functions/508/nl
1198
92827
307273
2026-09-01T19:48:07Z
HanV
6833
Created page with "Geeft de kans terug dat waarden in een bereik tussen twee limieten liggen"
307273
wikitext
text/x-wiki
Geeft de kans terug dat waarden in een bereik tussen twee limieten liggen
eq0r5bgcjkpys6egpk2fk72el5n3tgj
Translations:Wikifunctions:Excel functions/509/nl
1198
92828
307275
2026-09-01T19:48:44Z
HanV
6833
Created page with "Geeft het kwartiel van de dataset terug, gebaseerd op percentielwaarden van 0..1, exclusief"
307275
wikitext
text/x-wiki
Geeft het kwartiel van de dataset terug, gebaseerd op percentielwaarden van 0..1, exclusief
9vpvtq86kjk6utqmx7k33fq5berz2oo
Translations:Wikifunctions:Excel functions/510/nl
1198
92829
307277
2026-09-01T19:48:48Z
HanV
6833
Created page with "Geeft het kwartiel van een dataset terug"
307277
wikitext
text/x-wiki
Geeft het kwartiel van een dataset terug
gaepcpjerzf0vp14zyary36pnfpz2xv
Translations:Wikifunctions:Excel functions/511/nl
1198
92830
307279
2026-09-01T19:49:14Z
HanV
6833
Created page with "Geeft de rangorde van een getal in een lijst van getallen terug; dubbele waarden krijgen de gemiddelde rang"
307279
wikitext
text/x-wiki
Geeft de rangorde van een getal in een lijst van getallen terug; dubbele waarden krijgen de gemiddelde rang
35j7c2bxdj3c2le8ousq18iwxu8liy6
Translations:Wikifunctions:Excel functions/512/nl
1198
92831
307281
2026-09-01T19:49:38Z
HanV
6833
Created page with "Geeft de rangorde van een getal in een lijst van getallen terug; dubbele waarden krijgen dezelfde rangorde"
307281
wikitext
text/x-wiki
Geeft de rangorde van een getal in een lijst van getallen terug; dubbele waarden krijgen dezelfde rangorde
6vq8gqztfnhpyr1yfh6bam039o1de29
Translations:Wikifunctions:Excel functions/513/nl
1198
92832
307284
2026-09-01T19:50:55Z
HanV
6833
Created page with "Geeft het kwadraat van de Pearson-productmoment correlatiecoëfficiënt terug"
307284
wikitext
text/x-wiki
Geeft het kwadraat van de Pearson-productmoment correlatiecoëfficiënt terug
306dt9tr5hfced8mkqlne2d8afbhr7m
Translations:Wikifunctions:Excel functions/514/nl
1198
92833
307286
2026-09-01T19:51:10Z
HanV
6833
Created page with "Geeft de scheefheid van een verdeling terug"
307286
wikitext
text/x-wiki
Geeft de scheefheid van een verdeling terug
017xe5lu67ku8g7n7s7igf48tyod79e
Translations:Wikifunctions:Excel functions/515/nl
1198
92834
307288
2026-09-01T19:51:29Z
HanV
6833
Created page with "Geeft de scheefheid van een verdeling terug op basis van een populatie: een karakterisering van de mate van asymmetrie van een verdeling rond haar gemiddelde"
307288
wikitext
text/x-wiki
Geeft de scheefheid van een verdeling terug op basis van een populatie: een karakterisering van de mate van asymmetrie van een verdeling rond haar gemiddelde
o8wdg5qmxtty6p61t56dspwzmpeq0x0
Z40832
0
92835
307290
2026-09-01T20:00:20Z
YoshiRulz
10156
Create test
307290
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40832"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z40821",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z27861",
"Z27861K1": {
"Z1K1": "Z7",
"Z7K1": "Z40823",
"Z40823K1": {
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
}
}
},
"K1": "A",
"K2": {
"Z1K1": "Z7",
"Z7K1": "Z40821",
"Z40821K1": {
"Z1K1": "Z7",
"Z7K1": "Z40742",
"Z40742K1": [
{
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z6",
"Z882K2": "Z6"
},
{
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z6",
"Z882K2": "Z6"
},
"K1": "A",
"K2": "A"
}
],
"Z40742K2": "Z866"
},
"Z40821K2": [
"Z6",
"A"
],
"Z40821K3": "Z866"
}
},
"Z40823K2": "Z801"
}
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z877",
"Z877K2": {
"Z1K1": "Z89",
"Z89K1": "A\n\tA"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "([ (A, [ A ]) ], A) -\u003E (A,[ (A,[]) ])"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
ev5kh3ckwzhhuodwlkf4obpf67jntbg
307294
307290
2026-09-01T20:02:45Z
YoshiRulz
10156
Correct en label
307294
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40832"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z40821",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z27861",
"Z27861K1": {
"Z1K1": "Z7",
"Z7K1": "Z40823",
"Z40823K1": {
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z1",
"Z882K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
}
}
}
},
"K1": "A",
"K2": {
"Z1K1": "Z7",
"Z7K1": "Z40821",
"Z40821K1": {
"Z1K1": "Z7",
"Z7K1": "Z40742",
"Z40742K1": [
{
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z6",
"Z882K2": "Z6"
},
{
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z6",
"Z882K2": "Z6"
},
"K1": "A",
"K2": "A"
}
],
"Z40742K2": "Z866"
},
"Z40821K2": [
"Z6",
"A"
],
"Z40821K3": "Z866"
}
},
"Z40823K2": "Z801"
}
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z877",
"Z877K2": {
"Z1K1": "Z89",
"Z89K1": "A\n\tA"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "([ (A, [ A ]) ], A) -\u003E [ (A,[]) ]"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
gdkcy963tblr9rj8qmrqgvmqvervi6p
Talk:Z40804
1
92836
307300
2026-09-01T23:30:47Z
Carnildo
54460
/* Non-decimal currencies */ new section
307300
wikitext
text/x-wiki
== Non-decimal currencies ==
How would I use this to display an amount in a non-decimal currency, such as [[w:£sd|£3 17s. 10<sup>1</sup>⁄<sub>2</sub>d.]]? [[User:Carnildo|Carnildo]] ([[User talk:Carnildo|talk]]) 23:30, 1 September 2026 (UTC)
bae9c7h7u2wqmzwexonkaaehd7t1bel
Wikifunctions:Status updates/2026-08-28/ko
4
92838
307303
2026-09-01T23:46:20Z
엔디지2
102010
Created page with "위키함수:상태 업데이트/2026-08-28"
307303
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = <span lang="en" dir="ltr" class="mw-content-ltr">Previous update</span>
| prev = 2026-08-20
| nextlabel = <span lang="en" dir="ltr" class="mw-content-ltr">Next update</span>
| next =
}}
<div lang="en" dir="ltr" class="mw-content-ltr">
=== News in Types: Wikifunctions Object Reference ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
The community has proposed, and now it is here: a new Type, [[Z96|Wikifunctions Object Reference]], based on this [[Wikifunctions:Type proposals/Wikifunctions object reference|Type proposal]] by [[User:GrounderUK|GrounderUK]].
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
What are Wikifunctions Object References good for? Here are the uses, as listed by the community:
</div>
* <span lang="en" dir="ltr" class="mw-content-ltr">Prevent the automatic de-referencing of references extracted from Wikifunctions objects (by [[Z803|Z803]], for example).</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Allow more straightforward and efficient comparison of types. For example:</span>
** {{Z|Z16829}} <span lang="en" dir="ltr" class="mw-content-ltr">(or an equivalent) could return a Wikifunctions object reference rather than a fully expanded type object</span>
** {{Z|Z19077}} <span lang="en" dir="ltr" class="mw-content-ltr">extracts a type’s Z4K1 but this is currently expanded back into the referenced type, making type comparisons inefficient</span>
** {{Z|Z19084}} <span lang="en" dir="ltr" class="mw-content-ltr">one Python implementation explicitly compares only Z4K1 values, but the types and their references have already been fully expanded by the orchestrator</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">“same type reference” would be more efficient, simplifying to</span> {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** <span lang="en" dir="ltr" class="mw-content-ltr">“type is one of” could be implemented with</span> {{Z|Z12696}}
* <span lang="en" dir="ltr" class="mw-content-ltr">Simplify search string functions like {{Z|Z22973}}, allowing the type reference to be entered as a string, where known.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Consistent approach across Wikidata and Wikifunctions references, perhaps allowing objects like types to be used in enumerations.</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
tlfoirl5la08g9k9ekm1hg85zetqh02
307305
307303
2026-09-01T23:48:08Z
엔디지2
102010
Created page with "<span style="padding:4px: border-radius:6px; background:#eeddcc; font-weight:700">홍명보 꺼져</span> 이전 업데이트"
307305
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = <span style="padding:4px: border-radius:6px; background:#eeddcc; font-weight:700">홍명보 꺼져</span> 이전 업데이트
| prev = 2026-08-20
| nextlabel = <span lang="en" dir="ltr" class="mw-content-ltr">Next update</span>
| next =
}}
<div lang="en" dir="ltr" class="mw-content-ltr">
=== News in Types: Wikifunctions Object Reference ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
The community has proposed, and now it is here: a new Type, [[Z96|Wikifunctions Object Reference]], based on this [[Wikifunctions:Type proposals/Wikifunctions object reference|Type proposal]] by [[User:GrounderUK|GrounderUK]].
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
What are Wikifunctions Object References good for? Here are the uses, as listed by the community:
</div>
* <span lang="en" dir="ltr" class="mw-content-ltr">Prevent the automatic de-referencing of references extracted from Wikifunctions objects (by [[Z803|Z803]], for example).</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Allow more straightforward and efficient comparison of types. For example:</span>
** {{Z|Z16829}} <span lang="en" dir="ltr" class="mw-content-ltr">(or an equivalent) could return a Wikifunctions object reference rather than a fully expanded type object</span>
** {{Z|Z19077}} <span lang="en" dir="ltr" class="mw-content-ltr">extracts a type’s Z4K1 but this is currently expanded back into the referenced type, making type comparisons inefficient</span>
** {{Z|Z19084}} <span lang="en" dir="ltr" class="mw-content-ltr">one Python implementation explicitly compares only Z4K1 values, but the types and their references have already been fully expanded by the orchestrator</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">“same type reference” would be more efficient, simplifying to</span> {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** <span lang="en" dir="ltr" class="mw-content-ltr">“type is one of” could be implemented with</span> {{Z|Z12696}}
* <span lang="en" dir="ltr" class="mw-content-ltr">Simplify search string functions like {{Z|Z22973}}, allowing the type reference to be entered as a string, where known.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Consistent approach across Wikidata and Wikifunctions references, perhaps allowing objects like types to be used in enumerations.</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
9nqj0jhev53oy0b9lx2ynpl1lf9o1mv
307307
307305
2026-09-01T23:49:05Z
엔디지2
102010
307307
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = 이전 업데이트
| prev = 2026-08-20
| nextlabel = <span lang="en" dir="ltr" class="mw-content-ltr">Next update</span>
| next =
}}
<div lang="en" dir="ltr" class="mw-content-ltr">
=== News in Types: Wikifunctions Object Reference ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
The community has proposed, and now it is here: a new Type, [[Z96|Wikifunctions Object Reference]], based on this [[Wikifunctions:Type proposals/Wikifunctions object reference|Type proposal]] by [[User:GrounderUK|GrounderUK]].
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
What are Wikifunctions Object References good for? Here are the uses, as listed by the community:
</div>
* <span lang="en" dir="ltr" class="mw-content-ltr">Prevent the automatic de-referencing of references extracted from Wikifunctions objects (by [[Z803|Z803]], for example).</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Allow more straightforward and efficient comparison of types. For example:</span>
** {{Z|Z16829}} <span lang="en" dir="ltr" class="mw-content-ltr">(or an equivalent) could return a Wikifunctions object reference rather than a fully expanded type object</span>
** {{Z|Z19077}} <span lang="en" dir="ltr" class="mw-content-ltr">extracts a type’s Z4K1 but this is currently expanded back into the referenced type, making type comparisons inefficient</span>
** {{Z|Z19084}} <span lang="en" dir="ltr" class="mw-content-ltr">one Python implementation explicitly compares only Z4K1 values, but the types and their references have already been fully expanded by the orchestrator</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">“same type reference” would be more efficient, simplifying to</span> {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** <span lang="en" dir="ltr" class="mw-content-ltr">“type is one of” could be implemented with</span> {{Z|Z12696}}
* <span lang="en" dir="ltr" class="mw-content-ltr">Simplify search string functions like {{Z|Z22973}}, allowing the type reference to be entered as a string, where known.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Consistent approach across Wikidata and Wikifunctions references, perhaps allowing objects like types to be used in enumerations.</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
8dz83wzpplr1davevzc80imt0tf9b96
307309
307307
2026-09-01T23:49:09Z
엔디지2
102010
Created page with "다음 업데이트"
307309
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = 이전 업데이트
| prev = 2026-08-20
| nextlabel = 다음 업데이트
| next =
}}
<div lang="en" dir="ltr" class="mw-content-ltr">
=== News in Types: Wikifunctions Object Reference ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
The community has proposed, and now it is here: a new Type, [[Z96|Wikifunctions Object Reference]], based on this [[Wikifunctions:Type proposals/Wikifunctions object reference|Type proposal]] by [[User:GrounderUK|GrounderUK]].
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
What are Wikifunctions Object References good for? Here are the uses, as listed by the community:
</div>
* <span lang="en" dir="ltr" class="mw-content-ltr">Prevent the automatic de-referencing of references extracted from Wikifunctions objects (by [[Z803|Z803]], for example).</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Allow more straightforward and efficient comparison of types. For example:</span>
** {{Z|Z16829}} <span lang="en" dir="ltr" class="mw-content-ltr">(or an equivalent) could return a Wikifunctions object reference rather than a fully expanded type object</span>
** {{Z|Z19077}} <span lang="en" dir="ltr" class="mw-content-ltr">extracts a type’s Z4K1 but this is currently expanded back into the referenced type, making type comparisons inefficient</span>
** {{Z|Z19084}} <span lang="en" dir="ltr" class="mw-content-ltr">one Python implementation explicitly compares only Z4K1 values, but the types and their references have already been fully expanded by the orchestrator</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">“same type reference” would be more efficient, simplifying to</span> {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** <span lang="en" dir="ltr" class="mw-content-ltr">“type is one of” could be implemented with</span> {{Z|Z12696}}
* <span lang="en" dir="ltr" class="mw-content-ltr">Simplify search string functions like {{Z|Z22973}}, allowing the type reference to be entered as a string, where known.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Consistent approach across Wikidata and Wikifunctions references, perhaps allowing objects like types to be used in enumerations.</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
spizc0eakgr93nao5rujrs881sultsv
307311
307309
2026-09-01T23:49:38Z
엔디지2
102010
Created page with "=== News in Types: 위키함수 객체 참조 ==="
307311
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = 이전 업데이트
| prev = 2026-08-20
| nextlabel = 다음 업데이트
| next =
}}
<span id="News_in_Types:_Wikifunctions_Object_Reference"></span>
=== News in Types: 위키함수 객체 참조 ===
<div lang="en" dir="ltr" class="mw-content-ltr">
The community has proposed, and now it is here: a new Type, [[Z96|Wikifunctions Object Reference]], based on this [[Wikifunctions:Type proposals/Wikifunctions object reference|Type proposal]] by [[User:GrounderUK|GrounderUK]].
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
What are Wikifunctions Object References good for? Here are the uses, as listed by the community:
</div>
* <span lang="en" dir="ltr" class="mw-content-ltr">Prevent the automatic de-referencing of references extracted from Wikifunctions objects (by [[Z803|Z803]], for example).</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Allow more straightforward and efficient comparison of types. For example:</span>
** {{Z|Z16829}} <span lang="en" dir="ltr" class="mw-content-ltr">(or an equivalent) could return a Wikifunctions object reference rather than a fully expanded type object</span>
** {{Z|Z19077}} <span lang="en" dir="ltr" class="mw-content-ltr">extracts a type’s Z4K1 but this is currently expanded back into the referenced type, making type comparisons inefficient</span>
** {{Z|Z19084}} <span lang="en" dir="ltr" class="mw-content-ltr">one Python implementation explicitly compares only Z4K1 values, but the types and their references have already been fully expanded by the orchestrator</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">“same type reference” would be more efficient, simplifying to</span> {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** <span lang="en" dir="ltr" class="mw-content-ltr">“type is one of” could be implemented with</span> {{Z|Z12696}}
* <span lang="en" dir="ltr" class="mw-content-ltr">Simplify search string functions like {{Z|Z22973}}, allowing the type reference to be entered as a string, where known.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Consistent approach across Wikidata and Wikifunctions references, perhaps allowing objects like types to be used in enumerations.</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
d5i36aingc72rkgptesq3x31gxjifgx
307313
307311
2026-09-01T23:50:09Z
엔디지2
102010
Created page with "커뮤니티는 [[$3|GrounderUK]]에 의한 이 [[$2|Type 제안]]을 기반으로 새로운 유형 [[$1|위키함수 객체 레퍼런스]]를 제안했습니다. <span style="padding:4px: border-radius:6px; background:#eeddcc; font-weight:700">홍명보 꺼져</span> 이전 업데이트"
307313
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = 이전 업데이트
| prev = 2026-08-20
| nextlabel = 다음 업데이트
| next =
}}
<span id="News_in_Types:_Wikifunctions_Object_Reference"></span>
=== News in Types: 위키함수 객체 참조 ===
커뮤니티는 [[User:GrounderUK|GrounderUK]]에 의한 이 [[Wikifunctions:Type proposals/Wikifunctions object reference|Type 제안]]을 기반으로 새로운 유형 [[Z96|위키함수 객체 레퍼런스]]를 제안했습니다.
<span style="padding:4px: border-radius:6px; background:#eeddcc; font-weight:700">홍명보 꺼져</span> 이전 업데이트
<div lang="en" dir="ltr" class="mw-content-ltr">
What are Wikifunctions Object References good for? Here are the uses, as listed by the community:
</div>
* <span lang="en" dir="ltr" class="mw-content-ltr">Prevent the automatic de-referencing of references extracted from Wikifunctions objects (by [[Z803|Z803]], for example).</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Allow more straightforward and efficient comparison of types. For example:</span>
** {{Z|Z16829}} <span lang="en" dir="ltr" class="mw-content-ltr">(or an equivalent) could return a Wikifunctions object reference rather than a fully expanded type object</span>
** {{Z|Z19077}} <span lang="en" dir="ltr" class="mw-content-ltr">extracts a type’s Z4K1 but this is currently expanded back into the referenced type, making type comparisons inefficient</span>
** {{Z|Z19084}} <span lang="en" dir="ltr" class="mw-content-ltr">one Python implementation explicitly compares only Z4K1 values, but the types and their references have already been fully expanded by the orchestrator</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">“same type reference” would be more efficient, simplifying to</span> {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** <span lang="en" dir="ltr" class="mw-content-ltr">“type is one of” could be implemented with</span> {{Z|Z12696}}
* <span lang="en" dir="ltr" class="mw-content-ltr">Simplify search string functions like {{Z|Z22973}}, allowing the type reference to be entered as a string, where known.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Consistent approach across Wikidata and Wikifunctions references, perhaps allowing objects like types to be used in enumerations.</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
3klh6fih6krvmcmxvs9l89llnyx4qgw
307315
307313
2026-09-01T23:50:16Z
엔디지2
102010
307315
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = 이전 업데이트
| prev = 2026-08-20
| nextlabel = 다음 업데이트
| next =
}}
<span id="News_in_Types:_Wikifunctions_Object_Reference"></span>
=== News in Types: 위키함수 객체 참조 ===
커뮤니티는 [[User:GrounderUK|GrounderUK]]에 의한 이 [[Wikifunctions:Type proposals/Wikifunctions object reference|Type 제안]]을 기반으로 새로운 유형 [[Z96|위키함수 객체 레퍼런스]]를 제안했습니다.
<span style="padding:4px: border-radius:6px; background:#eeddcc; font-weight:700">홍명보 꺼져</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
What are Wikifunctions Object References good for? Here are the uses, as listed by the community:
</div>
* <span lang="en" dir="ltr" class="mw-content-ltr">Prevent the automatic de-referencing of references extracted from Wikifunctions objects (by [[Z803|Z803]], for example).</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Allow more straightforward and efficient comparison of types. For example:</span>
** {{Z|Z16829}} <span lang="en" dir="ltr" class="mw-content-ltr">(or an equivalent) could return a Wikifunctions object reference rather than a fully expanded type object</span>
** {{Z|Z19077}} <span lang="en" dir="ltr" class="mw-content-ltr">extracts a type’s Z4K1 but this is currently expanded back into the referenced type, making type comparisons inefficient</span>
** {{Z|Z19084}} <span lang="en" dir="ltr" class="mw-content-ltr">one Python implementation explicitly compares only Z4K1 values, but the types and their references have already been fully expanded by the orchestrator</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">“same type reference” would be more efficient, simplifying to</span> {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** <span lang="en" dir="ltr" class="mw-content-ltr">“type is one of” could be implemented with</span> {{Z|Z12696}}
* <span lang="en" dir="ltr" class="mw-content-ltr">Simplify search string functions like {{Z|Z22973}}, allowing the type reference to be entered as a string, where known.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Consistent approach across Wikidata and Wikifunctions references, perhaps allowing objects like types to be used in enumerations.</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
1mbo3pjczuopdsjeoljluo6qc6iw2up
307317
307315
2026-09-01T23:50:57Z
엔디지2
102010
307317
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = 이전 업데이트
| prev = 2026-08-20
| nextlabel = 다음 업데이트
| next =
}}
<span id="News_in_Types:_Wikifunctions_Object_Reference"></span>
=== News in Types: 위키함수 객체 참조 ===
커뮤니티는 [[User:GrounderUK|GrounderUK]]에 의한 이 [[Wikifunctions:Type proposals/Wikifunctions object reference|Type 제안]]을 기반으로 새로운 유형 [[Z96|위키함수 객체 레퍼런스]]를 제안했습니다.
<span style="padding:4px;border-radius:6px; background:#ffddcc; font-weight:700">홍명보 꺼져</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
What are Wikifunctions Object References good for? Here are the uses, as listed by the community:
</div>
* <span lang="en" dir="ltr" class="mw-content-ltr">Prevent the automatic de-referencing of references extracted from Wikifunctions objects (by [[Z803|Z803]], for example).</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Allow more straightforward and efficient comparison of types. For example:</span>
** {{Z|Z16829}} <span lang="en" dir="ltr" class="mw-content-ltr">(or an equivalent) could return a Wikifunctions object reference rather than a fully expanded type object</span>
** {{Z|Z19077}} <span lang="en" dir="ltr" class="mw-content-ltr">extracts a type’s Z4K1 but this is currently expanded back into the referenced type, making type comparisons inefficient</span>
** {{Z|Z19084}} <span lang="en" dir="ltr" class="mw-content-ltr">one Python implementation explicitly compares only Z4K1 values, but the types and their references have already been fully expanded by the orchestrator</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">“same type reference” would be more efficient, simplifying to</span> {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** <span lang="en" dir="ltr" class="mw-content-ltr">“type is one of” could be implemented with</span> {{Z|Z12696}}
* <span lang="en" dir="ltr" class="mw-content-ltr">Simplify search string functions like {{Z|Z22973}}, allowing the type reference to be entered as a string, where known.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Consistent approach across Wikidata and Wikifunctions references, perhaps allowing objects like types to be used in enumerations.</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
6t8po7rxedwo4oycfd60itbhje91sw4
307319
307317
2026-09-01T23:54:33Z
엔디지2
102010
307319
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = 이전 업데이트
| prev = 2026-08-20
| nextlabel = 다음 업데이트
| next =
}}
<span id="News_in_Types:_Wikifunctions_Object_Reference"></span>
=== News in Types: 위키함수 객체 참조 ===
커뮤니티는 [[User:GrounderUK|GrounderUK]]에 의한 이 [[Wikifunctions:Type proposals/Wikifunctions object reference|Type 제안]]을 기반으로 새로운 유형 [[Z96|위키함수 객체 레퍼런스]]를 제안했습니다.
<span style="padding:6px;border-radius:8px; background:#ffddcc; font-weight:700; font-size:1.1em;">홍명보 꺼져</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
What are Wikifunctions Object References good for? Here are the uses, as listed by the community:
</div>
* <span lang="en" dir="ltr" class="mw-content-ltr">Prevent the automatic de-referencing of references extracted from Wikifunctions objects (by [[Z803|Z803]], for example).</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Allow more straightforward and efficient comparison of types. For example:</span>
** {{Z|Z16829}} <span lang="en" dir="ltr" class="mw-content-ltr">(or an equivalent) could return a Wikifunctions object reference rather than a fully expanded type object</span>
** {{Z|Z19077}} <span lang="en" dir="ltr" class="mw-content-ltr">extracts a type’s Z4K1 but this is currently expanded back into the referenced type, making type comparisons inefficient</span>
** {{Z|Z19084}} <span lang="en" dir="ltr" class="mw-content-ltr">one Python implementation explicitly compares only Z4K1 values, but the types and their references have already been fully expanded by the orchestrator</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">“same type reference” would be more efficient, simplifying to</span> {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** <span lang="en" dir="ltr" class="mw-content-ltr">“type is one of” could be implemented with</span> {{Z|Z12696}}
* <span lang="en" dir="ltr" class="mw-content-ltr">Simplify search string functions like {{Z|Z22973}}, allowing the type reference to be entered as a string, where known.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Consistent approach across Wikidata and Wikifunctions references, perhaps allowing objects like types to be used in enumerations.</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
fnw353k010ycx8kg2qq33k09qqwum3b
307321
307319
2026-09-01T23:54:58Z
엔디지2
102010
307321
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = 이전 업데이트
| prev = 2026-08-20
| nextlabel = 다음 업데이트
| next =
}}
<span id="News_in_Types:_Wikifunctions_Object_Reference"></span>
=== News in Types: 위키함수 객체 참조 ===
커뮤니티는 [[User:GrounderUK|GrounderUK]]에 의한 이 [[Wikifunctions:Type proposals/Wikifunctions object reference|Type 제안]]을 기반으로 새로운 유형 [[Z96|위키함수 객체 레퍼런스]]를 제안했습니다.
<span style="padding:6px;border-radius:12px; background:#ffddcc; font-weight:700; font-size:18px;">홍명보 꺼져</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
What are Wikifunctions Object References good for? Here are the uses, as listed by the community:
</div>
* <span lang="en" dir="ltr" class="mw-content-ltr">Prevent the automatic de-referencing of references extracted from Wikifunctions objects (by [[Z803|Z803]], for example).</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Allow more straightforward and efficient comparison of types. For example:</span>
** {{Z|Z16829}} <span lang="en" dir="ltr" class="mw-content-ltr">(or an equivalent) could return a Wikifunctions object reference rather than a fully expanded type object</span>
** {{Z|Z19077}} <span lang="en" dir="ltr" class="mw-content-ltr">extracts a type’s Z4K1 but this is currently expanded back into the referenced type, making type comparisons inefficient</span>
** {{Z|Z19084}} <span lang="en" dir="ltr" class="mw-content-ltr">one Python implementation explicitly compares only Z4K1 values, but the types and their references have already been fully expanded by the orchestrator</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">“same type reference” would be more efficient, simplifying to</span> {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** <span lang="en" dir="ltr" class="mw-content-ltr">“type is one of” could be implemented with</span> {{Z|Z12696}}
* <span lang="en" dir="ltr" class="mw-content-ltr">Simplify search string functions like {{Z|Z22973}}, allowing the type reference to be entered as a string, where known.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Consistent approach across Wikidata and Wikifunctions references, perhaps allowing objects like types to be used in enumerations.</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
jvkg0nen1y6e4l5dudh6njgkpkjmljc
307323
307321
2026-09-02T02:48:55Z
Jianhui67
4949
Requesting deletion ([[:m:Special:MyLanguage/User:TenWhile6/XReport|XReport]] v3.1c)
307323
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = 이전 업데이트
| prev = 2026-08-20
| nextlabel = 다음 업데이트
| next =
}}
<span id="News_in_Types:_Wikifunctions_Object_Reference"></span>
=== News in Types: 위키함수 객체 참조 ===
<noinclude>{{delete|1=Vandalism <small>[[:m:Special:MyLanguage/User:TenWhile6/XReport|XReport]]</small>}}</noinclude>
커뮤니티는 [[User:GrounderUK|GrounderUK]]에 의한 이 [[Wikifunctions:Type proposals/Wikifunctions object reference|Type 제안]]을 기반으로 새로운 유형 [[Z96|위키함수 객체 레퍼런스]]를 제안했습니다.
<span style="padding:6px;border-radius:12px; background:#ffddcc; font-weight:700; font-size:18px;">홍명보 꺼져</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
What are Wikifunctions Object References good for? Here are the uses, as listed by the community:
</div>
* <span lang="en" dir="ltr" class="mw-content-ltr">Prevent the automatic de-referencing of references extracted from Wikifunctions objects (by [[Z803|Z803]], for example).</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Allow more straightforward and efficient comparison of types. For example:</span>
** {{Z|Z16829}} <span lang="en" dir="ltr" class="mw-content-ltr">(or an equivalent) could return a Wikifunctions object reference rather than a fully expanded type object</span>
** {{Z|Z19077}} <span lang="en" dir="ltr" class="mw-content-ltr">extracts a type’s Z4K1 but this is currently expanded back into the referenced type, making type comparisons inefficient</span>
** {{Z|Z19084}} <span lang="en" dir="ltr" class="mw-content-ltr">one Python implementation explicitly compares only Z4K1 values, but the types and their references have already been fully expanded by the orchestrator</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">“same type reference” would be more efficient, simplifying to</span> {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** <span lang="en" dir="ltr" class="mw-content-ltr">“type is one of” could be implemented with</span> {{Z|Z12696}}
* <span lang="en" dir="ltr" class="mw-content-ltr">Simplify search string functions like {{Z|Z22973}}, allowing the type reference to be entered as a string, where known.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Consistent approach across Wikidata and Wikifunctions references, perhaps allowing objects like types to be used in enumerations.</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
ns1rkkgyvkpmtzd1yss5np9kp562z3p
307326
307323
2026-09-02T02:49:51Z
Jianhui67
4949
Requesting deletion ([[:m:Special:MyLanguage/User:TenWhile6/XReport|XReport]] v3.1c)
307326
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = <noinclude>{{delete|1=Vandalism <small>[[:m:Special:MyLanguage/User:TenWhile6/XReport|XReport]]</small>}}</noinclude>
이전 업데이트
| prev = 2026-08-20
| nextlabel = 다음 업데이트
| next =
}}
<span id="News_in_Types:_Wikifunctions_Object_Reference"></span>
=== News in Types: 위키함수 객체 참조 ===
<noinclude>{{delete|1=Vandalism <small>[[:m:Special:MyLanguage/User:TenWhile6/XReport|XReport]]</small>}}</noinclude>
커뮤니티는 [[User:GrounderUK|GrounderUK]]에 의한 이 [[Wikifunctions:Type proposals/Wikifunctions object reference|Type 제안]]을 기반으로 새로운 유형 [[Z96|위키함수 객체 레퍼런스]]를 제안했습니다.
<span style="padding:6px;border-radius:12px; background:#ffddcc; font-weight:700; font-size:18px;">홍명보 꺼져</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
What are Wikifunctions Object References good for? Here are the uses, as listed by the community:
</div>
* <span lang="en" dir="ltr" class="mw-content-ltr">Prevent the automatic de-referencing of references extracted from Wikifunctions objects (by [[Z803|Z803]], for example).</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Allow more straightforward and efficient comparison of types. For example:</span>
** {{Z|Z16829}} <span lang="en" dir="ltr" class="mw-content-ltr">(or an equivalent) could return a Wikifunctions object reference rather than a fully expanded type object</span>
** {{Z|Z19077}} <span lang="en" dir="ltr" class="mw-content-ltr">extracts a type’s Z4K1 but this is currently expanded back into the referenced type, making type comparisons inefficient</span>
** {{Z|Z19084}} <span lang="en" dir="ltr" class="mw-content-ltr">one Python implementation explicitly compares only Z4K1 values, but the types and their references have already been fully expanded by the orchestrator</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">“same type reference” would be more efficient, simplifying to</span> {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** <span lang="en" dir="ltr" class="mw-content-ltr">“type is one of” could be implemented with</span> {{Z|Z12696}}
* <span lang="en" dir="ltr" class="mw-content-ltr">Simplify search string functions like {{Z|Z22973}}, allowing the type reference to be entered as a string, where known.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Consistent approach across Wikidata and Wikifunctions references, perhaps allowing objects like types to be used in enumerations.</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
bk4tjuftvlq8cako1oql6zg4x0dh39u
307328
307326
2026-09-02T02:50:28Z
Jianhui67
4949
Requesting deletion ([[:m:Special:MyLanguage/User:TenWhile6/XReport|XReport]] v3.1c)
307328
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = <noinclude>{{delete|1=Vandalism <small>[[:m:Special:MyLanguage/User:TenWhile6/XReport|XReport]]</small>}}</noinclude>
이전 업데이트
| prev = 2026-08-20
| nextlabel = <noinclude>{{delete|1=Vandalism <small>[[:m:Special:MyLanguage/User:TenWhile6/XReport|XReport]]</small>}}</noinclude>
다음 업데이트
| next =
}}
<span id="News_in_Types:_Wikifunctions_Object_Reference"></span>
=== News in Types: 위키함수 객체 참조 ===
<noinclude>{{delete|1=Vandalism <small>[[:m:Special:MyLanguage/User:TenWhile6/XReport|XReport]]</small>}}</noinclude>
커뮤니티는 [[User:GrounderUK|GrounderUK]]에 의한 이 [[Wikifunctions:Type proposals/Wikifunctions object reference|Type 제안]]을 기반으로 새로운 유형 [[Z96|위키함수 객체 레퍼런스]]를 제안했습니다.
<span style="padding:6px;border-radius:12px; background:#ffddcc; font-weight:700; font-size:18px;">홍명보 꺼져</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
What are Wikifunctions Object References good for? Here are the uses, as listed by the community:
</div>
* <span lang="en" dir="ltr" class="mw-content-ltr">Prevent the automatic de-referencing of references extracted from Wikifunctions objects (by [[Z803|Z803]], for example).</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Allow more straightforward and efficient comparison of types. For example:</span>
** {{Z|Z16829}} <span lang="en" dir="ltr" class="mw-content-ltr">(or an equivalent) could return a Wikifunctions object reference rather than a fully expanded type object</span>
** {{Z|Z19077}} <span lang="en" dir="ltr" class="mw-content-ltr">extracts a type’s Z4K1 but this is currently expanded back into the referenced type, making type comparisons inefficient</span>
** {{Z|Z19084}} <span lang="en" dir="ltr" class="mw-content-ltr">one Python implementation explicitly compares only Z4K1 values, but the types and their references have already been fully expanded by the orchestrator</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">“same type reference” would be more efficient, simplifying to</span> {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** <span lang="en" dir="ltr" class="mw-content-ltr">“type is one of” could be implemented with</span> {{Z|Z12696}}
* <span lang="en" dir="ltr" class="mw-content-ltr">Simplify search string functions like {{Z|Z22973}}, allowing the type reference to be entered as a string, where known.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Consistent approach across Wikidata and Wikifunctions references, perhaps allowing objects like types to be used in enumerations.</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
l8qu3q6v8k0elk3pu8geuer2kty9r1k
307330
307328
2026-09-02T02:50:58Z
Jianhui67
4949
Requesting deletion ([[:m:Special:MyLanguage/User:TenWhile6/XReport|XReport]] v3.1c)
307330
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = <noinclude>{{delete|1=Vandalism <small>[[:m:Special:MyLanguage/User:TenWhile6/XReport|XReport]]</small>}}</noinclude>
이전 업데이트
| prev = 2026-08-20
| nextlabel = <noinclude>{{delete|1=Vandalism <small>[[:m:Special:MyLanguage/User:TenWhile6/XReport|XReport]]</small>}}</noinclude>
다음 업데이트
| next =
}}
<span id="News_in_Types:_Wikifunctions_Object_Reference"></span>
<noinclude>{{delete|1=Vandalism <small>[[:m:Special:MyLanguage/User:TenWhile6/XReport|XReport]]</small>}}</noinclude>
=== News in Types: 위키함수 객체 참조 ===
<noinclude>{{delete|1=Vandalism <small>[[:m:Special:MyLanguage/User:TenWhile6/XReport|XReport]]</small>}}</noinclude>
커뮤니티는 [[User:GrounderUK|GrounderUK]]에 의한 이 [[Wikifunctions:Type proposals/Wikifunctions object reference|Type 제안]]을 기반으로 새로운 유형 [[Z96|위키함수 객체 레퍼런스]]를 제안했습니다.
<span style="padding:6px;border-radius:12px; background:#ffddcc; font-weight:700; font-size:18px;">홍명보 꺼져</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
What are Wikifunctions Object References good for? Here are the uses, as listed by the community:
</div>
* <span lang="en" dir="ltr" class="mw-content-ltr">Prevent the automatic de-referencing of references extracted from Wikifunctions objects (by [[Z803|Z803]], for example).</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Allow more straightforward and efficient comparison of types. For example:</span>
** {{Z|Z16829}} <span lang="en" dir="ltr" class="mw-content-ltr">(or an equivalent) could return a Wikifunctions object reference rather than a fully expanded type object</span>
** {{Z|Z19077}} <span lang="en" dir="ltr" class="mw-content-ltr">extracts a type’s Z4K1 but this is currently expanded back into the referenced type, making type comparisons inefficient</span>
** {{Z|Z19084}} <span lang="en" dir="ltr" class="mw-content-ltr">one Python implementation explicitly compares only Z4K1 values, but the types and their references have already been fully expanded by the orchestrator</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">“same type reference” would be more efficient, simplifying to</span> {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** <span lang="en" dir="ltr" class="mw-content-ltr">“type is one of” could be implemented with</span> {{Z|Z12696}}
* <span lang="en" dir="ltr" class="mw-content-ltr">Simplify search string functions like {{Z|Z22973}}, allowing the type reference to be entered as a string, where known.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Consistent approach across Wikidata and Wikifunctions references, perhaps allowing objects like types to be used in enumerations.</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
e8kqlgzcm552dg60zn5sgt5plnbipo6
307335
307330
2026-09-02T03:16:16Z
엔디지2
102010
307335
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = 이전 업데이트
| prev = 2026-08-20
| nextlabel = <noinclude>{{delete|1=Vandalism <small>[[:m:Special:MyLanguage/User:TenWhile6/XReport|XReport]]</small>}}</noinclude>
다음 업데이트
| next =
}}
<span id="News_in_Types:_Wikifunctions_Object_Reference"></span>
<noinclude>{{delete|1=Vandalism <small>[[:m:Special:MyLanguage/User:TenWhile6/XReport|XReport]]</small>}}</noinclude>
=== News in Types: 위키함수 객체 참조 ===
<noinclude>{{delete|1=Vandalism <small>[[:m:Special:MyLanguage/User:TenWhile6/XReport|XReport]]</small>}}</noinclude>
커뮤니티는 [[User:GrounderUK|GrounderUK]]에 의한 이 [[Wikifunctions:Type proposals/Wikifunctions object reference|Type 제안]]을 기반으로 새로운 유형 [[Z96|위키함수 객체 레퍼런스]]를 제안했습니다.
<span style="padding:6px;border-radius:12px; background:#ffddcc; font-weight:700; font-size:18px;">홍명보 꺼져</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
What are Wikifunctions Object References good for? Here are the uses, as listed by the community:
</div>
* <span lang="en" dir="ltr" class="mw-content-ltr">Prevent the automatic de-referencing of references extracted from Wikifunctions objects (by [[Z803|Z803]], for example).</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Allow more straightforward and efficient comparison of types. For example:</span>
** {{Z|Z16829}} <span lang="en" dir="ltr" class="mw-content-ltr">(or an equivalent) could return a Wikifunctions object reference rather than a fully expanded type object</span>
** {{Z|Z19077}} <span lang="en" dir="ltr" class="mw-content-ltr">extracts a type’s Z4K1 but this is currently expanded back into the referenced type, making type comparisons inefficient</span>
** {{Z|Z19084}} <span lang="en" dir="ltr" class="mw-content-ltr">one Python implementation explicitly compares only Z4K1 values, but the types and their references have already been fully expanded by the orchestrator</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">“same type reference” would be more efficient, simplifying to</span> {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** <span lang="en" dir="ltr" class="mw-content-ltr">“type is one of” could be implemented with</span> {{Z|Z12696}}
* <span lang="en" dir="ltr" class="mw-content-ltr">Simplify search string functions like {{Z|Z22973}}, allowing the type reference to be entered as a string, where known.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Consistent approach across Wikidata and Wikifunctions references, perhaps allowing objects like types to be used in enumerations.</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
562t0oz6vrjd0g0fddvg3g6owlm6rjv
307337
307335
2026-09-02T03:16:19Z
엔디지2
102010
307337
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = 이전 업데이트
| prev = 2026-08-20
| nextlabel = 다음 업데이트
| next =
}}
<span id="News_in_Types:_Wikifunctions_Object_Reference"></span>
<noinclude>{{delete|1=Vandalism <small>[[:m:Special:MyLanguage/User:TenWhile6/XReport|XReport]]</small>}}</noinclude>
=== News in Types: 위키함수 객체 참조 ===
<noinclude>{{delete|1=Vandalism <small>[[:m:Special:MyLanguage/User:TenWhile6/XReport|XReport]]</small>}}</noinclude>
커뮤니티는 [[User:GrounderUK|GrounderUK]]에 의한 이 [[Wikifunctions:Type proposals/Wikifunctions object reference|Type 제안]]을 기반으로 새로운 유형 [[Z96|위키함수 객체 레퍼런스]]를 제안했습니다.
<span style="padding:6px;border-radius:12px; background:#ffddcc; font-weight:700; font-size:18px;">홍명보 꺼져</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
What are Wikifunctions Object References good for? Here are the uses, as listed by the community:
</div>
* <span lang="en" dir="ltr" class="mw-content-ltr">Prevent the automatic de-referencing of references extracted from Wikifunctions objects (by [[Z803|Z803]], for example).</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Allow more straightforward and efficient comparison of types. For example:</span>
** {{Z|Z16829}} <span lang="en" dir="ltr" class="mw-content-ltr">(or an equivalent) could return a Wikifunctions object reference rather than a fully expanded type object</span>
** {{Z|Z19077}} <span lang="en" dir="ltr" class="mw-content-ltr">extracts a type’s Z4K1 but this is currently expanded back into the referenced type, making type comparisons inefficient</span>
** {{Z|Z19084}} <span lang="en" dir="ltr" class="mw-content-ltr">one Python implementation explicitly compares only Z4K1 values, but the types and their references have already been fully expanded by the orchestrator</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">“same type reference” would be more efficient, simplifying to</span> {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** <span lang="en" dir="ltr" class="mw-content-ltr">“type is one of” could be implemented with</span> {{Z|Z12696}}
* <span lang="en" dir="ltr" class="mw-content-ltr">Simplify search string functions like {{Z|Z22973}}, allowing the type reference to be entered as a string, where known.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Consistent approach across Wikidata and Wikifunctions references, perhaps allowing objects like types to be used in enumerations.</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
i5ub6mca64m3eu84mq2u8ww5636rd16
307339
307337
2026-09-02T03:16:23Z
엔디지2
102010
307339
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = 이전 업데이트
| prev = 2026-08-20
| nextlabel = 다음 업데이트
| next =
}}
<span id="News_in_Types:_Wikifunctions_Object_Reference"></span>
=== News in Types: 위키함수 객체 참조 ===
<noinclude>{{delete|1=Vandalism <small>[[:m:Special:MyLanguage/User:TenWhile6/XReport|XReport]]</small>}}</noinclude>
커뮤니티는 [[User:GrounderUK|GrounderUK]]에 의한 이 [[Wikifunctions:Type proposals/Wikifunctions object reference|Type 제안]]을 기반으로 새로운 유형 [[Z96|위키함수 객체 레퍼런스]]를 제안했습니다.
<span style="padding:6px;border-radius:12px; background:#ffddcc; font-weight:700; font-size:18px;">홍명보 꺼져</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
What are Wikifunctions Object References good for? Here are the uses, as listed by the community:
</div>
* <span lang="en" dir="ltr" class="mw-content-ltr">Prevent the automatic de-referencing of references extracted from Wikifunctions objects (by [[Z803|Z803]], for example).</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Allow more straightforward and efficient comparison of types. For example:</span>
** {{Z|Z16829}} <span lang="en" dir="ltr" class="mw-content-ltr">(or an equivalent) could return a Wikifunctions object reference rather than a fully expanded type object</span>
** {{Z|Z19077}} <span lang="en" dir="ltr" class="mw-content-ltr">extracts a type’s Z4K1 but this is currently expanded back into the referenced type, making type comparisons inefficient</span>
** {{Z|Z19084}} <span lang="en" dir="ltr" class="mw-content-ltr">one Python implementation explicitly compares only Z4K1 values, but the types and their references have already been fully expanded by the orchestrator</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">“same type reference” would be more efficient, simplifying to</span> {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** <span lang="en" dir="ltr" class="mw-content-ltr">“type is one of” could be implemented with</span> {{Z|Z12696}}
* <span lang="en" dir="ltr" class="mw-content-ltr">Simplify search string functions like {{Z|Z22973}}, allowing the type reference to be entered as a string, where known.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Consistent approach across Wikidata and Wikifunctions references, perhaps allowing objects like types to be used in enumerations.</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
ns1rkkgyvkpmtzd1yss5np9kp562z3p
307341
307339
2026-09-02T03:16:40Z
엔디지2
102010
307341
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = 이전 업데이트
| prev = 2026-08-20
| nextlabel = 다음 업데이트
| next =
}}
<span id="News_in_Types:_Wikifunctions_Object_Reference"></span>
=== News in Types: 위키함수 객체 참조 ===
커뮤니티는 [[User:GrounderUK|GrounderUK]]에 의한 이 [[Wikifunctions:Type proposals/Wikifunctions object reference|Type 제안]]을 기반으로 새로운 유형 [[Z96|위키함수 객체 레퍼런스]]를 제안했습니다.
<span style="padding:6px;border-radius:12px; background:#ffddcc; font-weight:700; font-size:18px;">홍명보 꺼져</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
What are Wikifunctions Object References good for? Here are the uses, as listed by the community:
</div>
* <span lang="en" dir="ltr" class="mw-content-ltr">Prevent the automatic de-referencing of references extracted from Wikifunctions objects (by [[Z803|Z803]], for example).</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Allow more straightforward and efficient comparison of types. For example:</span>
** {{Z|Z16829}} <span lang="en" dir="ltr" class="mw-content-ltr">(or an equivalent) could return a Wikifunctions object reference rather than a fully expanded type object</span>
** {{Z|Z19077}} <span lang="en" dir="ltr" class="mw-content-ltr">extracts a type’s Z4K1 but this is currently expanded back into the referenced type, making type comparisons inefficient</span>
** {{Z|Z19084}} <span lang="en" dir="ltr" class="mw-content-ltr">one Python implementation explicitly compares only Z4K1 values, but the types and their references have already been fully expanded by the orchestrator</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">“same type reference” would be more efficient, simplifying to</span> {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** <span lang="en" dir="ltr" class="mw-content-ltr">“type is one of” could be implemented with</span> {{Z|Z12696}}
* <span lang="en" dir="ltr" class="mw-content-ltr">Simplify search string functions like {{Z|Z22973}}, allowing the type reference to be entered as a string, where known.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Consistent approach across Wikidata and Wikifunctions references, perhaps allowing objects like types to be used in enumerations.</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
jvkg0nen1y6e4l5dudh6njgkpkjmljc
307343
307341
2026-09-02T03:17:22Z
엔디지2
102010
Created page with "위키함수 객체 참조는 무엇에 좋습니까? 커뮤니티에서 나열한 대로 다음과 같은 용도가 있습니다."
307343
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = 이전 업데이트
| prev = 2026-08-20
| nextlabel = 다음 업데이트
| next =
}}
<span id="News_in_Types:_Wikifunctions_Object_Reference"></span>
=== News in Types: 위키함수 객체 참조 ===
커뮤니티는 [[User:GrounderUK|GrounderUK]]에 의한 이 [[Wikifunctions:Type proposals/Wikifunctions object reference|Type 제안]]을 기반으로 새로운 유형 [[Z96|위키함수 객체 레퍼런스]]를 제안했습니다.
<span style="padding:6px;border-radius:12px; background:#ffddcc; font-weight:700; font-size:18px;">홍명보 꺼져</span>
위키함수 객체 참조는 무엇에 좋습니까? 커뮤니티에서 나열한 대로 다음과 같은 용도가 있습니다.
* <span lang="en" dir="ltr" class="mw-content-ltr">Prevent the automatic de-referencing of references extracted from Wikifunctions objects (by [[Z803|Z803]], for example).</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Allow more straightforward and efficient comparison of types. For example:</span>
** {{Z|Z16829}} <span lang="en" dir="ltr" class="mw-content-ltr">(or an equivalent) could return a Wikifunctions object reference rather than a fully expanded type object</span>
** {{Z|Z19077}} <span lang="en" dir="ltr" class="mw-content-ltr">extracts a type’s Z4K1 but this is currently expanded back into the referenced type, making type comparisons inefficient</span>
** {{Z|Z19084}} <span lang="en" dir="ltr" class="mw-content-ltr">one Python implementation explicitly compares only Z4K1 values, but the types and their references have already been fully expanded by the orchestrator</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">“same type reference” would be more efficient, simplifying to</span> {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** <span lang="en" dir="ltr" class="mw-content-ltr">“type is one of” could be implemented with</span> {{Z|Z12696}}
* <span lang="en" dir="ltr" class="mw-content-ltr">Simplify search string functions like {{Z|Z22973}}, allowing the type reference to be entered as a string, where known.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Consistent approach across Wikidata and Wikifunctions references, perhaps allowing objects like types to be used in enumerations.</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
5h44sqsm2v2im63mw3w3mlc7zvp2zdf
307354
307343
2026-09-02T03:46:11Z
Veritas Sapientiae
920
Reverted edit by [[Special:Contributions/엔디지2|엔디지2]] ([[User talk:엔디지2|talk]]) to last revision by [[User:Jianhui67|Jianhui67]]
307354
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = <noinclude>{{delete|1=Vandalism <small>[[:m:Special:MyLanguage/User:TenWhile6/XReport|XReport]]</small>}}</noinclude>
이전 업데이트
| prev = 2026-08-20
| nextlabel = <noinclude>{{delete|1=Vandalism <small>[[:m:Special:MyLanguage/User:TenWhile6/XReport|XReport]]</small>}}</noinclude>
다음 업데이트
| next =
}}
<span id="News_in_Types:_Wikifunctions_Object_Reference"></span>
<noinclude>{{delete|1=Vandalism <small>[[:m:Special:MyLanguage/User:TenWhile6/XReport|XReport]]</small>}}</noinclude>
=== News in Types: 위키함수 객체 참조 ===
<noinclude>{{delete|1=Vandalism <small>[[:m:Special:MyLanguage/User:TenWhile6/XReport|XReport]]</small>}}</noinclude>
커뮤니티는 [[User:GrounderUK|GrounderUK]]에 의한 이 [[Wikifunctions:Type proposals/Wikifunctions object reference|Type 제안]]을 기반으로 새로운 유형 [[Z96|위키함수 객체 레퍼런스]]를 제안했습니다.
<span style="padding:6px;border-radius:12px; background:#ffddcc; font-weight:700; font-size:18px;">홍명보 꺼져</span>
위키함수 객체 참조는 무엇에 좋습니까? 커뮤니티에서 나열한 대로 다음과 같은 용도가 있습니다.
* <span lang="en" dir="ltr" class="mw-content-ltr">Prevent the automatic de-referencing of references extracted from Wikifunctions objects (by [[Z803|Z803]], for example).</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Allow more straightforward and efficient comparison of types. For example:</span>
** {{Z|Z16829}} <span lang="en" dir="ltr" class="mw-content-ltr">(or an equivalent) could return a Wikifunctions object reference rather than a fully expanded type object</span>
** {{Z|Z19077}} <span lang="en" dir="ltr" class="mw-content-ltr">extracts a type’s Z4K1 but this is currently expanded back into the referenced type, making type comparisons inefficient</span>
** {{Z|Z19084}} <span lang="en" dir="ltr" class="mw-content-ltr">one Python implementation explicitly compares only Z4K1 values, but the types and their references have already been fully expanded by the orchestrator</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">“same type reference” would be more efficient, simplifying to</span> {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** <span lang="en" dir="ltr" class="mw-content-ltr">“type is one of” could be implemented with</span> {{Z|Z12696}}
* <span lang="en" dir="ltr" class="mw-content-ltr">Simplify search string functions like {{Z|Z22973}}, allowing the type reference to be entered as a string, where known.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Consistent approach across Wikidata and Wikifunctions references, perhaps allowing objects like types to be used in enumerations.</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
0ug8tdn6r621v82rz68sofomw5w4ack
307359
307354
2026-09-02T03:50:15Z
엔디지2
102010
Please respect local language
307359
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = 이전 업데이트
| prev = 2026-08-20
| nextlabel = <noinclude>{{delete|1=Vandalism <small>[[:m:Special:MyLanguage/User:TenWhile6/XReport|XReport]]</small>}}</noinclude>
다음 업데이트
| next =
}}
<span id="News_in_Types:_Wikifunctions_Object_Reference"></span>
<noinclude>{{delete|1=Vandalism <small>[[:m:Special:MyLanguage/User:TenWhile6/XReport|XReport]]</small>}}</noinclude>
=== News in Types: 위키함수 객체 참조 ===
<noinclude>{{delete|1=Vandalism <small>[[:m:Special:MyLanguage/User:TenWhile6/XReport|XReport]]</small>}}</noinclude>
커뮤니티는 [[User:GrounderUK|GrounderUK]]에 의한 이 [[Wikifunctions:Type proposals/Wikifunctions object reference|Type 제안]]을 기반으로 새로운 유형 [[Z96|위키함수 객체 레퍼런스]]를 제안했습니다.
<span style="padding:6px;border-radius:12px; background:#ffddcc; font-weight:700; font-size:18px;">홍명보 꺼져</span>
위키함수 객체 참조는 무엇에 좋습니까? 커뮤니티에서 나열한 대로 다음과 같은 용도가 있습니다.
* <span lang="en" dir="ltr" class="mw-content-ltr">Prevent the automatic de-referencing of references extracted from Wikifunctions objects (by [[Z803|Z803]], for example).</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Allow more straightforward and efficient comparison of types. For example:</span>
** {{Z|Z16829}} <span lang="en" dir="ltr" class="mw-content-ltr">(or an equivalent) could return a Wikifunctions object reference rather than a fully expanded type object</span>
** {{Z|Z19077}} <span lang="en" dir="ltr" class="mw-content-ltr">extracts a type’s Z4K1 but this is currently expanded back into the referenced type, making type comparisons inefficient</span>
** {{Z|Z19084}} <span lang="en" dir="ltr" class="mw-content-ltr">one Python implementation explicitly compares only Z4K1 values, but the types and their references have already been fully expanded by the orchestrator</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">“same type reference” would be more efficient, simplifying to</span> {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** <span lang="en" dir="ltr" class="mw-content-ltr">“type is one of” could be implemented with</span> {{Z|Z12696}}
* <span lang="en" dir="ltr" class="mw-content-ltr">Simplify search string functions like {{Z|Z22973}}, allowing the type reference to be entered as a string, where known.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Consistent approach across Wikidata and Wikifunctions references, perhaps allowing objects like types to be used in enumerations.</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
fg0ehgu5djrbtugohhys03hwx6kkx05
307361
307359
2026-09-02T03:50:23Z
엔디지2
102010
Please respect local language
307361
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = 이전 업데이트
| prev = 2026-08-20
| nextlabel = 다음 업데이트
| next =
}}
<span id="News_in_Types:_Wikifunctions_Object_Reference"></span>
<noinclude>{{delete|1=Vandalism <small>[[:m:Special:MyLanguage/User:TenWhile6/XReport|XReport]]</small>}}</noinclude>
=== News in Types: 위키함수 객체 참조 ===
<noinclude>{{delete|1=Vandalism <small>[[:m:Special:MyLanguage/User:TenWhile6/XReport|XReport]]</small>}}</noinclude>
커뮤니티는 [[User:GrounderUK|GrounderUK]]에 의한 이 [[Wikifunctions:Type proposals/Wikifunctions object reference|Type 제안]]을 기반으로 새로운 유형 [[Z96|위키함수 객체 레퍼런스]]를 제안했습니다.
<span style="padding:6px;border-radius:12px; background:#ffddcc; font-weight:700; font-size:18px;">홍명보 꺼져</span>
위키함수 객체 참조는 무엇에 좋습니까? 커뮤니티에서 나열한 대로 다음과 같은 용도가 있습니다.
* <span lang="en" dir="ltr" class="mw-content-ltr">Prevent the automatic de-referencing of references extracted from Wikifunctions objects (by [[Z803|Z803]], for example).</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Allow more straightforward and efficient comparison of types. For example:</span>
** {{Z|Z16829}} <span lang="en" dir="ltr" class="mw-content-ltr">(or an equivalent) could return a Wikifunctions object reference rather than a fully expanded type object</span>
** {{Z|Z19077}} <span lang="en" dir="ltr" class="mw-content-ltr">extracts a type’s Z4K1 but this is currently expanded back into the referenced type, making type comparisons inefficient</span>
** {{Z|Z19084}} <span lang="en" dir="ltr" class="mw-content-ltr">one Python implementation explicitly compares only Z4K1 values, but the types and their references have already been fully expanded by the orchestrator</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">“same type reference” would be more efficient, simplifying to</span> {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** <span lang="en" dir="ltr" class="mw-content-ltr">“type is one of” could be implemented with</span> {{Z|Z12696}}
* <span lang="en" dir="ltr" class="mw-content-ltr">Simplify search string functions like {{Z|Z22973}}, allowing the type reference to be entered as a string, where known.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Consistent approach across Wikidata and Wikifunctions references, perhaps allowing objects like types to be used in enumerations.</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
8pb1l6u0qo8rikevs3gfov5dt8grzx0
307363
307361
2026-09-02T03:50:26Z
엔디지2
102010
307363
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = 이전 업데이트
| prev = 2026-08-20
| nextlabel = 다음 업데이트
| next =
}}
<span id="News_in_Types:_Wikifunctions_Object_Reference"></span>
=== News in Types: 위키함수 객체 참조 ===
<noinclude>{{delete|1=Vandalism <small>[[:m:Special:MyLanguage/User:TenWhile6/XReport|XReport]]</small>}}</noinclude>
커뮤니티는 [[User:GrounderUK|GrounderUK]]에 의한 이 [[Wikifunctions:Type proposals/Wikifunctions object reference|Type 제안]]을 기반으로 새로운 유형 [[Z96|위키함수 객체 레퍼런스]]를 제안했습니다.
<span style="padding:6px;border-radius:12px; background:#ffddcc; font-weight:700; font-size:18px;">홍명보 꺼져</span>
위키함수 객체 참조는 무엇에 좋습니까? 커뮤니티에서 나열한 대로 다음과 같은 용도가 있습니다.
* <span lang="en" dir="ltr" class="mw-content-ltr">Prevent the automatic de-referencing of references extracted from Wikifunctions objects (by [[Z803|Z803]], for example).</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Allow more straightforward and efficient comparison of types. For example:</span>
** {{Z|Z16829}} <span lang="en" dir="ltr" class="mw-content-ltr">(or an equivalent) could return a Wikifunctions object reference rather than a fully expanded type object</span>
** {{Z|Z19077}} <span lang="en" dir="ltr" class="mw-content-ltr">extracts a type’s Z4K1 but this is currently expanded back into the referenced type, making type comparisons inefficient</span>
** {{Z|Z19084}} <span lang="en" dir="ltr" class="mw-content-ltr">one Python implementation explicitly compares only Z4K1 values, but the types and their references have already been fully expanded by the orchestrator</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">“same type reference” would be more efficient, simplifying to</span> {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** <span lang="en" dir="ltr" class="mw-content-ltr">“type is one of” could be implemented with</span> {{Z|Z12696}}
* <span lang="en" dir="ltr" class="mw-content-ltr">Simplify search string functions like {{Z|Z22973}}, allowing the type reference to be entered as a string, where known.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Consistent approach across Wikidata and Wikifunctions references, perhaps allowing objects like types to be used in enumerations.</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
6wnwa5k7xgsvphqq32rveeh4h6yvzl3
307365
307363
2026-09-02T03:50:32Z
엔디지2
102010
307365
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = 이전 업데이트
| prev = 2026-08-20
| nextlabel = 다음 업데이트
| next =
}}
<span id="News_in_Types:_Wikifunctions_Object_Reference"></span>
=== News in Types: 위키함수 객체 참조 ===
커뮤니티는 [[User:GrounderUK|GrounderUK]]에 의한 이 [[Wikifunctions:Type proposals/Wikifunctions object reference|Type 제안]]을 기반으로 새로운 유형 [[Z96|위키함수 객체 레퍼런스]]를 제안했습니다.
<span style="padding:6px;border-radius:12px; background:#ffddcc; font-weight:700; font-size:18px;">홍명보 꺼져</span>
위키함수 객체 참조는 무엇에 좋습니까? 커뮤니티에서 나열한 대로 다음과 같은 용도가 있습니다.
* <span lang="en" dir="ltr" class="mw-content-ltr">Prevent the automatic de-referencing of references extracted from Wikifunctions objects (by [[Z803|Z803]], for example).</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Allow more straightforward and efficient comparison of types. For example:</span>
** {{Z|Z16829}} <span lang="en" dir="ltr" class="mw-content-ltr">(or an equivalent) could return a Wikifunctions object reference rather than a fully expanded type object</span>
** {{Z|Z19077}} <span lang="en" dir="ltr" class="mw-content-ltr">extracts a type’s Z4K1 but this is currently expanded back into the referenced type, making type comparisons inefficient</span>
** {{Z|Z19084}} <span lang="en" dir="ltr" class="mw-content-ltr">one Python implementation explicitly compares only Z4K1 values, but the types and their references have already been fully expanded by the orchestrator</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">“same type reference” would be more efficient, simplifying to</span> {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** <span lang="en" dir="ltr" class="mw-content-ltr">“type is one of” could be implemented with</span> {{Z|Z12696}}
* <span lang="en" dir="ltr" class="mw-content-ltr">Simplify search string functions like {{Z|Z22973}}, allowing the type reference to be entered as a string, where known.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Consistent approach across Wikidata and Wikifunctions references, perhaps allowing objects like types to be used in enumerations.</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
5h44sqsm2v2im63mw3w3mlc7zvp2zdf
307372
307365
2026-09-02T05:56:27Z
NDG
14996
Vandalism (global sysop action)
307372
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = <span lang="en" dir="ltr" class="mw-content-ltr">Previous update</span>
| prev = 2026-08-20
| nextlabel = 다음 업데이트
| next =
}}
<div lang="en" dir="ltr" class="mw-content-ltr">
=== News in Types: Wikifunctions Object Reference ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
The community has proposed, and now it is here: a new Type, [[Z96|Wikifunctions Object Reference]], based on this [[Wikifunctions:Type proposals/Wikifunctions object reference|Type proposal]] by [[User:GrounderUK|GrounderUK]].
</div>
위키함수 객체 참조는 무엇에 좋습니까? 커뮤니티에서 나열한 대로 다음과 같은 용도가 있습니다.
* <span lang="en" dir="ltr" class="mw-content-ltr">Prevent the automatic de-referencing of references extracted from Wikifunctions objects (by [[Z803|Z803]], for example).</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Allow more straightforward and efficient comparison of types. For example:</span>
** {{Z|Z16829}} <span lang="en" dir="ltr" class="mw-content-ltr">(or an equivalent) could return a Wikifunctions object reference rather than a fully expanded type object</span>
** {{Z|Z19077}} <span lang="en" dir="ltr" class="mw-content-ltr">extracts a type’s Z4K1 but this is currently expanded back into the referenced type, making type comparisons inefficient</span>
** {{Z|Z19084}} <span lang="en" dir="ltr" class="mw-content-ltr">one Python implementation explicitly compares only Z4K1 values, but the types and their references have already been fully expanded by the orchestrator</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">“same type reference” would be more efficient, simplifying to</span> {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** <span lang="en" dir="ltr" class="mw-content-ltr">“type is one of” could be implemented with</span> {{Z|Z12696}}
* <span lang="en" dir="ltr" class="mw-content-ltr">Simplify search string functions like {{Z|Z22973}}, allowing the type reference to be entered as a string, where known.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Consistent approach across Wikidata and Wikifunctions references, perhaps allowing objects like types to be used in enumerations.</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
dvvnl4r6m4m39a4rdlwbo6wki57nafc
307373
307372
2026-09-02T05:56:28Z
NDG
14996
Vandalism (global sysop action)
307373
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = <span lang="en" dir="ltr" class="mw-content-ltr">Previous update</span>
| prev = 2026-08-20
| nextlabel = <span lang="en" dir="ltr" class="mw-content-ltr">Next update</span>
| next =
}}
<div lang="en" dir="ltr" class="mw-content-ltr">
=== News in Types: Wikifunctions Object Reference ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
The community has proposed, and now it is here: a new Type, [[Z96|Wikifunctions Object Reference]], based on this [[Wikifunctions:Type proposals/Wikifunctions object reference|Type proposal]] by [[User:GrounderUK|GrounderUK]].
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
What are Wikifunctions Object References good for? Here are the uses, as listed by the community:
</div>
* <span lang="en" dir="ltr" class="mw-content-ltr">Prevent the automatic de-referencing of references extracted from Wikifunctions objects (by [[Z803|Z803]], for example).</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Allow more straightforward and efficient comparison of types. For example:</span>
** {{Z|Z16829}} <span lang="en" dir="ltr" class="mw-content-ltr">(or an equivalent) could return a Wikifunctions object reference rather than a fully expanded type object</span>
** {{Z|Z19077}} <span lang="en" dir="ltr" class="mw-content-ltr">extracts a type’s Z4K1 but this is currently expanded back into the referenced type, making type comparisons inefficient</span>
** {{Z|Z19084}} <span lang="en" dir="ltr" class="mw-content-ltr">one Python implementation explicitly compares only Z4K1 values, but the types and their references have already been fully expanded by the orchestrator</span>
** <span lang="en" dir="ltr" class="mw-content-ltr">“same type reference” would be more efficient, simplifying to</span> {{Z|Z866}}
** {{Z|Z19352}}
** {{Z|Z18636}}
** <span lang="en" dir="ltr" class="mw-content-ltr">“type is one of” could be implemented with</span> {{Z|Z12696}}
* <span lang="en" dir="ltr" class="mw-content-ltr">Simplify search string functions like {{Z|Z22973}}, allowing the type reference to be entered as a string, where known.</span>
* <span lang="en" dir="ltr" class="mw-content-ltr">Consistent approach across Wikidata and Wikifunctions references, perhaps allowing objects like types to be used in enumerations.</span>
<div lang="en" dir="ltr" class="mw-content-ltr">
There was quite a bit of discussion that preceded the implementation of the Type, but in the end we followed the design by the community. We were particularly considering also capturing the Type, but that led to a few complications and would have made the Type initially harder to use. That might become a future improvement, but for now we wanted to unlock the Type.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We also added one Function to dereference the reference, or fetch the Object being referenced:
</div> {{Z+|Z40102}}
<div lang="en" dir="ltr" class="mw-content-ltr">
Now we can start using this Type in the many possible use cases. I am going to use it right away in [[Z38546|anonymous functions]], which I hope to write more about very soon.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Thanks to the community for the great suggestion and the thorough discussion.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains!
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Recent Changes in the software ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week, we added support for Z2074/izr Language ([[:phab:T432291|T432291]]). We also fixed a bug that meant that Lexeme Senses wouldn't work correctly, thanks to YoshiRulz for finding the issue ([[:phab:T435331|T435331]]).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 70 new Functions ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 70 new functions. This week, we crossed the Wikifunctions Object Identifier Z40000—after 5000 Functions two weeks ago, another milestone! Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z39631}}
* {{Z|Z39635}}
* {{Z|Z39638}}
* {{Z|Z39640}}
* {{Z|Z39657}}
* {{Z|Z39681}}
* {{Z|Z39684}}
* {{Z|Z39685}}
* {{Z|Z39695}}
* {{Z|Z39700}}
* {{Z|Z39708}}
* {{Z|Z39713}}
* {{Z|Z39716}}
* {{Z|Z39725}}
* {{Z|Z39730}}
* {{Z|Z39736}}
* {{Z|Z39739}}
* {{Z|Z39755}}
* {{Z|Z39756}}
* {{Z|Z39772}}
* {{Z|Z39779}}
* {{Z|Z39782}}
* {{Z|Z39786}}
* {{Z|Z39789}}
* {{Z|Z39796}}
* {{Z|Z39798}}
* {{Z|Z39804}}
* {{Z|Z39807}}
* {{Z|Z39810}}
* {{Z|Z39818}}
* {{Z|Z39821}}
* {{Z|Z39834}}
* {{Z|Z39846}}
* {{Z|Z39847}}
* {{Z|Z39859}}
* {{Z|Z39861}}
* {{Z|Z39873}}
* {{Z|Z39875}}
* {{Z|Z39881}}
* {{Z|Z39883}}
* {{Z|Z39886}}
* {{Z|Z39898}}
* {{Z|Z39899}}
* {{Z|Z39908}}
* {{Z|Z39911}}
* {{Z|Z39914}}
* {{Z|Z39920}}
* {{Z|Z39923}}
* {{Z|Z39926}}
* {{Z|Z39931}}
* {{Z|Z39933}}
<span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span>
[[Category:Status updates{{#translation:}}|2026-08-28]]
tlfoirl5la08g9k9ekm1hg85zetqh02
Z40833
0
92845
307375
2026-09-02T10:02:10Z
HenkvD
1290
influenced by-sentence. Default
307375
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40833"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6091",
"Z17K2": "Z40833K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "entity"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z40833K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z11",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z40833"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "influenced by-sentence. Default"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
dgconr8dgefj7svh14ecf5zu152wnec
307377
307375
2026-09-02T10:03:57Z
HenkvD
1290
Added Z40834 to the approved list of test cases
307377
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40833"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6091",
"Z17K2": "Z40833K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "entity"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z40833K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z11",
"Z8K3": [
"Z20",
"Z40834"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z40833"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "influenced by-sentence. Default"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
lut37apkak5a0tpunhoui0aswo7vvwh
307379
307377
2026-09-02T10:09:17Z
HenkvD
1290
Added Z40835 to the approved list of implementations
307379
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40833"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6091",
"Z17K2": "Z40833K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "entity"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z40833K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z11",
"Z8K3": [
"Z20",
"Z40834"
],
"Z8K4": [
"Z14",
"Z40835"
],
"Z8K5": "Z40833"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "influenced by-sentence. Default"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
912e1b7ssgaymfjbwmwclw1be7xto5g
Z40834
0
92846
307376
2026-09-02T10:03:44Z
HenkvD
1290
[en] -> [mul] BCPL (is influenced by) CPL
307376
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40834"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z40833",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z40833",
"Z40833K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q810009"
},
"Z40833K2": "Z1002"
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z14392",
"Z14392K2": {
"Z1K1": "Z11",
"Z11K1": "Z1360",
"Z11K2": "BCPL (is influenced by) CPL"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[en] -\u003E [mul] BCPL (is influenced by) CPL"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
chr4y5cvsh0x96vhh6u33f7gr8fbe4i
307380
307376
2026-09-02T10:10:06Z
HenkvD
1290
[en] -> [mul] ❌≪BCPL (is influenced by) CPL.≫❌
307380
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40834"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z40833",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z40833",
"Z40833K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q810009"
},
"Z40833K2": "Z1002"
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z14392",
"Z14392K2": {
"Z1K1": "Z11",
"Z11K1": "Z1360",
"Z11K2": "❌≪BCPL (is influenced by) CPL.≫❌"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[en] -\u003E [mul] ❌≪BCPL (is influenced by) CPL.≫❌"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
5h7wjykxb55l0vd0u8gn1w8xr2ilw1s
Z40835
0
92847
307378
2026-09-02T10:08:52Z
HenkvD
1290
influenced by-sentence. Default Composition
307378
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40835"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z40833",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z36911",
"Z36911K1": {
"Z1K1": "Z7",
"Z7K1": "Z34669",
"Z34669K1": [
"Z11",
{
"Z1K1": "Z7",
"Z7K1": "Z34669",
"Z34669K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40833K2"
},
"Z11K2": {
"Z1K1": "Z7",
"Z7K1": "Z10771",
"Z10771K1": {
"Z1K1": "Z7",
"Z7K1": "Z24766",
"Z24766K1": {
"Z1K1": "Z18",
"Z18K1": "Z40833K1"
},
"Z24766K2": {
"Z1K1": "Z18",
"Z18K1": "Z40833K2"
}
}
}
},
{
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40833K2"
},
"Z11K2": "(is influenced by)"
},
{
"Z1K1": "Z7",
"Z7K1": "Z34644",
"Z34644K1": {
"Z1K1": "Z7",
"Z7K1": "Z33024",
"Z33024K1": {
"Z1K1": "Z7",
"Z7K1": "Z37772",
"Z37772K1": {
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z18",
"Z18K1": "Z40833K1"
},
"Z30120K2": [
"Z6030",
"Z6036"
],
"Z30120K3": [
"Z60",
"Z1360"
],
"Z30120K4": [
"Z6092",
{
"Z1K1": "Z6092",
"Z6092K1": "P737"
}
]
}
},
"Z33024K2": {
"Z1K1": "Z18",
"Z18K1": "Z40833K2"
}
},
"Z34644K2": {
"Z1K1": "Z18",
"Z18K1": "Z40833K2"
}
}
],
"Z34669K2": {
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40833K2"
},
"Z11K2": " "
}
},
{
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40833K2"
},
"Z11K2": "."
}
],
"Z34669K2": {
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40833K2"
},
"Z11K2": ""
}
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "influenced by-sentence. Default Composition"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
3182m9cg3gh501qgu343rln1zm6ewy0
307381
307378
2026-09-02T10:11:55Z
HenkvD
1290
join list of monolingual texts without Oxford comm
307381
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40835"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z40833",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z36911",
"Z36911K1": {
"Z1K1": "Z7",
"Z7K1": "Z34669",
"Z34669K1": [
"Z11",
{
"Z1K1": "Z7",
"Z7K1": "Z34669",
"Z34669K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40833K2"
},
"Z11K2": {
"Z1K1": "Z7",
"Z7K1": "Z10771",
"Z10771K1": {
"Z1K1": "Z7",
"Z7K1": "Z24766",
"Z24766K1": {
"Z1K1": "Z18",
"Z18K1": "Z40833K1"
},
"Z24766K2": {
"Z1K1": "Z18",
"Z18K1": "Z40833K2"
}
}
}
},
{
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40833K2"
},
"Z11K2": "(is influenced by)"
},
{
"Z1K1": "Z7",
"Z7K1": "Z37289",
"Z37289K1": {
"Z1K1": "Z7",
"Z7K1": "Z33024",
"Z33024K1": {
"Z1K1": "Z7",
"Z7K1": "Z37772",
"Z37772K1": {
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z18",
"Z18K1": "Z40833K1"
},
"Z30120K2": [
"Z6030",
"Z6036"
],
"Z30120K3": [
"Z60",
"Z1360"
],
"Z30120K4": [
"Z6092",
{
"Z1K1": "Z6092",
"Z6092K1": "P737"
}
]
}
},
"Z33024K2": {
"Z1K1": "Z18",
"Z18K1": "Z40833K2"
}
},
"Z37289K2": {
"Z1K1": "Z18",
"Z18K1": "Z40833K2"
}
}
],
"Z34669K2": {
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40833K2"
},
"Z11K2": " "
}
},
{
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40833K2"
},
"Z11K2": "."
}
],
"Z34669K2": {
"Z1K1": "Z11",
"Z11K1": {
"Z1K1": "Z18",
"Z18K1": "Z40833K2"
},
"Z11K2": ""
}
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "influenced by-sentence. Default Composition"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
k1unhv3mtusqvv3n2iwn4ujisy8onjy
Translations:Wikifunctions:FAQ/4/ko
1198
92848
307383
2026-09-02T10:32:14Z
Glocal Campus
102029
Created page with "위키함수는 누구나 호출, 작성, 유지, 사용할 수 있는 모든 종류의 기능 카탈로그를 제공하는 새로운 위키미디어 프로젝트이다. 또한 궁극적으로 추상 위키백과에서 언어 독립적인 기사를 모든 위키피디아의 언어로 번역할 수 있는 기본 기술을 제공한다. 이를 통해 모든 사람이 원하는 언어로 기사를 기고하고 읽을 수 있습니다."
307383
wikitext
text/x-wiki
위키함수는 누구나 호출, 작성, 유지, 사용할 수 있는 모든 종류의 기능 카탈로그를 제공하는 새로운 위키미디어 프로젝트이다. 또한 궁극적으로 추상 위키백과에서 언어 독립적인 기사를 모든 위키피디아의 언어로 번역할 수 있는 기본 기술을 제공한다. 이를 통해 모든 사람이 원하는 언어로 기사를 기고하고 읽을 수 있습니다.
mez2lu0mzykuynlzfq908v0g05u6vqf
Translations:Wikifunctions:FAQ/6/ko
1198
92849
307385
2026-09-02T10:33:00Z
Glocal Campus
102029
Created page with "함수는 질문에 답할 수 있는 지식의 한 형태입니다. 예를 들어서 두 날짜 사이에 며칠이 지났는지 또는 두 도시 사이의 거리를 말합니다. 더 복잡한 함수는 3차원 형태의 부피, 특정 날짜에 화성과 금성 사이의 거리, 또는 두 종이 동시에 살아 있었는지와 같은 더 복잡한 질문에 답할 수 있다."
307385
wikitext
text/x-wiki
함수는 질문에 답할 수 있는 지식의 한 형태입니다. 예를 들어서 두 날짜 사이에 며칠이 지났는지 또는 두 도시 사이의 거리를 말합니다. 더 복잡한 함수는 3차원 형태의 부피, 특정 날짜에 화성과 금성 사이의 거리, 또는 두 종이 동시에 살아 있었는지와 같은 더 복잡한 질문에 답할 수 있다.
6zwfj2w0v7z0m0utg8dkyi0dpb8ws1b
307387
307385
2026-09-02T10:33:38Z
Glocal Campus
102029
307387
wikitext
text/x-wiki
함수는 질문에 답할 수 있는 지식의 한 형태입니다. 예를 들어서 두 날짜 사이에 며칠이 지났는지 또는 두 도시 사이의 거리를 말합니다. 더 복잡한 함수는 3차원 형태의 부피, 특정 날짜에 화성과 금성 사이의 거리, 또는 두 종이 동시에 살아 있었는지와 같은 더 복잡한 질문에 답할 수 있다.
<span style="color:blue; font-weight:700;">홍명보는 한국 축구계를 떠나십시오.</div>
tpb4o57xo4tlreyqu76ades28dsxxj0
Translations:Wikifunctions:FAQ/7/ko
1198
92850
307389
2026-09-02T10:34:42Z
Glocal Campus
102029
Created page with "우리는 이미 검색 엔진에 질문을 하는 것과 같이 다양한 지식 문의에서 함수를 사용합니다. 영어 위키피디아의 [[$1|Template:Convert]] 및 [[$2|Template:Age]]와 같은 틀은 위키텍스트와 Lua로 작성되고 원하는 각 위키에 수동으로 복사되는 많은 위키백과에서 이미 사용되는 함수의 예이기도 합니다."
307389
wikitext
text/x-wiki
우리는 이미 검색 엔진에 질문을 하는 것과 같이 다양한 지식 문의에서 함수를 사용합니다. 영어 위키피디아의 [[$1|Template:Convert]] 및 [[$2|Template:Age]]와 같은 틀은 위키텍스트와 Lua로 작성되고 원하는 각 위키에 수동으로 복사되는 많은 위키백과에서 이미 사용되는 함수의 예이기도 합니다.
8l9z334v0uaxmfxmsr2vx4o70vhjfef
Translations:Wikifunctions:FAQ/9/ko
1198
92851
307391
2026-09-02T10:35:19Z
Glocal Campus
102029
Created page with "구현은 함수를 실행하는 특정한 방식을 의미합니다. 구현은 함수를 실행하는 데 필요한 단계를 나열하는 '레시피'입니다. 프로그래밍 언어의 코드 조각일 수도 있고 다른 함수에 대한 호출의 조합일 수도 있습니다. 함수는 많은 구현을 가질 수 있으며, 이는 모두 동등해야 합니다."
307391
wikitext
text/x-wiki
구현은 함수를 실행하는 특정한 방식을 의미합니다. 구현은 함수를 실행하는 데 필요한 단계를 나열하는 '레시피'입니다. 프로그래밍 언어의 코드 조각일 수도 있고 다른 함수에 대한 호출의 조합일 수도 있습니다. 함수는 많은 구현을 가질 수 있으며, 이는 모두 동등해야 합니다.
dbc48irmc9qlo2mex2bi6jqpd9du6b5
Z40836
0
92852
307395
2026-09-02T11:49:02Z
EJPPhilippines
9359
307395
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40836"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6091",
"Z17K2": "Z40836K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "item reference"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z40836K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Philippine language"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z40836"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Philippine languages singular direct case marker"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"ang",
"si"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Gets the singular direct case marker in Philippine languages (e.g. Tagalog, Kapampangan) for a Wikidata item reference, based on whether it is a human or not"
}
]
}
}
hheq0076fhg1iam8fq0z18w2k0dkvro
Z40837
0
92853
307398
2026-09-02T11:54:28Z
EJPPhilippines
9359
307398
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40837"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z40836",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z40836",
"Z40836K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q928"
},
"Z40836K2": "Z1844"
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z866",
"Z866K2": "ang"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[tl] \"ang\" for Philippines"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
po7yqge0oyvnl0ja3xch10c4i5t2phm
Z40838
0
92854
307399
2026-09-02T11:57:55Z
EJPPhilippines
9359
307399
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z40838"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z40836",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z40836",
"Z40836K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q313604"
},
"Z40836K2": "Z1609"
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z866",
"Z866K2": "i"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[pam] \"i\" for Andres Bonifacio"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
4ewuhpe7uvy596hl73g2zoa4sl8ylsb