What does "w.r.t. " mean in Kotlin? - kotlin

This word shows up many times in this web page : https://kotlinlang.org/spec/type-system.html#function-types
Can anyone help me to find out where defines this word?

WRT means with reference to.. it seems that alot is used in abbreviation

Related

How do I read an ":" Parameter of a String until it hits a NUL

(Not sure if I'm on the right part of the website, so sorry if I ain't, and feel free to close the thread then, but at least redirect me to the right site)
The title might be a little confusing, but here's what I am trying to accomplish:
I am trying to make an Tool which generates "GUI-Mapping" Files for a game called Star Wolves 3, it works well when in Manual-Edit-Mode but I am also trying to make an Automatic mode, where the program scans one of the Game's 3D-Mesh files (.IMD) and searches for a string like this "Turret:1", it does not necessarily has to be a number, a string could also be behind the ":".
Now what I want is, to basically Read everything behind the ":" until it hits a NUL, here's what I mean by that by showing you a picture of a generic .IMD file and the ":" Parameter of the String "Turret"
Picture.
I'm pretty bad at .NET and could really take a hint or two to solve this problem. I have honestly no actual Idea on what Code I need write to get whats behind the ":" and stop reading the text until it hits the NUL, sample code might also be very helpful.
Any help is appreciated!
.. although there is a non-opensource tool by someone else which can read these "Parameters" flawlessly called "IMD Editor_v3", the developer "tech" vanished and there's no way for me to contact that developer and/or ask for help.

ABAP SWC macros. Are they part of the language?

In a customer object, we found an SWC statement that our parser chokes on.
IF NOT ( pyparaid IS INITIAL OR dataset_exp IS INITIAL ).
swc_set_element container 'DATASET' dataset_exp+10.
ENDIF.
Although this page seems to imply that they are well known in the ABAP world, I cannot find a page where they are documented officially. (Similar to the ABAP keyword documentation).
Are these macros considered part of the language? In other words, if they are not covered, would you consider a parser incomplete? Please point me to their documentation.
Please try searching for yourself next time. The first hit when googling for "site:help.sap.com swc_set_element" would have lead you straight to the reference.
Yes, a parser that is unable to process macros is incomplete. You have been warned about that half a year ago... :-)

Does MS Word have an equivalent of Range.GetSpellingSuggestions for grammar?

In Microsoft Word 2013 VBA, you can call GetSpellingSuggestions on a Range that includes a spelling error to get a collection of (a) what the spelling error is and (b) what the proposed suggestions are. Is there anything equivalent for grammatical errors? I called GetSpellingSuggestions on a Range with only a grammatical error and got back wdSpellingCorrect with no suggestions.
This post from 2004 says Word doesn't provide that information to VBA, but I'm wondering if Microsoft has added one since then. I've looked on MSDN and SO and haven't found an answer. CheckGrammar won't work for me since I'm rolling my own UI for the checker. Thanks!
Well, looks like the answer is no :/ . Posting this to get the question off the Unanswered lists. If you happen across this and have some information, please post another answer! Thanks!

custom error pages for IBM Domino iNotes

we're currently customizing iNotes for a customer (platform currently is Domino 9). We almost reached our goals, but one thing that's on our todo list I can't really figure out: they want us to also customize any possible error pages; see the following example screenshot:
This and other similar pages seem to come from the central Forms9.nsf which I'd love to leave as it is. We so far tried domcfg.nsf mappings, but as this is an iNotes internal error it obviously can't work; I also tried to figure out a way to put seomething into our customized Forms9_x.nsf but without any hint this is too abstract for me.
So my questions are:
has anyone ever done this?
what options do we have (apart from "hacking" Forms9.nsf)?
Many thanks in advance...
Update:
After continuing to play with domcfg mappings I suddenly saw a first result; not sure what's the difference to the first attempts, though; maybe moving the error form to Forms9_x.nsf did the trick? I'll keep investigating and post an answer if I can find one...
Alright, this has been an afternoon of wild guessing and hacking along, but finally I think I found it:
first of all, my playing around with domcfg mappings didn't have to do with solving the problem; instead, I just by chance had put my error page form into my Forms9_x.nsf and named it $$ReturnGeneralError (that's simply the name used in Forms9.nsf...; I completely had forgotton about those 4 pre-defined form names back from Domino 5 times).
What did not work was the old method of simply including a text file named MessageString to display the exact error message returned from the server; obviously iNotes is handling those error strings differently.
After a few hours of testing, and comparing codes between the standard iNotes error page and mine I finally found it: include some iNotes specific computed text into the page, in my case that is
#{{MessageString}; html}
See this document for some details (last row in the table)
Hopefully this can help someone else as well...

Lucene 4.1 : How search text with HunspellStemmer and get suggestions?

I want to parse text files with lucene using HunspellStemmer to check for spelling errors. I will use Hunspell dictionaries that's why I want to use HunspellStemmer.
At this point I'm not sure how I should parse the files and do the checking.
Could I use a Standard Analyser with WordFilter to index the text in a file and check Term by term if the keyword is present in HunspellDictionary.
I did that and it works, not sure it's the optimal solution, but if I want to output 3-5 suggestions by word not present, I have no idea what do to.
I could use a IndexerSearch when I use a PlainTextDictionnary, but no idea how to get that functionality with HunspellDictionary. (it doesn't implement Dictionary).
any help will be really appreciate.
thanks
examples that I want to check : hell, hello, hall, helli. I'm hoping to have suggestions for "helli" using a Hunspell.