• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag
 

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: Mod (%) function in C/Objective-C?
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Mod (%) function in C/Objective-C?


  • Subject: Re: Mod (%) function in C/Objective-C?
  • From: Dave <email@hidden>
  • Date: Mon, 11 Aug 2014 21:53:43 +0100

On 10 Aug 2014, at 16:16, Keary Suska <email@hidden> wrote:


> I don't think so, although I would expect a C lib somewhere to address it. Anyway, isn't easier to just always abs(x)%y?
>


> abs(x)%y

Doesn’t give the same result:

myIndex: -5  myMod: 1   abs(x)%y: 2
myIndex: -4  myMod: 2  abs(x)%y: 1
myIndex: -3  myMod: 0  abs(x)%y: 0
myIndex: -2  myMod: 1  abs(x)%y: 2
myIndex: -1  myMod: 2  abs(x)%y: 1
myIndex: 0  myMod: 0  abs(x)%y: 0
myIndex: 1  myMod: 1  abs(x)%y: 1
myIndex: 2  myMod: 2  abs(x)%y: 2
myIndex: 3  myMod: 0  abs(x)%y: 0
myIndex: 4  myMod: 1  abs(x)%y: 1


Where:
myIndex = input value.
myMod = result of calling the mod function I added.
abs(x)%y =  abs(x)%y.



_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden


References: 
 >Mod (%) function in C/Objective-C? (From: Dave <email@hidden>)
 >Re: Mod (%) function in C/Objective-C? (From: Keary Suska <email@hidden>)

  • Prev by Date: Re: How should windowWillUseStandardFrame:defaultFrame: work? With a WebView?
  • Next by Date: Re: Mod (%) function in C/Objective-C?
  • Previous by thread: Re: Mod (%) function in C/Objective-C?
  • Next by thread: Re: Mod (%) function in C/Objective-C?
  • Index(es):
    • Date
    • Thread