glchapman

Results 10 issues of glchapman

It appears the change proposed in issue [167](https://github.com/haskell/text/issues/167) got committed so that title-casing only takes place after spaces. However, the documentation still reads: "The first letter of the input is...

documentation

From my experience with other QuickCheck libraries, I was surprised by the prevalence of ("", 0) in this: ``` > Gen.sample 10 10 Arb.from.Generator;; val it : (string * int)...

enhancement
vNext

I'm not sure if this is properly a Potemkin, Clojure, or JVM bug, but I thought I'd start by reporting it here. Please let me know if you think it...

Currently, RInteropInternal.convertToR searches through its various conversion methods even when passed a value which is already a SymbolicExpression (or a subclass of SymbolicExpression). It seems like it might be a...

I'm using dotnet 8.0.101 with Windows 10. The program below, when run in Debug mode, will throw a NullReferenceException. If run in Release mode, it completes successfully. Both versions generate...

Bug
Impact-Low
Area-Compiler-CodeGen

I was macroexpanding some of the test cases to get an idea of what loopr does, when I noticed this: ``` (loopr [sum 0] [x (int-array [1 2 3]) :via...

On windows, a path of the form "/a/b/c" (or "\a\b\c") is not considered absolute (since it lacks a drive letter), so the file function will prepend the cwd, returning a...

I suggest that both symbols and vectors should by default use equality tests in patterns, rather than be treated as predicate functions (both symbols and vectors implement AFn). For example,...

Given the documentation that cond with an odd number of clauses treats the last as the default, I expected the following to evaluate to 1: ``` Clojure 1.5.1 user=> (require...

Building (`dotnet build`) the attached project prints at the console an error FS0001 with a location in Program.fs, but does not print an message informative message. I would expect a...

Bug
Needs-Triage