Re: Using a C++ class in a D associative array

2018-08-20 Thread Paul O';Neil via Digitalmars-d
Potentially related: https://issues.dlang.org/show_bug.cgi?id=13875

Re: Binderoo additional language support?

2018-05-09 Thread Paul O';Neil via Digitalmars-d
On 05/09/2018 03:50 PM, Ethan wrote: On Tuesday, 8 May 2018 at 14:28:53 UTC, jmh530 wrote: I don't really understand what to use binderoo for. So rather than fill out the questionnaire, maybe I would just recommend you do some work on wiki, blog post, or simple examples. Been putting that off

Re: Do we need Mat, Vec, TMmat, Diag, Sym and other matrix types?

2018-03-14 Thread Paul O';Neil via Digitalmars-d
On 03/14/2018 02:33 AM, 9il wrote: On Wednesday, 14 March 2018 at 05:40:42 UTC, Manu wrote: I'd like to understand why implement a distinct vector type, rather than just a Nx1/1xN matrix? This is just and API quesiton of how elements of Nx1/1xN matrix should be accessed. E.g. should one spec

Re: Any reason as to why this isn't allowed?

2016-04-02 Thread Paul O';Neil via Digitalmars-d
On 04/02/2016 09:02 AM, Lass Safin wrote: class C { ~this() {} immutable ~this() {} } This gives a conflict error between the two destructors. What do you expect the difference to be? I'm not sure what I expect the semantics of destroying an immutable object to be.

Re: I guess this is good GSOC 2016 news?

2016-02-29 Thread Paul O';Neil via Digitalmars-d
On 02/29/2016 04:22 PM, Jonas Drewsen wrote: > https://summerofcode.withgoogle.com/organizations/?sp-category=languages > >From there, clicking on the "D Foundation" block and then "Learn More" brings you to a more detailed page. On that new page, clicking the "IRC Channel" link brings the user

Re: Official compiler

2016-02-24 Thread Paul O';Neil via Digitalmars-d
On 02/18/2016 02:06 PM, rsw0x wrote: > On Thursday, 18 February 2016 at 17:52:10 UTC, Kai Nacke wrote: >> I really like the compiler diversity. What I miss (hint!) is a program >> to verify the compiler/backend correctness. Just generate a random D >> program, compile with all 3 compilers and compa

Re: dub and debian packaging

2016-01-25 Thread Paul O';Neil via Digitalmars-d
On 01/25/2016 12:08 PM, ikod wrote: > Hello > > I'd like to hear any opinions and best practices on coexistence of dub > and debian .deb packaging and deployment. > > Here is my problem: I wrote some small library that use Pegged to parse > and process user requests. This library can be used in

Re: [OT] Nim is usable with PNaCl

2015-04-26 Thread Paul O';Neil via Digitalmars-d
On 04/26/2015 01:37 AM, weaselcat wrote: > https://github.com/hackwaly/pepper-nim > > Wonder how hard it would be to get D to do the same, or if it's worth > the effort over trying to adapt LDC output to emscripten. Manu was looking into this a little while a go. https://github.com/ldc-developer

Re: change in github workflow!

2015-03-27 Thread Paul O';Neil via Digitalmars-d
On 03/27/2015 05:25 PM, Andrei Alexandrescu wrote: > On 3/27/15 11:28 AM, H. S. Teoh via Digitalmars-d wrote: >> On Fri, Mar 27, 2015 at 07:21:10PM +0100, Martin Nowak via >> Digitalmars-d wrote: >>> We replace the old cherry-pick approach by introducing stable branches, >>> more info here http://w

Re: Solution to problems:

2015-03-24 Thread Paul O';Neil via Digitalmars-d
On 03/23/2015 05:34 PM, Jake The Baker wrote: > If D had an ide that could do the following I think development and > testing could be better managed. > > 1. IDE that works with a centralized server to be able to change D > versions at a drop of a time. e.g., click "Master" and it checks to see >

Re: Calypso and the future of D

