Skip to main content
Stack Overflow
  1. About
  2. For Teams
Filter by
Sorted by
Tagged with
0 votes
2 answers
111 views

I am struggling to find a way on how to solve following problem in Rust. I want to be able to loop over a (mutable) vector and still be able to loop over the same vector nested in the outer one. ...
0 votes
1 answer
31 views

Here, we are using set as the missing value default, how can we use an undefined set for that purpose?
-2 votes
1 answer
158 views

''' This program is to read through any number of inputs (that is only: .txt files) the user passes through the sys.argv (through the terminal only). The file should only be a .txt file. Which means ...
0 votes
1 answer
85 views

From what I understand so far, it is an instance of the 'Language' class in spacy, and can process text and perform a bunch of operations on it. import spacy nlp = spacy.blank("en") # ...
27 votes
1 answer
18k views

C# 9 added the record type, which is a new reference type that uses value-based equality. C# 10 introduced the record struct syntax to define a value type with similar properties to record (https://...
2 votes
1 answer
263 views

I'm stuck at doing multithread feature in Rust. I'm trying to do translate my code written in Go that updates a map's value while iterating and make a new thread. (simplified codes) my_map := make(map[...
0 votes
1 answer
151 views

void main() { int x=5; { int x= 6; cout<<x; } cout<<x; } the output is 6, 5. My question is: when Assign x to 6, it reserved a memory cell for it, and ...
0 votes
2 answers
970 views

There are [] operations which are similar to dereferencing in high-level languages. So does that mean that every variable and register name is just a pointer or are pointers a high-level languages ...
0 votes
2 answers
2k views

I overloaded query method of mysqli class like so: class MySql extends \mysqli { function query(string $sql): ?MySqlResult // line #30 { $result = parent::query($sql); return ...
0 votes
0 answers
77 views

I can find information on how to write calls to AsyncStorage, how it actually stores information on device, etc., and some basic examples of usage storing keys, but what I'm looking for is a broader ...
1 vote
1 answer
261 views

How does the java accessibility (or perhaps, scope) work with respect to type import multi-level nested classes? An example: ClassA.java: package com.oracle.javatests; public class ClassA { ...
0 votes
1 answer
193 views

I have an exercise which is asking us about basics concept apparently. But I can't find any information or at least I'm not sure about what I'm suppose to search. So I have a small class and I need to ...
Alex's user avatar
  • 53
1 vote
1 answer
1k views

I'm working with appBuilder and procedure editor in Progress Release 11.6. As mentioned in some previous questions, regularly I'm having problems with the appBuilder, not wanting to open files, ...
0 votes
1 answer
160 views

I am working on a project where I want to retrieve the list of semantically similar concepts for a given sentence using WordNet and BERT. But there are some concepts which are not included in the ...
-5 votes
1 answer
168 views

Code: for(int i=0;i<5;){ i=i++; printf("%d",i); } The above program print zeros infinitely, How is that possible? There is the statement i=i++;. Please explain why the value of i do ...

15 30 50 per page
1
2 3 4 5
...
7

AltStyle によって変換されたページ (->オリジナル) /