Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
4answers
2k views

What's the difference between GNU99 and C99 (Clang)?

I have saw the compiler option GNU99 and C99. What's the difference of them? Any detail documentation? (Clang, Xcode, Mac OS X)
16
votes
8answers
4k views

What parameter parser libraries are there for C++?

I'd like to pass parameters to my C++ program in the following manner: ./myprog --setting=value Are there any libraries which will help me to do this easily? See also ...
12
votes
5answers
351 views

Un-optioning an optioned Option

Say I have a val s: Option[Option[String]]. It can thus have the following values: Some(Some("foo")) Some(None) None I want to reduce it so that the first becomes Some("foo") while the two others ...
12
votes
3answers
651 views

Why doesn't Option have a fold method?

I wonder why scala.Option doesn't have a method fold like this defined: fold(ifSome: A => B , ifNone: => B) equivalent to map(ifSome).getOrElse(ifNone) Is there no better than using map + ...
12
votes
1answer
320 views

Why does Option not extend the Iterable trait directly?

Option is implicitly convertible to an Iterable - but why does it not just just implement Iterable directly: def iterator = new Iterator[A] { var end = !isDefined def next() = { val n = if ...
12
votes
3answers
1k views

Is there a scala identity function?

If I have something like a List[Option[A]] and I want to convert this into a List[A], the standard way is to use flatMap: scala> val l = List(Some("Hello"), None, Some("World")) l: ...
10
votes
3answers
300 views

Which Scala methods return null instead of an Option and why?

I wonder if the standard library is completely null-free and - if not - would be interested what reasonable use-cases exist where returning null is preferable to returning some Option instance.
9
votes
3answers
316 views

Better to return None or throw an exception when fetching URL?

I have a Scala helper method that currently tries to fetch a URL and return an Option[String] with the HTML of that webpage. If there are any exceptions (malformed url, read timeouts, etc...) or if ...
9
votes
3answers
4k views

How to hide optgroup/option elements?

Is there a way to hide option or optgroup HTML elements? I've tried calling hide() in jQuery, and also using regular Javascript to set style.display='none'. It works in Firefox but not in any other ...
7
votes
4answers
277 views

Why is foreach better than get for Scala Options?

Why using foreach, map, flatMap etc. are considered better than using get for Scala Options? If I useisEmpty I can call get safely.
7
votes
4answers
535 views

Why is the use of Maybe/Option not so pervasive in Clojure?

Why does Clojure, despite such an emphasis on functional paradigm, not use the Maybe/ Option monad to represent optional values? The use of Option is quite pervasive in Scala, a functional programming ...
7
votes
3answers
503 views

Type Mismatch on Scala For Comprehension

I don't understand why this construction causes a Type Mismatch error in Scala: for (first <- Some(1); second <- List(1,2,3)) yield (first,second) <console>:6: error: type mismatch; ...
7
votes
7answers
4k views

Option Parsers for c/c++? [closed]

Possible Duplicate: What parameter parser libraries are there for C++? I've done some looking and there are a whole lot of libraries for command line option parsing, but it is difficult to ...
6
votes
2answers
334 views

Scala: filtering a collection of Options

Say I have a function that checks whether some operation is applicable to an instance of A and, if so, returns an instance of B or None: def checker[A,B]( a: A ) : Option[B] = ... Now I want to ...
6
votes
2answers
237 views

Best way to score current extremum in collection type

I’m currently a little tired so I might be missing the obvious. I have a var _minVal: Option[Double], which shall hold the minimal value contained in a collection of Doubles (or None, if the ...
6
votes
5answers
225 views

Is there a ruby equivalent to the Scala Option?

How do I model an optional value in ruby? Scala has Option[], which is what I'm looking for in ruby.
6
votes
1answer
216 views

Does Scala have an API method that converts a Seq[Option[T]] to Seq[T]?

Is there a Scala API method to convert a Seq[Option[T]] -> Seq[T]? You can do this manually via: seq.filter(_.isDefined).map(_.get) Wondering if there is a method that does the above in the ...
6
votes
4answers
344 views

Any way to access the type of a Scala Option declaration at runtime using reflection?

So, I have a Scala class that looks like this: class TestClass { var value: Option[Int] = None } and I'm tackling a problem where I have a String value and I want to coerce it into that ...
6
votes
3answers
624 views

Convert a List of Options to an Option of List using Scalaz

I want to transform a List[Option[T]] into a Option[List[T]]. The signature type of the function is def lo2ol[T](lo: List[Option[T]]): Option[List[T]] The expected behavior is to map a list that ...
6
votes
5answers
319 views

Could/should an implicit conversion from T to Option[T] be added/created in Scala?

Is this an opportunity to make things a bit more efficient (for the prorammer): I find it gets a bit tiresome having to wrap things in Some, e.g. Some(5). What about something like this: implicit ...
6
votes
5answers
294 views

A better way to test the value of an Option?

I often find myself with an Option[T] for some type T and wish to test the value of the option against some value. For example: val opt = Some("oxbow") if (opt.isDefined && opt.get == ...
5
votes
1answer
204 views

Using F# Option Type in C#

I have the following type: and ListInfo() = let mutable count = 0 // This is a mutable option because we can't have an infinite data structure. let mutable lInfo : Option<ListInfo> = None ...
5
votes
4answers
165 views

Scala Option - Getting rid of if (opt.isDefined) {}

My code is becoming littered with the following code pattern: val opt = somethingReturningAnOpt if (opt.isDefinedAt) { val actualThingIWant = opt.get } Is there some way to simplify this? (it ...
5
votes
2answers
355 views

Scala Option[(A, B)] pattern matching

I am writing a Java code generator. I have an immutable Map that contains a mapping from java.sql.Types [Int] to a tuple of (String, String) where the first value is a Java type and the second a Java ...
5
votes
3answers
471 views

“Convert” x to Option[x] in Scala

Suppose I have a method session.get(str: String): String but you don't know whether it will return you a string or a null, because it comes from Java. Is there an easier way to treat this in scala ...
5
votes
4answers
266 views

How can I reverse of flow of Option Monad?

say, I have a bunch of "validation" functions that return None if there is no error, otherwise it return Some(String) specifying the error message. Something like the following ... def ...
5
votes
2answers
1k views

Line Break in Html Select Option?

Can I have a two line text in an html select option? How?
5
votes
5answers
305 views

Using Option all over the place feels a bit awkward. Am I doing something wrong?

As a result of articles I read about the Option class which helps you avoid NullPointerException's, I started to use it all over the place. Imagine something like this: var file:Option[File] = None ...
5
votes
1answer
1k views

Option in italics

Is there any cross-browser way to italicize select options? With the following CSS and HTML, FireFox shows the second option in italics, but not the third. None of the options are italicized in IE 7 ...
5
votes
8answers
404 views

Throw/do-not-throw an exception based on a parameter - why is this not a good idea?

I was digging around in MSDN and found this article which had one interesting bit of advice: Do not have public members that can either throw or not throw exceptions based on some option. For ...
4
votes
1answer
137 views

Forcing a field of an F# type to be null

I understand well the benefit of option, but in this case, I want to avoid using option for performance reasons. option wraps a type in a class, which just means more work for the garbage collector -- ...
4
votes
1answer
52 views

Processing optional xml attributes in Scala

I have code that reads an XML file. Some of the attributes of elements that I need to process are optional. I am trying to use Option[T] to manage them. I have written the following to pimp the ...
4
votes
1answer
109 views

Delphi: DBGrid Options are not saved?

My problem is next: I have my own DBGrid, based on TDBGrid. Because in many places better to see the Selection, I thought I set it on Create, and the property editor save the Options property if I ...
4
votes
3answers
99 views

Reading multiple variables from an object wrapped in Option[]

I have a variable obj: Option[MyObject] and want to extract multiple variables from it - if the object is not set, default values should be used. Currently I do it like this: val var1 = obj match { ...
4
votes
2answers
195 views

Java named/optional parameters using annotation?

In RESTeasy this... @GET @Path("request") public String requestJson(@QueryParam("arg1") @DefaultValue("") String arg1, @QueryParam("arg2") @DefaultValue("0") Integer arg2); ...
4
votes
1answer
196 views

Nested Scala matchers why Some(Some(1),1) can't match?

I've run into a minor problem whilst coding, it seems that nested matching doesn't work, it seems a strange limitation and I'm sure I'm just being foolish. An example of the behaviour follows: ...
4
votes
1answer
168 views

How to control folder option with C# or registry

I am developing a C# Application and I need to enable/disable the Hide protected system files option in folder settings via C#. It would also be useful to know what changes are made in the registry ...
4
votes
4answers
1k views

It is bad to put <span /> tags inside <option /> tags, only for string manipulation not styling?

I would like to make groups of the text content of an <option /> tag. Say I have the following: <option>8:00 (1 hour)</option>, the time pattern 8:00 can be modified, then the text ...
4
votes
2answers
271 views

Why does the Option's orNull method have this superfluous implicit argument?

I wonder what is the reason for the (implicit ev: Null <:< A1) here: sealed abstract class Option[+A] extends Product with Serializable { def orNull[A1 >: A](implicit ev: Null <:< ...
4
votes
5answers
419 views

jquery-traversing: select -> option -> text

I want to compare a variable with a select -> option -> text selected in order to change the "selected" attrib, here is my code, it works but I think is not the best way to write it, excuse my ...
4
votes
3answers
929 views

HTML <select>: focus option based on user input?

So, I have an HTML select element: <select id='poetslist'> <option value="shakespeare">William Shakespeare</option> <option value="milton">John ...
4
votes
1answer
2k views

Show/Hide <select> dropdown, with jQuery, based on value

I'm trying to build a custom dropdownlist wich show/hide a second set of dropdowns based on it's selection. I was wondering if anyone here might be able to help with a solution to this. You can view ...
4
votes
1answer
922 views

Same option menu in all Activities in Android

I have 10-15 activities in my project. I want to have the option menu mostly in all Activities. Then is their any way we can do it at one place and it appears in all activities. Also, I will like to ...
4
votes
4answers
10k views

using href links inside <option> tag

I have the following html code: <select name="forma"> <option value="Home">Home</option> <option value="Contact">Contact</option> <option ...
4
votes
1answer
278 views

How to write a lazy, variable argument version of “orElse”

Is it possible to write a generalised orElse method from Option that takes a variable number of arguments? That is, instead of: lazy val o1 = { println("foo"); None } lazy val o2 = { println("bar"); ...
3
votes
7answers
57 views

change in 2 div css with selection of option value

i want to chance 2 different div style with jquery. qhile the value is div1, div1 will be shown. and the value is div2, div2 will be shown. i guess i cant do it with "if/else" in jquery. is there any ...
3
votes
1answer
114 views

Styling css for <select> <option> drop down box for all browsers and Windows/OSX

I want to style my drop down box so that instead of using the OS's default styles, I can replace both and with custom background images. Is there a solution that works in all major browsers (IE, ...
3
votes
2answers
124 views

JQuery Hide Option doesn't work in IE and Safari

I'm trying to hide a few options in a dropdown box using .hide(). This works perfectly fine in firefox and chrome, but it doesn't work in IE and Safari. My original code is more complex but I've ...
3
votes
1answer
64 views

Scala: Can I convert an Option to varargs?

I have an Option: val myOption: Option[Int] = fooBar() And a method that takes a varargs param: def myMethod(a: String, b: Int*) = {...} Is there any way to pass the option to the method as a ...
3
votes
4answers
148 views

Clojure seq as a substitute for Scala Option[T]

Scala offers a hierarchy of classes Option[T], Some[T] extends Option[T], and None extends Option[Nothing] that I have found useful for wrapping Java method calls that can return null, among other ...

1 2 3 4 5 9