2015-01-22 Thread Paul O';Neil via Digitalmars-d
First, a general increase in quality & test coverage. If C++ interop is a priority, it makes sense to focus on ironing out what's already there. I've filed a few bugs over the last 2 months or so and I don't think I'm trying anything too far out there. Some of these are internal compiler errors

Re: sortUniq

2015-01-22 Thread Paul O';Neil via Digitalmars-d
On 01/22/2015 07:06 PM, bearophile wrote: > Andrei Alexandrescu: > >> What would be a better integrated version - one that does sorting and >> uniq in one shot? I suspect the combination could be quite a bit >> better than doing the two in sequence. > > What I need most is a "groping by hashing",

Re: D, Dub, Debian, Fedora

2015-01-19 Thread Paul O';Neil via Digitalmars-d
On Monday, 19 January 2015 at 14:48:32 UTC, Russel Winder via Digitalmars-d wrote: Has anyone been in contact with Debian and Fedora packagers to see if using Dub as a build system is acceptable to them for packaging? I know Debian folk still prefer Autotools, but accept Make or SCons (but def

Re: dlang.org page is missing

2015-01-17 Thread Paul O';Neil via Digitalmars-d
On 01/16/2015 09:15 PM, ketmar via Digitalmars-d wrote: > Hello. > > there is a link in side menu: "download&tools->debugger". it leads to > http://dlang.org/debugger.html which is missing. > There's a debugger.html in the dlang.org repository, so it looks to me like something on the uploading e

Re: Common makefile (gasp) stuff

2015-01-13 Thread Paul O';Neil via Digitalmars-d
On 01/13/2015 09:35 PM, Andrei Alexandrescu wrote: >> 1) These interdependencies are currently expressed by hard-coded >> filesystem paths, which presumes a specific directory layout for >> checking out dmd, dlang.org, phobos, druntime. This means the build will >> break if somebody doesn't know t

Re: Ready to make page-per-item ddocs the default?

2015-01-06 Thread Paul O';Neil via Digitalmars-d
On 01/06/2015 05:43 PM, Andrei Alexandrescu wrote: > Let's crowdsource the review. Please check the entries linked from here: > http://dlang.org/library/index.html. > > Andrei On that page itself, the descriptions for at least std.regex and std.uni include the headers (e.g Intro, Overview) from t

Re: Any LaTeX expers n da house?

2015-01-01 Thread Paul O';Neil via Digitalmars-d
On 12/30/2014 01:04 PM, Andrei Alexandrescu wrote: > With https://github.com/D-Programming-Language/dlang.org/pull/736, > beautiful PDF generation via LaTeX is now possible. > > There are, of course, many details to tend to. For starters, currently > the doc is overly sparse, which makes it large (

Re: Posix dynamic library initialization and finalization

2014-12-12 Thread Paul O';Neil via Digitalmars-d
On 12/12/2014 07:38 PM, Adam D. Ruppe wrote: > I was just talking on IRC with someone about a dynamic library on linux > in D being called from a C program. The runtime wasn't initialized and > he couldn't modify the C program to add an extra call. > > I kidna thought rt_init would be done automat

Re: GC Jitter Reduction

2014-06-16 Thread Paul O';Neil via Digitalmars-d
LDC does have an optimization pass that will move GC allocations to the stack if it can prove that they do not escape. On Monday, 16 June 2014 at 20:29:01 UTC, Suminda Dharmasena wrote: Hi, A lot of variables need not be GCed. By analysing usage you can determine when to deallocate. Even in mu

Re: Linking libraries that are written in C++ with a C interface

2014-06-08 Thread Paul O';Neil via Digitalmars-d
Do you need to link to a C++ runtime library? That might be expected to be dynamic even if you compile a static C++ library. Paul On 06/08/2014 10:12 PM, Gerry wrote: On Monday, 9 June 2014 at 01:47:57 UTC, Gerry wrote: Hello All, I'm trying to link a library that is written in C++ that pro