From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Tobias Brandt Newsgroups: gmane.lisp.guile.user Subject: GOOPS: calling next-method with different arguments. Date: Fri, 19 Apr 2013 09:18:00 +0200 Message-ID: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: multipart/alternative; boundary=20cf3074b61ae679f604dab184ad X-Trace: ger.gmane.org 1366355895 10714 80.91.229.3 (19 Apr 2013 07:18:15 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 19 Apr 2013 07:18:15 +0000 (UTC) To: guile-user@gnu.org Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Fri Apr 19 09:18:19 2013 Return-path: Envelope-to: guile-user@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1UT5aH-0007Py-Hm for guile-user@m.gmane.org; Fri, 19 Apr 2013 09:18:13 +0200 Original-Received: from localhost ([::1]:38928 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UT5aG-0002KO-NW for guile-user@m.gmane.org; Fri, 19 Apr 2013 03:18:12 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:35301) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UT5a6-0002J5-Qk for guile-user@gnu.org; Fri, 19 Apr 2013 03:18:04 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UT5a5-0007kf-B1 for guile-user@gnu.org; Fri, 19 Apr 2013 03:18:02 -0400 Original-Received: from mail-qc0-x229.google.com ([2607:f8b0:400d:c01::229]:41286) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UT5a5-0007kZ-60 for guile-user@gnu.org; Fri, 19 Apr 2013 03:18:01 -0400 Original-Received: by mail-qc0-f169.google.com with SMTP id t2so778960qcq.14 for ; Fri, 19 Apr 2013 00:18:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:date:message-id:subject:from:to :content-type; bh=Df4zhddPht2GzHvrbFa4eZ1nsrEfYn87PXsCdQNs190=; b=aeGhOsQPg+OTX7JTgXWprVOptzgWWWqOo2Ah6DTyTGXKOm1J1JFCmRjD73iuB2LhLO JJrwkPD+LU05du3INe0R/LUaJPv9071O9W9q3NuyHUnNmPwaV0cQZj20ooGq5cHMFdCr a3GJfw3KaCGlpbq1+h8QivTE4Y8ztbYZLq0KORAMRLpPqCDu56Xf13sbxAyD0CwWXUld UVp9LTnIOaI8cuuMV3PHU6u4kAbI3PbT0lZKdj0V2fW4IMh0P6PBx5K/XHo5zeRPSWtt Q71O9UdfHA4O85tND79WECIMvj2ays0o2Hzt0+2fWtGngvNL0RcREzSGh7ZEHZpKYVDm PtnA== X-Received: by 10.224.41.200 with SMTP id p8mr12698228qae.99.1366355880589; Fri, 19 Apr 2013 00:18:00 -0700 (PDT) Original-Received: by 10.49.116.72 with HTTP; Fri, 19 Apr 2013 00:18:00 -0700 (PDT) X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:400d:c01::229 X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-user-bounces+guile-user=m.gmane.org@gnu.org Original-Sender: guile-user-bounces+guile-user=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.user:10263 Archived-At: --20cf3074b61ae679f604dab184ad Content-Type: text/plain; charset=ISO-8859-1 I posed the following question regarding constructors in Lisp/CLOS on stackoverflow: http://stackoverflow.com/questions/16089809/whats-the-equivalent-of-constructors-in-clos The accepted answer uses the ability of CLOS to modifiy the arguments passed to CALL-NEXT-METHOD. I know it's (currently) not possible to change the method arguments when calling next-method in GOOPS. How would you solve that problem (if possible)? Cheers, Tobias --20cf3074b61ae679f604dab184ad Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
I posed the following question regard= ing constructors in Lisp/CLOS on stackoverflow: